[
  {
    "path": "README.md",
    "content": "# MotionGPT: Finetuned LLMs are General-Purpose Motion Generators\n\n[![arXiv](https://img.shields.io/badge/arXiv-<2306.10900>-<COLOR>.svg)](https://arxiv.org/abs/2306.10900)\n\nThe official PyTorch implementation of the paper \"[MotionGPT: Finetuned LLMs are General-Purpose Motion Generators](https://arxiv.org/abs/2306.10900)\".\n\nPlease visit our [Project Page](https://qiqiapink.github.io/MotionGPT) for more details.\n\n![image](./static/images/motiongpt.png)\n\nIf you find MotionGPT useful for your work please cite:\n```\n@article{zhang2023motiongpt,\n  title={MotionGPT: Finetuned LLMs are General-Purpose Motion Generators},\n  author={Zhang, Yaqi and Huang, Di and Liu, Bin and Tang, Shixiang and Lu, Yan and Chen, Lu and Bai, Lei and Chu, Qi and Yu, Nenghai and Ouyang, Wanli},\n  journal={arXiv preprint arXiv:2306.10900},\n  year={2023}\n}\n```\n\n## Table of Content\n* [Installation](#installation)\n* [Demo](#demo)\n* [Train](#train)\n* [Evaluation](#evaluation)\n* [Visualization](#visualization)\n* [Acknowledgement](#acknowledgement)\n\n## Installation\n\n## 1. Environment\n```\nconda env create -f environment.yml\nconda activate motiongpt\n```\n\n## 2. Dependencies\nFor text to motion evaluation\n```\nbash prepare/download_evaluators.sh\nbash prepare/download_glove.sh\n```\n\nFor SMPL mesh rendering\n```\nbash prepare/download_smpl.sh\n```\n\nFor using the LLaMa model weight, follow [pyllama](https://github.com/juncongmoo/pyllama) to download the original LLaMA model, and then follow [Lit-LLaMA](https://github.com/Lightning-AI/lit-llama) to convert the weights to the Lit-LLaMA format. After this process, please move the `lit-llama/` directory under the `checkpoints/` directory.\n\nOnce downloaded, you should have a folder like this:\n```\nMotionGPT\n├── checkpoints\n│   ├── kit\n│   │   ├── Comp_v6_KLD005\n│   │   ├── Decomp_SP001_SM001_H512\n│   │   ├── length_est_bigru\n│   │   ├── text_mot_match\n│   │   └── VQVAEV3_CB1024_CMT_H1024_NRES3\n│   ├── lit-llama\n│   │   ├── 7B\n│   │   │   └── lit-llama.pth\n│   │   ├── 13B\n│   │   └── tokenizer.model\n│   └── t2m\n│       ├── Comp_v6_KLD005\n│       ├── M2T_EL4_DL4_NH8_PS\n│       ├── T2M_Seq2Seq_NML1_Ear_SME0_N\n│       ├── text_mot_match\n│       └── VQVAEV3_CB1024_CMT_H1024_NRES3\n├── body_models\n│   └── smpl\n│       ├── J_regressor_extra.npy\n│       ├── kintree_table.pkl\n│       ├── smplfaces.npy\n│       └── SMPL_NEUTRAL.pkl\n└── glove\n    ├── our_vab_data.npy\n    ├── our_vab_idx.pkl\n    └── our_vab_words.pkl\n```\n\n## 3. Pretrained Models\nFor pretrained VQ-VAE models\n```\nbash prepare/download_vqvae.sh\n```\n\nFor finetuned LLaMA model\n```\nbash prepare/download_lora.sh\n```\n\nOnce downloaded, you should have a folder like this:\n```\nMotionGPT/checkpoints\n├── pretrained_vqvae\n│   ├── kit.pth\n│   └── t2m.pth\n└── pretrained_lora\n    └── pretrained.pth\n```\n\n## 4. Dataset\nPlease follow [HumanML3D](https://github.com/EricGuo5513/HumanML3D) to download HumanML3D and KIT-ML datasets and put them under the directory `dataset` like:\n```\nMotionGPT/dataset\n├── HumanML3D\n└── KIT-ML\n```\n\nTo prepare the dataset used for finetuning LLaMA, please follow the instructions below (take HumanML3D as an example)\n```python\n# Encode the motions to tokens by pretrianed VQ-VAE and save the token sequence results under `./dataset/HumanML3D/VQVAE/`\n# For pretrained VQ-VAE, you can use the model provided or train the model by yourself following the training instruction.\npython scripts/prepare_data.py --dataname t2m\n\n# Generate the dataset on train split and validation split in the format of {instruction, input, output}\n# Results saved as `./data/train.json` and `./data/val.json`\npython scripts/generate_dataset.py --dataname t2m\n\n# Generate corresponding instruction tuning dataset\n# Results saved as `./data/train.pt` and `./data/val.pt`\npython scripts/prepare_motion.py --dataname t2m\n```\n\n## Demo\nGive task description (`--prompt`) and conditions (`--input`) to generate corresponding motion. The motion in `npy` format (`demo.npy`) and skeleton visualization result (`demo.gif`) will be saved under {output_dir}.\n\nPlease set `--render` if you want to render SMPL mesh.\n\n```python\n# text-to-motion\npython generate_motion.py --prompt \"Generate a sequence of motion tokens matching the following human motion description.\" --input \"a person walks forward.\" --lora_path ./checkpoints/pretrained_lora/pretrained.pth --out_dir {output_dir} --render\n\n# (text, init pose)-to-motion\npython generate_motion.py --prompt \"Generate a sequence of motion tokens matching the following human motion description given the initial token.\" --input \"a person walks forward.<Motion Token>315</Motion Token>\" --lora_path ./checkpoints/pretrained_lora/pretrained.pth --out_dir {output_dir} --render\n\n# (text, last pose)-to-motion\npython generate_motion.py --prompt \"Generate a sequence of motion tokens matching the following human motion description given the last token.\" --input \"a person walks forward.<Motion Token>406</Motion Token>\" --lora_path ./checkpoints/pretrained_lora/pretrained.pth --out_dir {output_dir} --render\n\n# (text, key poses)-to-motion\npython generate_motion.py --prompt \"Generate a sequence of motion tokens matching the following human motion description given several key tokens.\" --input \"a person walks forward.<Motion Token>315,91,406</Motion Token>\" --lora_path ./checkpoints/pretrained_lora/pretrained.pth --out_dir {output_dir} --render\n```\n\n## Train\nFor VQ-VAE training\n```\npython train_vqvae.py --out_dir {output_dir} --dataname t2m\n```\n\nFor finetuning LLaMA with LoRA\n```\npython finetune_motion.py --out_dir {output_dir} --dataname t2m\n```\n\n## Evaluation\nFor VQ-VAE\n```\npython eval_vqvae.py --out_dir {output_dir} --resume_pth {vqvae_model_path} --dataname t2m\n```\n\nFor LLaMA\n```\npython eval.py --vqvae_pth {vqvae_model_path} --lora_path {fintuned_model_path} --out_dir {output_dir} --dataname t2m\n```\n\n## Visualization\nThe generated poses are all saved in `npy` format with the shape of `[seq_len, joint_num, 3]`\n\nThe output results are saved under the same directory with the corresponding filename in `gif` format\n\nFor visualization in skeleton format\n```python\n# To visualize all the poses saved in {saved_pose_dir}\npython visualization/plot_3d_global.py --dir {saved_pose_dir}\n\n# To visualize selected poses in {saved_pose_dir}\npython visualization/plot_3d_global.py --dir {saved_pose_dir} --motion-list {fname1} {fname2} ...\n```\n\nFor SMPL mesh rendering\n```python\n# To visualize all the poses saved in {saved_pose_dir}\npython visualization/render.py --dir {saved_pose_dir}\n\n# To visualize selected poses in {saved_pose_dir}\npython visualization/render.py --dir {saved_pose_dir} --motion-list {fname1} {fname2} ...\n```\n\n## Acknowledgement\nThanks to [HumanML3D](https://github.com/EricGuo5513/HumanML3D), [T2M-GPT](https://github.com/Mael-zys/T2M-GPT) and [Lit-LLaMA](https://github.com/Lightning-AI/lit-llama), our code is partially borrowing from them.\n"
  },
  {
    "path": "dataloader/eval_loader.py",
    "content": "import torch\nfrom torch.utils import data\nimport numpy as np\nfrom os.path import join as pjoin\nimport random\nimport codecs as cs\nfrom tqdm import tqdm\n\nimport utils.paramUtil as paramUtil\nfrom torch.utils.data._utils.collate import default_collate\nfrom random import sample\n\ndef collate_fn(batch):\n    batch.sort(key=lambda x: x[3], reverse=True)\n    return default_collate(batch)\n\n\n'''For use of training text-2-motion generative model'''\nclass Text2MotionDataset(data.Dataset):\n    def __init__(self, dataset_name, split, w_vectorizer, feat_bias = 5, max_text_len = 20, unit_length = 4):\n        \n        self.max_length = 20\n        self.pointer = 0\n        self.dataset_name = dataset_name\n        self.max_text_len = max_text_len\n        self.unit_length = unit_length\n        self.w_vectorizer = w_vectorizer\n        if dataset_name == 't2m':\n            self.data_root = './dataset/HumanML3D'\n            self.motion_dir = pjoin(self.data_root, 'new_joint_vecs')\n            self.text_dir = pjoin(self.data_root, 'texts')\n            self.joints_num = 22\n            radius = 4\n            fps = 20\n            self.max_motion_length = 196\n            dim_pose = 263\n            kinematic_chain = paramUtil.t2m_kinematic_chain\n            self.meta_dir = './checkpoints/t2m/VQVAEV3_CB1024_CMT_H1024_NRES3/meta'\n        elif dataset_name == 'kit':\n            self.data_root = './dataset/KIT-ML'\n            self.motion_dir = pjoin(self.data_root, 'new_joint_vecs')\n            self.text_dir = pjoin(self.data_root, 'texts')\n            self.joints_num = 21\n            radius = 240 * 8\n            fps = 12.5\n            dim_pose = 251\n            self.max_motion_length = 196\n            kinematic_chain = paramUtil.kit_kinematic_chain\n            self.meta_dir = './checkpoints/kit/Decomp_SP001_SM001_H512/meta'\n\n        mean = np.load(pjoin(self.meta_dir, 'mean.npy'))\n        std = np.load(pjoin(self.meta_dir, 'std.npy'))\n        \n        split_file = pjoin(self.data_root, f'{split}.txt')\n\n        min_motion_len = 40 if self.dataset_name =='t2m' else 24\n\n        joints_num = self.joints_num\n\n        data_dict = {}\n        id_list = []\n        with cs.open(split_file, 'r') as f:\n            for line in f.readlines():\n                id_list.append(line.strip())\n\n        new_name_list = []\n        length_list = []\n        for name in tqdm(id_list):\n            try:\n                motion = np.load(pjoin(self.motion_dir, name + '.npy'))\n                if (len(motion)) < min_motion_len or (len(motion) >= 200):\n                    continue\n                text_data = []\n                flag = False\n                with cs.open(pjoin(self.text_dir, name + '.txt')) as f:\n                    for line in f.readlines():\n                        text_dict = {}\n                        line_split = line.strip().split('#')\n                        caption = line_split[0]\n                        tokens = line_split[1].split(' ')\n                        f_tag = float(line_split[2])\n                        to_tag = float(line_split[3])\n                        f_tag = 0.0 if np.isnan(f_tag) else f_tag\n                        to_tag = 0.0 if np.isnan(to_tag) else to_tag\n\n                        text_dict['caption'] = caption\n                        text_dict['tokens'] = tokens\n                        if f_tag == 0.0 and to_tag == 0.0:\n                            flag = True\n                            text_data.append(text_dict)\n                        else:\n                            try:\n                                n_motion = motion[int(f_tag*fps) : int(to_tag*fps)]\n                                if (len(n_motion)) < min_motion_len or (len(n_motion) >= 200):\n                                    continue\n                                new_name = random.choice('ABCDEFGHIJKLMNOPQRSTUVW') + '_' + name\n                                while new_name in data_dict:\n                                    new_name = random.choice('ABCDEFGHIJKLMNOPQRSTUVW') + '_' + name\n                                data_dict[new_name] = {'motion': n_motion,\n                                                       'length': len(n_motion),\n                                                       'text':[text_dict]}\n                                new_name_list.append(new_name)\n                                length_list.append(len(n_motion))\n                            except:\n                                print(line_split)\n                                print(line_split[2], line_split[3], f_tag, to_tag, name)\n                                # break\n\n                if flag:\n                    data_dict[name] = {'motion': motion,\n                                       'length': len(motion),\n                                       'text': text_data}\n                    new_name_list.append(name)\n                    length_list.append(len(motion))\n            except Exception as e:\n                # print(e)\n                pass\n\n        name_list, length_list = zip(*sorted(zip(new_name_list, length_list), key=lambda x: x[1]))\n        self.mean = mean\n        self.std = std\n        self.length_arr = np.array(length_list)\n        self.data_dict = data_dict\n        self.name_list = name_list\n        self.reset_max_len(self.max_length)\n\n    def reset_max_len(self, length):\n        assert length <= self.max_motion_length\n        self.pointer = np.searchsorted(self.length_arr, length)\n        print(\"Pointer Pointing at %d\"%self.pointer)\n        self.max_length = length\n\n    def inv_transform(self, data):\n        return data * self.std + self.mean\n\n    def forward_transform(self, data):\n        return (data - self.mean) / self.std\n\n    def __len__(self):\n        return len(self.data_dict) - self.pointer\n\n    def __getitem__(self, item):\n        idx = self.pointer + item\n        name = self.name_list[idx]\n        data = self.data_dict[name]\n        motion, m_length, text_list = data['motion'], data['length'], data['text']\n        # Randomly select a caption\n        text_data = random.choice(text_list)\n        caption, tokens = text_data['caption'], text_data['tokens']\n\n        if len(tokens) < self.max_text_len:\n            # pad with \"unk\"\n            tokens = ['sos/OTHER'] + tokens + ['eos/OTHER']\n            sent_len = len(tokens)\n            tokens = tokens + ['unk/OTHER'] * (self.max_text_len + 2 - sent_len)\n        else:\n            # crop\n            tokens = tokens[:self.max_text_len]\n            tokens = ['sos/OTHER'] + tokens + ['eos/OTHER']\n            sent_len = len(tokens)\n        pos_one_hots = []\n        word_embeddings = []\n        for token in tokens:\n            word_emb, pos_oh = self.w_vectorizer[token]\n            pos_one_hots.append(pos_oh[None, :])\n            word_embeddings.append(word_emb[None, :])\n        pos_one_hots = np.concatenate(pos_one_hots, axis=0)\n        word_embeddings = np.concatenate(word_embeddings, axis=0)\n\n        if self.unit_length < 10:\n            coin2 = np.random.choice(['single', 'single', 'double'])\n        else:\n            coin2 = 'single'\n\n        if coin2 == 'double':\n            m_length = (m_length // self.unit_length - 1) * self.unit_length\n        elif coin2 == 'single':\n            m_length = (m_length // self.unit_length) * self.unit_length\n        idx = random.randint(0, len(motion) - m_length)\n        motion = motion[idx:idx+m_length]\n\n        \"Z Normalization\"\n        motion = (motion - self.mean) / self.std\n\n        if m_length < self.max_motion_length:\n            motion = np.concatenate([motion,\n                                     np.zeros((self.max_motion_length - m_length, motion.shape[1]))\n                                     ], axis=0)\n            \n        return word_embeddings, pos_one_hots, caption, sent_len, motion, m_length, '_'.join(tokens), name\n\n\n\n\ndef DATALoader(dataset_name, split,\n                batch_size, w_vectorizer,\n                num_workers = 8, unit_length = 4) : \n    \n    val_loader = torch.utils.data.DataLoader(Text2MotionDataset(dataset_name, split, w_vectorizer, unit_length=unit_length),\n                                              batch_size,\n                                              shuffle = True,\n                                              num_workers=num_workers,\n                                              collate_fn=collate_fn,\n                                              drop_last = True)\n    return val_loader\n\n\ndef cycle(iterable):\n    while True:\n        for x in iterable:\n            yield x\n"
  },
  {
    "path": "dataloader/tokenizer_loader.py",
    "content": "import torch\nfrom torch.utils import data\nimport numpy as np\nfrom os.path import join as pjoin\nimport random\nimport codecs as cs\nfrom tqdm import tqdm\n\n\nclass VQMotionDataset(data.Dataset):\n    def __init__(self, dataset_name, feat_bias = 5, window_size = 64, unit_length = 8):\n        self.window_size = window_size\n        self.unit_length = unit_length\n        self.feat_bias = feat_bias\n\n        self.dataset_name = dataset_name\n        min_motion_len = 40 if dataset_name =='t2m' else 24\n        \n        if dataset_name == 't2m':\n            self.data_root = './dataset/HumanML3D'\n            self.motion_dir = pjoin(self.data_root, 'new_joint_vecs')\n            self.text_dir = pjoin(self.data_root, 'texts')\n            self.joints_num = 22\n            radius = 4\n            fps = 20\n            self.max_motion_length = 196\n            dim_pose = 263\n            self.meta_dir = './checkpoints/t2m/VQVAEV3_CB1024_CMT_H1024_NRES3/meta'\n        elif dataset_name == 'kit':\n            self.data_root = './dataset/KIT-ML'\n            self.motion_dir = pjoin(self.data_root, 'new_joint_vecs')\n            self.text_dir = pjoin(self.data_root, 'texts')\n            self.joints_num = 21\n            radius = 240 * 8\n            fps = 12.5\n            dim_pose = 251\n            self.max_motion_length = 196\n            self.meta_dir = './checkpoints/kit/VQVAEV3_CB1024_CMT_H1024_NRES3/meta'\n        \n        joints_num = self.joints_num\n\n        mean = np.load(pjoin(self.meta_dir, 'mean.npy'))\n        std = np.load(pjoin(self.meta_dir, 'std.npy'))\n        \n        split_file = pjoin(self.data_root, 'train_val.txt')\n        \n        data_dict = {}\n        id_list = []\n        with cs.open(split_file, 'r') as f:\n            for line in f.readlines():\n                id_list.append(line.strip())\n\n        new_name_list = []\n        length_list = []\n        for name in tqdm(id_list):\n            try:\n                motion = np.load(pjoin(self.motion_dir, name + '.npy'))\n                if (len(motion)) < min_motion_len or (len(motion) >= 200):\n                    continue\n\n                data_dict[name] = {'motion': motion,\n                                   'length': len(motion),\n                                   'name': name}\n                new_name_list.append(name)\n                length_list.append(len(motion))\n            except:\n                # Some motion may not exist in KIT dataset\n                pass\n\n\n        self.mean = mean\n        self.std = std\n        self.length_arr = np.array(length_list)\n        self.data_dict = data_dict\n        self.name_list = new_name_list\n\n    def inv_transform(self, data):\n        return data * self.std + self.mean\n\n    def __len__(self):\n        return len(self.data_dict)\n\n    def __getitem__(self, item):\n        name = self.name_list[item]\n        data = self.data_dict[name]\n        motion, m_length = data['motion'], data['length']\n\n        m_length = (m_length // self.unit_length) * self.unit_length\n\n        idx = random.randint(0, len(motion) - m_length)\n        motion = motion[idx:idx+m_length]\n\n        \"Z Normalization\"\n        motion = (motion - self.mean) / self.std\n\n        return motion, name\n\ndef DATALoader(dataset_name,\n                batch_size = 1,\n                num_workers = 8, unit_length = 4) : \n    \n    train_loader = torch.utils.data.DataLoader(VQMotionDataset(dataset_name, unit_length=unit_length),\n                                              batch_size,\n                                              shuffle=True,\n                                              num_workers=num_workers,\n                                              drop_last = True)\n    \n    return train_loader\n\ndef cycle(iterable):\n    while True:\n        for x in iterable:\n            yield x\n"
  },
  {
    "path": "dataloader/vqvae_loader.py",
    "content": "import torch\nfrom torch.utils import data\nimport numpy as np\nfrom os.path import join as pjoin\nimport random\nimport codecs as cs\nfrom tqdm import tqdm\n\n\nclass VQMotionDataset(data.Dataset):\n    def __init__(self, dataset_name, window_size = 64, unit_length = 4):\n        self.window_size = window_size\n        self.unit_length = unit_length\n        self.dataset_name = dataset_name\n\n        if dataset_name == 't2m':\n            self.data_root = './dataset/HumanML3D'\n            self.motion_dir = pjoin(self.data_root, 'new_joint_vecs')\n            self.text_dir = pjoin(self.data_root, 'texts')\n            self.joints_num = 22\n            self.max_motion_length = 196\n            self.meta_dir = './checkpoints/t2m/VQVAEV3_CB1024_CMT_H1024_NRES3/meta'\n        elif dataset_name == 'kit':\n            self.data_root = './dataset/KIT-ML'\n            self.motion_dir = pjoin(self.data_root, 'new_joint_vecs')\n            self.text_dir = pjoin(self.data_root, 'texts')\n            self.joints_num = 21\n\n            self.max_motion_length = 196\n            self.meta_dir = './checkpoints/kit/VQVAEV3_CB1024_CMT_H1024_NRES3/meta'\n        \n        joints_num = self.joints_num\n\n        mean = np.load(pjoin(self.meta_dir, 'mean.npy'))\n        std = np.load(pjoin(self.meta_dir, 'std.npy'))\n\n        split_file = pjoin(self.data_root, 'train.txt')\n\n        self.data = []\n        self.lengths = []\n        id_list = []\n        with cs.open(split_file, 'r') as f:\n            for line in f.readlines():\n                id_list.append(line.strip())\n\n        for name in tqdm(id_list):\n            try:\n                motion = np.load(pjoin(self.motion_dir, name + '.npy'))\n                if motion.shape[0] < self.window_size:\n                    continue\n                self.lengths.append(motion.shape[0] - self.window_size)\n                self.data.append(motion)\n            except:\n                # Some motion may not exist in KIT dataset\n                pass\n\n            \n        self.mean = mean\n        self.std = std\n        print(\"Total number of motions {}\".format(len(self.data)))\n\n    def inv_transform(self, data):\n        return data * self.std + self.mean\n    \n    def compute_sampling_prob(self) : \n        \n        prob = np.array(self.lengths, dtype=np.float32)\n        prob /= np.sum(prob)\n        return prob\n    \n    def __len__(self):\n        return len(self.data)\n\n    def __getitem__(self, item):\n        motion = self.data[item]\n        \n        idx = random.randint(0, len(motion) - self.window_size)\n\n        motion = motion[idx:idx+self.window_size]\n        \"Z Normalization\"\n        motion = (motion - self.mean) / self.std\n\n        return motion\n\ndef DATALoader(dataset_name,\n               batch_size,\n               num_workers = 8,\n               window_size = 64,\n               unit_length = 4):\n\n    train_loader = torch.utils.data.DataLoader(VQMotionDataset(dataset_name, unit_length=unit_length),\n                                              batch_size,\n                                              shuffle=True,\n                                              num_workers=num_workers,\n                                              drop_last = True)\n    return train_loader\n\ndef cycle(iterable):\n    while True:\n        for x in iterable:\n            yield x\n"
  },
  {
    "path": "environment.yml",
    "content": "name: motiongpt\nchannels:\n  - menpo\n  - conda-forge\n  - defaults\ndependencies:\n  - _libgcc_mutex=0.1=main\n  - _openmp_mutex=5.1=1_gnu\n  - blas=1.0=mkl\n  - brotli-python=1.0.9=py39h5a03fae_7\n  - bzip2=1.0.8=h7f98852_4\n  - ca-certificates=2023.5.7=hbcca054_0\n  - certifi=2023.5.7=pyhd8ed1ab_0\n  - dataclasses=0.8=pyhc8e2a94_3\n  - ffmpeg=4.3.2=hca11adc_0\n  - freetype=2.10.4=h0708190_1\n  - freetype-py=2.4.0=pyhd8ed1ab_0\n  - future=0.18.3=pyhd8ed1ab_0\n  - geos=3.10.2=h9c3ff4c_0\n  - gmp=6.2.1=h58526e2_0\n  - gnutls=3.6.13=h85f3911_1\n  - h5py=3.7.0=py39h737f45e_0\n  - hdf5=1.10.6=h3ffc7dd_1\n  - idna=3.4=pyhd8ed1ab_0\n  - intel-openmp=2023.1.0=hdb19cb5_46305\n  - jbig=2.1=h7f98852_2003\n  - jpeg=9e=h166bdaf_1\n  - lame=3.100=h7f98852_1001\n  - lcms2=2.12=hddcbb42_0\n  - ld_impl_linux-64=2.38=h1181459_1\n  - lerc=2.2.1=h9c3ff4c_0\n  - libdeflate=1.7=h7f98852_5\n  - libffi=3.4.2=h6a678d5_6\n  - libgcc-ng=11.2.0=h1234567_1\n  - libgfortran-ng=11.2.0=h00389a5_1\n  - libgfortran5=11.2.0=h1234567_1\n  - libgomp=11.2.0=h1234567_1\n  - libpng=1.6.37=h21135ba_2\n  - libstdcxx-ng=11.2.0=h1234567_1\n  - libtiff=4.3.0=hf544144_1\n  - libwebp-base=1.2.2=h7f98852_1\n  - lz4-c=1.9.3=h9c3ff4c_1\n  - mapbox_earcut=1.0.0=py39hf939315_3\n  - mkl=2023.1.0=h6d00ec8_46342\n  - mkl-service=2.4.0=py39h5eee18b_1\n  - mkl_fft=1.3.6=py39h417a72b_1\n  - mkl_random=1.2.2=py39h417a72b_1\n  - ncurses=6.4=h6a678d5_0\n  - nettle=3.6=he412f7d_0\n  - networkx=3.1=pyhd8ed1ab_0\n  - olefile=0.46=pyh9f0ad1d_1\n  - openh264=2.1.1=h780b84a_0\n  - openjpeg=2.4.0=hb52868f_1\n  - openssl=1.1.1u=h7f8727e_0\n  - osmesa=12.2.2.dev=0\n  - packaging=23.1=pyhd8ed1ab_0\n  - pip=23.0.1=py39h06a4308_0\n  - pooch=1.7.0=pyha770c72_3\n  - pyglet=1.5.27=py39hf3d152e_3\n  - pyopengl=3.1.6=pyhd8ed1ab_1\n  - pyrender=0.1.45=pyh8a188c0_3\n  - pysocks=1.7.1=pyha2e5f31_6\n  - python=3.9.16=h7a1cb2a_2\n  - python_abi=3.9=2_cp39\n  - readline=8.2=h5eee18b_0\n  - setuptools=66.0.0=py39h06a4308_0\n  - shapely=1.8.2=py39h73b9895_1\n  - six=1.16.0=pyh6c4a22f_0\n  - sqlite=3.41.2=h5eee18b_0\n  - tbb=2021.8.0=hdb19cb5_0\n  - tk=8.6.12=h1ccaba5_0\n  - trimesh=3.22.3=pyhd8ed1ab_0\n  - typing_extensions=4.7.1=pyha770c72_0\n  - wheel=0.38.4=py39h06a4308_0\n  - x264=1!161.3030=h7f98852_1\n  - xz=5.2.10=h5eee18b_1\n  - zlib=1.2.13=h5eee18b_0\n  - zstd=1.5.0=ha95c52a_0\n  - pip:\n    - absl-py==1.4.0\n    - accelerate==0.18.0\n    - aiobotocore==2.5.0\n    - aiohttp==3.8.4\n    - aioitertools==0.11.0\n    - aiosignal==1.3.1\n    - anyio==3.6.2\n    - argon2-cffi==21.3.0\n    - argon2-cffi-bindings==21.2.0\n    - arrow==1.2.3\n    - asttokens==2.2.1\n    - async-timeout==4.0.2\n    - attrs==23.1.0\n    - backcall==0.2.0\n    - beautifulsoup4==4.12.2\n    - bitsandbytes==0.38.1\n    - bleach==6.0.0\n    - blessed==1.20.0\n    - botocore==1.29.76\n    - cachetools==5.3.0\n    - cffi==1.15.1\n    - charset-normalizer==3.1.0\n    - chumpy==0.70\n    - click==8.1.3\n    - cmake==3.26.3\n    - comm==0.1.3\n    - croniter==1.3.14\n    - cycler==0.11.0\n    - datasets==2.11.0\n    - dateutils==0.6.12\n    - debugpy==1.6.7\n    - decorator==5.1.1\n    - deepdiff==6.3.0\n    - defusedxml==0.7.1\n    - dill==0.3.6\n    - docstring-parser==0.15\n    - executing==1.2.0\n    - fairscale==0.4.13\n    - fastapi==0.88.0\n    - fastjsonschema==2.16.3\n    - filelock==3.12.0\n    - fire==0.5.0\n    - fqdn==1.5.1\n    - frozenlist==1.3.3\n    - fsspec==2023.4.0\n    - ftfy==6.1.1\n    - google-auth==2.17.3\n    - google-auth-oauthlib==1.0.0\n    - grpcio==1.54.0\n    - h11==0.14.0\n    - hiq-python==1.1.12\n    - huggingface-hub==0.13.4\n    - imageio==2.9.0\n    - importlib-metadata==6.5.0\n    - importlib-resources==5.12.0\n    - inquirer==3.1.3\n    - ipykernel==6.22.0\n    - ipython==8.13.2\n    - ipython-genutils==0.2.0\n    - ipywidgets==8.0.6\n    - isoduration==20.11.0\n    - itsdangerous==2.1.2\n    - jedi==0.18.2\n    - jinja2==3.1.2\n    - jmespath==1.0.1\n    - jsonargparse==4.20.1\n    - jsonpointer==2.3\n    - jsonschema==4.17.3\n    - jupyter==1.0.0\n    - jupyter-client==8.2.0\n    - jupyter-console==6.6.3\n    - jupyter-core==5.3.0\n    - jupyter-events==0.6.3\n    - jupyter-server==2.5.0\n    - jupyter-server-terminals==0.4.4\n    - jupyterlab-pygments==0.2.2\n    - jupyterlab-widgets==3.0.7\n    - kiwisolver==1.4.4\n    - lightning==2.0.0\n    - lightning-cloud==0.5.33\n    - lightning-fabric==2.0.1.post0\n    - lightning-utilities==0.8.0\n    - lit==16.0.1\n    - markdown==3.4.3\n    - markdown-it-py==2.2.0\n    - markupsafe==2.1.2\n    - matplotlib==3.4.3\n    - matplotlib-inline==0.1.6\n    - mdurl==0.1.2\n    - mistune==2.0.5\n    - mpmath==1.3.0\n    - multidict==6.0.4\n    - multiprocess==0.70.14\n    - nbclassic==1.0.0\n    - nbclient==0.7.4\n    - nbconvert==7.3.1\n    - nbformat==5.8.0\n    - nest-asyncio==1.5.6\n    - notebook==6.5.4\n    - notebook-shim==0.2.3\n    - numpy==1.24.2\n    - nvidia-cublas-cu11==11.10.3.66\n    - nvidia-cuda-cupti-cu11==11.7.101\n    - nvidia-cuda-nvrtc-cu11==11.7.99\n    - nvidia-cuda-runtime-cu11==11.7.99\n    - nvidia-cudnn-cu11==8.5.0.96\n    - nvidia-cufft-cu11==10.9.0.58\n    - nvidia-curand-cu11==10.2.10.91\n    - nvidia-cusolver-cu11==11.4.0.1\n    - nvidia-cusparse-cu11==11.7.4.91\n    - nvidia-nccl-cu11==2.14.3\n    - nvidia-nvtx-cu11==11.7.91\n    - oauthlib==3.2.2\n    - ordered-set==4.1.0\n    - pandas==2.0.0\n    - pandocfilters==1.5.0\n    - parso==0.8.3\n    - pexpect==4.8.0\n    - pickleshare==0.7.5\n    - pillow==9.5.0\n    - platformdirs==3.5.0\n    - prometheus-client==0.16.0\n    - prompt-toolkit==3.0.38\n    - protobuf==3.20.0\n    - psutil==5.9.5\n    - ptyprocess==0.7.0\n    - pure-eval==0.2.2\n    - py-itree==0.0.19\n    - pyarrow==11.0.0\n    - pyasn1==0.5.0\n    - pyasn1-modules==0.3.0\n    - pycparser==2.21\n    - pydantic==1.10.7\n    - pygments==2.15.1\n    - pyjwt==2.6.0\n    - pyllama==0.0.9\n    - pyparsing==3.0.9\n    - pyrsistent==0.19.3\n    - python-dateutil==2.8.2\n    - python-editor==1.0.4\n    - python-json-logger==2.0.7\n    - python-multipart==0.0.6\n    - pytorch-lightning==2.0.1.post0\n    - pytz==2023.3\n    - pyyaml==6.0\n    - pyzmq==25.0.2\n    - qtconsole==5.4.2\n    - qtpy==2.3.1\n    - readchar==4.0.5\n    - regex==2023.3.23\n    - requests==2.28.2\n    - requests-oauthlib==1.3.1\n    - responses==0.18.0\n    - rfc3339-validator==0.1.4\n    - rfc3986-validator==0.1.1\n    - rich==13.3.4\n    - rsa==4.9\n    - s3fs==2023.4.0\n    - scipy==1.10.1\n    - send2trash==1.8.2\n    - sentencepiece==0.1.97\n    - smplx==0.1.28\n    - sniffio==1.3.0\n    - soupsieve==2.4.1\n    - stack-data==0.6.2\n    - starlette==0.22.0\n    - starsessions==1.3.0\n    - sympy==1.11.1\n    - tensorboard==2.12.2\n    - tensorboard-data-server==0.7.0\n    - tensorboard-plugin-wit==1.8.1\n    - termcolor==2.2.0\n    - terminado==0.17.1\n    - tinycss2==1.2.1\n    - tokenizers==0.13.3\n    - torch==2.0.0\n    - torchmetrics==0.11.4\n    - torchvision==0.15.1\n    - tornado==6.3.1\n    - tqdm==4.65.0\n    - traitlets==5.9.0\n    - transformers==4.28.1\n    - triton==2.0.0\n    - typeshed-client==2.2.0\n    - typing-extensions==4.5.0\n    - tzdata==2023.3\n    - uri-template==1.2.0\n    - urllib3==1.26.15\n    - uvicorn==0.21.1\n    - wcwidth==0.2.6\n    - webcolors==1.13\n    - webencodings==0.5.1\n    - websocket-client==1.5.1\n    - websockets==11.0.2\n    - werkzeug==2.2.3\n    - widgetsnbextension==4.0.7\n    - wrapt==1.15.0\n    - xxhash==3.2.0\n    - yarl==1.8.2\n    - zipp==3.15.0\n    - zstandard==0.21.0\n"
  },
  {
    "path": "eval.py",
    "content": "import os \nimport torch\nimport numpy as np\nimport json\nimport clip\n\nfrom options import option\nimport models.vqvae as vqvae\nimport utils.utils_model as utils_model\nfrom utils.evaluate import evaluation\nfrom dataloader.eval_loader import DATALoader\nfrom options.get_eval_option import get_opt\nfrom models.evaluator_wrapper import EvaluatorModelWrapper\nimport warnings\nwarnings.filterwarnings('ignore')\nimport sys\nimport time\nfrom pathlib import Path\nfrom typing import Optional\n\nimport lightning as L\nimport torch\n\nfrom lit_llama import LLaMA, LLaMAConfig\nfrom lit_llama.lora import lora\nfrom lit_llama.utils import EmptyInitOnDevice, lazy_load\nfrom lit_llama.tokenizer import Tokenizer\n\n\nargs = option.get_args_parser()\n\ndef main(\n    quantize: Optional[str] = None,\n    dtype: str = \"float32\",\n    accelerator: str = \"auto\"\n) -> None:\n    os.makedirs(args.out_dir, exist_ok = True)\n\n    ##### ---- Logger ---- #####\n    logger = utils_model.get_logger(args.out_dir)\n    logger.info(json.dumps(vars(args), indent=4, sort_keys=True))\n\n    from utils.word_vectorizer import WordVectorizer\n    w_vectorizer = WordVectorizer('./glove', 'our_vab')\n    val_loader = DATALoader(args.dataname, 'test', 32, w_vectorizer, unit_length=2**args.down_t)\n\n    if args.dataname == 'kit' : \n        dataset_opt_path = './checkpoints/kit/Comp_v6_KLD005/opt.txt'  \n        args.nb_joints = 21\n    else :\n        dataset_opt_path = './checkpoints/t2m/Comp_v6_KLD005/opt.txt'\n        args.nb_joints = 22\n\n    wrapper_opt = get_opt(dataset_opt_path, torch.device('cuda'))\n    eval_wrapper = EvaluatorModelWrapper(wrapper_opt)\n\n    ##### ---- Network ---- #####\n\n    ## load clip model and datasets\n    clip_model, clip_preprocess = clip.load(\"ViT-B/32\", device=torch.device('cuda'), jit=False)  # Must set jit=False for training\n    clip.model.convert_weights(clip_model)  # Actually this line is unnecessary since clip by default already on float16\n    clip_model.eval()\n    for p in clip_model.parameters():\n        p.requires_grad = False\n\n    print('Loading VAE')\n    vae = vqvae.HumanVQVAE(args, ## use args to define different parameters in different quantizers\n                        512,\n                        args.code_dim,\n                        args.output_emb_width,\n                        2,\n                        args.stride_t,\n                        args.width,\n                        3,\n                        args.dilation_growth_rate)\n    resume_pth = f\"./checkpoints/pretrained_vqvae/{args.dataname}.pth\"\n    ckpt = torch.load(resume_pth, map_location='cpu')\n    vae.load_state_dict(ckpt['net'], strict=True)\n    vae = vae.cuda().eval()\n    print('Loading VAE Done')\n\n    lora_path = Path(args.lora_path)\n    print('Load finetuned model from:', lora_path)\n    pretrained_path = Path(f\"./checkpoints/lit-llama/{args.pretrained_llama}/lit-llama.pth\")\n    tokenizer_path = Path(\"./checkpoints/lit-llama/tokenizer.model\")\n    \n    assert lora_path.is_file()\n    assert pretrained_path.is_file()\n    assert tokenizer_path.is_file()\n\n    if quantize is not None:\n        raise NotImplementedError(\"Quantization in LoRA is not supported yet\")\n\n    fabric = L.Fabric(accelerator=accelerator, devices=1)\n\n    dt = getattr(torch, dtype, None)\n    if not isinstance(dt, torch.dtype):\n        raise ValueError(f\"{dtype} is not a valid dtype.\")\n    dtype = dt\n\n    print(\"Loading model ...\", file=sys.stderr)\n    t0 = time.time()\n    with EmptyInitOnDevice(\n        device=fabric.device, dtype=dtype, quantization_mode=quantize\n    ), lora(r=args.lora_r, alpha=args.lora_alpha, dropout=args.lora_dropout, enabled=True):\n        # model = LLaMA(LLaMAConfig())  # TODO: Support different model sizes\n        config = LLaMAConfig.from_name(args.pretrained_llama)\n        model = LLaMA(config)\n\n    # 1. Load the pretrained weights\n    pretrained_checkpoint = lazy_load(pretrained_path)\n    model.load_state_dict(pretrained_checkpoint, strict=False)\n\n    # 2. Load the fine-tuned LoRA weights\n    lora_checkpoint = lazy_load(lora_path)\n    model.load_state_dict(lora_checkpoint, strict=False)\n\n    print(f\"Time to load model: {time.time() - t0:.02f} seconds.\", file=sys.stderr)\n\n    model.eval()\n    model = fabric.setup_module(model)\n    tokenizer = Tokenizer(tokenizer_path)\n\n    fid = []\n    div = []\n    top1 = []\n    top2 = []\n    top3 = []\n    matching = []\n    repeat_time = 3\n            \n    for _ in range(repeat_time):\n        best_fid, best_div, best_top1, best_top2, best_top3, best_matching, logger = evaluation(val_loader, vae, model, logger, tokenizer, eval_wrapper=eval_wrapper, instruction=args.prompt)\n        fid.append(best_fid)\n        div.append(best_div)\n        top1.append(best_top1)\n        top2.append(best_top2)\n        top3.append(best_top3)\n        matching.append(best_matching)\n\n    print('final result:')\n    print('fid: ', sum(fid)/repeat_time)\n    print('div: ', sum(div)/repeat_time)\n    print('top1: ', sum(top1)/repeat_time)\n    print('top2: ', sum(top2)/repeat_time)\n    print('top3: ', sum(top3)/repeat_time)\n    print('matching: ', sum(matching)/repeat_time)\n\n    fid = np.array(fid)\n    div = np.array(div)\n    top1 = np.array(top1)\n    top2 = np.array(top2)\n    top3 = np.array(top3)\n    matching = np.array(matching)\n    msg_final = f\"FID. {np.mean(fid):.3f}, conf. {np.std(fid)*1.96/np.sqrt(repeat_time):.3f}, Diversity. {np.mean(div):.3f}, conf. {np.std(div)*1.96/np.sqrt(repeat_time):.3f}, TOP1. {np.mean(top1):.3f}, conf. {np.std(top1)*1.96/np.sqrt(repeat_time):.3f}, TOP2. {np.mean(top2):.3f}, conf. {np.std(top2)*1.96/np.sqrt(repeat_time):.3f}, TOP3. {np.mean(top3):.3f}, conf. {np.std(top3)*1.96/np.sqrt(repeat_time):.3f}, Matching. {np.mean(matching):.3f}, conf. {np.std(matching)*1.96/np.sqrt(repeat_time):.3f}\"\n    logger.info(msg_final)\n\n\nif __name__ == \"__main__\":\n    torch.set_float32_matmul_precision(\"high\")\n    warnings.filterwarnings(\n        # Triggered internally at ../aten/src/ATen/EmptyTensor.cpp:31\n        \"ignore\", \n        message=\"ComplexHalf support is experimental and many operators don't support it yet\"\n    )\n    main()"
  },
  {
    "path": "eval_vqvae.py",
    "content": "# This code is based on https://github.com/Mael-zys/T2M-GPT.git\nimport os\nimport json\n\nimport torch\nfrom torch.utils.tensorboard import SummaryWriter\nimport numpy as np\nimport models.vqvae as vqvae\nimport options.option_vqvae as option_vq\nimport utils.utils_model as utils_model\nfrom dataloader.eval_loader import DATALoader\nfrom utils.evaluate import vqvae_evaluation\nfrom options.get_eval_option import get_opt\nfrom models.evaluator_wrapper import EvaluatorModelWrapper\nfrom utils.word_vectorizer import WordVectorizer\nimport warnings\nwarnings.filterwarnings('ignore')\nimport numpy as np\n\nargs = option_vq.get_args_parser()\ntorch.manual_seed(args.seed)\nos.makedirs(args.out_dir, exist_ok = True)\n\ndef main():\n    logger = utils_model.get_logger(args.out_dir)\n    writer = SummaryWriter(args.out_dir)\n    logger.info(json.dumps(vars(args), indent=4, sort_keys=True))\n\n    w_vectorizer = WordVectorizer('./glove', 'our_vab')\n\n    dataset_opt_path = './checkpoints/kit/Comp_v6_KLD005/opt.txt' if args.dataname == 'kit' else './checkpoints/t2m/Comp_v6_KLD005/opt.txt'\n\n    wrapper_opt = get_opt(dataset_opt_path, torch.device('cuda'))\n    eval_wrapper = EvaluatorModelWrapper(wrapper_opt)\n\n    args.nb_joints = 21 if args.dataname == 'kit' else 22\n\n    val_loader = DATALoader(args.dataname, 'test', 32, w_vectorizer, unit_length=2**args.down_t)\n\n    net = vqvae.HumanVQVAE(args, ## use args to define different parameters in different quantizers\n                        args.nb_code,\n                        args.code_dim,\n                        args.output_emb_width,\n                        args.down_t,\n                        args.stride_t,\n                        args.width,\n                        args.depth,\n                        args.dilation_growth_rate,\n                        args.vq_act,\n                        args.vq_norm)\n\n    if args.resume_pth : \n        logger.info('loading checkpoint from {}'.format(args.resume_pth))\n        ckpt = torch.load(args.resume_pth, map_location='cpu')\n        net.load_state_dict(ckpt['net'], strict=True)\n    net.train()\n    net.cuda()\n\n    fid = []\n    div = []\n    top1 = []\n    top2 = []\n    top3 = []\n    matching = []\n    repeat_time = 20\n    for _ in range(repeat_time):\n        best_fid, best_div, best_top1, best_top2, best_top3, best_matching, writer, logger = vqvae_evaluation(args.out_dir, val_loader, net, logger, writer, eval_wrapper, 0)\n        fid.append(best_fid)\n        div.append(best_div)\n        top1.append(best_top1)\n        top2.append(best_top2)\n        top3.append(best_top3)\n        matching.append(best_matching)\n    print('final result:')\n    print('fid: ', sum(fid)/repeat_time)\n    print('div: ', sum(div)/repeat_time)\n    print('top1: ', sum(top1)/repeat_time)\n    print('top2: ', sum(top2)/repeat_time)\n    print('top3: ', sum(top3)/repeat_time)\n    print('matching: ', sum(matching)/repeat_time)\n\n    fid = np.array(fid)\n    div = np.array(div)\n    top1 = np.array(top1)\n    top2 = np.array(top2)\n    top3 = np.array(top3)\n    matching = np.array(matching)\n    msg_final = f\"FID. {np.mean(fid):.3f}, conf. {np.std(fid)*1.96/np.sqrt(repeat_time):.3f}, Diversity. {np.mean(div):.3f}, conf. {np.std(div)*1.96/np.sqrt(repeat_time):.3f}, TOP1. {np.mean(top1):.3f}, conf. {np.std(top1)*1.96/np.sqrt(repeat_time):.3f}, TOP2. {np.mean(top2):.3f}, conf. {np.std(top2)*1.96/np.sqrt(repeat_time):.3f}, TOP3. {np.mean(top3):.3f}, conf. {np.std(top3)*1.96/np.sqrt(repeat_time):.3f}, Matching. {np.mean(matching):.3f}, conf. {np.std(matching)*1.96/np.sqrt(repeat_time):.3f}\"\n    logger.info(msg_final)\n\n\nif __name__ == '__main__':\n    main()"
  },
  {
    "path": "finetune_motion.py",
    "content": "import os\nimport time\n\nimport lightning as L\nimport numpy as np\nimport torch\nimport clip\nfrom lit_llama.lora import mark_only_lora_as_trainable, lora, lora_state_dict\nfrom lit_llama.model import LLaMA, LLaMAConfig\nfrom lit_llama.tokenizer import Tokenizer\nfrom dataloader.eval_loader import DATALoader\nfrom utils.evaluate import evaluation\nfrom utils.word_vectorizer import WordVectorizer\nfrom options.get_eval_option import get_opt\nfrom models.evaluator_wrapper import EvaluatorModelWrapper\nimport models.vqvae as vqvae\nfrom options import option\nimport utils.utils_model as utils_model\nfrom torch.utils.tensorboard import SummaryWriter\nimport json\n\nargs = option.get_args_parser()\ngradient_accumulation_steps = args.batch_size // args.micro_batch_size\nmax_iters = 50000 * 3 // args.micro_batch_size\n\n\ndef main():\n    fabric = L.Fabric(accelerator=\"cuda\", devices=1, precision=\"bf16-mixed\")\n    fabric.launch()\n    fabric.seed_everything(1337 + fabric.global_rank)\n\n    if fabric.global_rank == 0:\n        os.makedirs(args.out_dir, exist_ok=True)\n\n    train_data, val_data = load_datasets()\n\n    w_vectorizer = WordVectorizer('./glove', 'our_vab')\n    val_loader = DATALoader(args.dataname, 'val', 32, w_vectorizer, unit_length=2**args.down_t)\n\n    if args.dataname == 'kit' : \n        dataset_opt_path = './checkpoints/kit/Comp_v6_KLD005/opt.txt'  \n        args.nb_joints = 21\n    else :\n        dataset_opt_path = './checkpoints/t2m/Comp_v6_KLD005/opt.txt'\n        args.nb_joints = 22\n    wrapper_opt = get_opt(dataset_opt_path, torch.device('cuda'))\n    eval_wrapper = EvaluatorModelWrapper(wrapper_opt)\n\n    logger = utils_model.get_logger(args.out_dir)\n    writer = SummaryWriter(args.out_dir)\n    logger.info(json.dumps(vars(args), indent=4, sort_keys=True))\n\n    net = vqvae.HumanVQVAE(args, ## use args to define different parameters in different quantizers\n                       args.nb_code,\n                       args.code_dim,\n                       args.output_emb_width,\n                       args.down_t,\n                       args.stride_t,\n                       args.width,\n                       args.depth,\n                       args.dilation_growth_rate)\n    print ('loading checkpoint from {}'.format(args.vqvae_pth))\n    ckpt = torch.load(args.vqvae_pth, map_location='cpu')\n    net.load_state_dict(ckpt['net'], strict=True)\n    net.eval()\n    net.cuda()\n\n    clip_model, clip_preprocess = clip.load(\"ViT-B/32\", device=torch.device('cuda'), jit=False)  # Must set jit=False for training\n    clip.model.convert_weights(clip_model)  # Actually this line is unnecessary since clip by default already on float16\n    clip_model.eval()\n    for p in clip_model.parameters():\n        p.requires_grad = False\n\n    config = LLaMAConfig.from_name(args.pretrained_llama)\n    config.block_size = args.block_size\n\n    checkpoint = torch.load(f\"./checkpoints/lit-llama/{args.pretrained_llama}/lit-llama.pth\")\n    tokenizer = Tokenizer(\"./checkpoints/lit-llama/tokenizer.model\")\n\n    with fabric.device, lora(r=args.lora_r, alpha=args.lora_alpha, dropout=args.lora_dropout, enabled=True):\n        torch.set_default_tensor_type(torch.HalfTensor)\n        model = LLaMA(config).bfloat16()\n        torch.set_default_tensor_type(torch.FloatTensor)\n        # strict=False because missing keys due to LoRA weights not contained in checkpoint state\n        model.load_state_dict(checkpoint, strict=False)\n        if args.resume_pth:\n            checkpoint = torch.load(args.resume_pth)\n            model.load_state_dict(checkpoint, strict=False)\n    \n    mark_only_lora_as_trainable(model)\n\n    optimizer = torch.optim.AdamW(model.parameters(), lr=args.learning_rate, weight_decay=args.weight_decay)\n    model, optimizer = fabric.setup(model, optimizer)\n    train(fabric, model, optimizer, train_data, val_data, args.out_dir, logger, writer)\n\n    # Save the final LoRA checkpoint at the end of training\n    checkpoint = lora_state_dict(model)\n    fabric.save(os.path.join(args.out_dir, \"lit-llama-lora-finetuned.pth\"), checkpoint)\n\n    # Evaluation on validation set\n    evaluation(val_loader, net, model, logger, tokenizer, eval_wrapper=eval_wrapper, instruction=args.prompt)\n\n\ndef train(\n    fabric: L.Fabric,\n    model: torch.nn.Module,\n    optimizer: torch.optim.Optimizer,\n    train_data: np.ndarray,\n    val_data: np.ndarray,\n    out_dir: str,\n    logger,\n    writer\n) -> None:\n    \"\"\"The training loop.\n\n    Loosely based on the nanoGPT implementation: https://github.com/karpathy/nanoGPT.\n    \"\"\"\n    step_count = 0\n\n    for iter_num in range(max_iters):\n\n        if step_count <= args.warmup_steps:\n            # linear warmup\n            lr = args.learning_rate * step_count / args.warmup_steps\n            for param_group in optimizer.param_groups:\n                param_group['lr'] = lr\n\n        t0 = time.time()\n\n        input_ids, targets = get_batch(fabric, train_data)\n        logits = model(input_ids)\n        loss = loss_fn(logits, targets)\n        fabric.backward(loss)\n\n        if (iter_num + 1) % gradient_accumulation_steps == 0:\n            optimizer.step()\n            optimizer.zero_grad()\n            step_count += 1\n\n            if step_count % args.eval_interval == 0:\n                val_loss = validate(fabric, model, val_data)\n                writer.add_scalar('./Val', val_loss, step_count)\n                logger.info(f\"step {iter_num}: val loss {val_loss:.4f}\")\n                fabric.barrier()\n\n            if step_count % args.save_interval == 0:\n                print(f\"Saving LoRA weights to {out_dir}\")\n                # We are only saving the LoRA weights\n                # TODO: Provide a function/script to merge the LoRA weights with pretrained weights\n                checkpoint = lora_state_dict(model)\n                fabric.save(os.path.join(out_dir, f\"iter-{iter_num:06d}-ckpt.pth\"), checkpoint)\n\n        dt = time.time() - t0\n        if iter_num % args.log_interval == 0:\n            writer.add_scalar('./Train', loss, iter_num)\n            logger.info(f\"iter {iter_num}: loss {loss.item():.4f}, time: {dt*1000:.2f}ms\")\n\n\n@torch.no_grad()\ndef validate(fabric: L.Fabric, model: torch.nn.Module, val_data: np.ndarray) -> torch.Tensor:\n    fabric.print(\"Validating ...\")\n    model.eval()\n    losses = torch.zeros(args.eval_iters)\n    for k in range(args.eval_iters):\n        input_ids, targets = get_batch(fabric, val_data)\n        logits = model(input_ids)\n        loss = loss_fn(logits, targets)\n        losses[k] = loss.item()\n    out = losses.mean()\n\n    model.train()\n    return out.item()\n\ndef loss_fn(logits, targets):\n    # shift the targets such that output n predicts token n+1\n    logits = logits[..., :-1, :].contiguous()\n    targets = targets[..., 1:].contiguous()\n    loss = torch.nn.functional.cross_entropy(logits.view(-1, logits.size(-1)), targets.view(-1), ignore_index=-1)\n    return loss\n    \n\ndef get_batch(fabric: L.Fabric, data: list):\n    ix = torch.randint(len(data), (args.micro_batch_size,))\n\n    input_ids = [data[i][\"input_ids\"].type(torch.int64) for i in ix]\n    labels = [data[i][\"labels\"].type(torch.int64) for i in ix]\n\n    max_len = max(len(s) for s in input_ids)\n\n    def pad_left(x, pad_id):\n        # pad right based on the longest sequence\n        n = max_len - len(x)\n        return torch.cat((torch.full((n,), pad_id, dtype=x.dtype), x))\n    \n    # def pad_right(x, pad_id):\n    #     # pad right based on the longest sequence\n    #     n = max_len - len(x)\n    #     return torch.cat((x, torch.full((n,), pad_id, dtype=x.dtype)))\n\n    x = torch.stack([pad_left(x, pad_id=0) for x in input_ids])\n    y = torch.stack([pad_left(x, pad_id=-1) for x in labels])\n    x, y = fabric.to_device((x.pin_memory(), y.pin_memory()))\n    return x, y\n\n\ndef load_datasets():\n    print('Load data from:', args.data_dir)\n    train_data = torch.load(os.path.join(args.data_dir, \"train.pt\"))\n    val_data = torch.load(os.path.join(args.data_dir, \"val.pt\"))\n    return train_data, val_data\n\n\nif __name__ == \"__main__\":\n    # Uncomment this line if you see an error: \"Expected is_sm80 to be true, but got false\"\n    # torch.backends.cuda.enable_flash_sdp(False)\n    torch.set_float32_matmul_precision(\"high\")\n    \n    # from jsonargparse.cli import CLI\n\n    # args = option_trans.get_args_parser()\n    # args.dataname = 't2m'\n    # args.out_dir = 'out/lora/mydataset_v3'\n    # logger = utils_model.get_logger(args.out_dir)\n    # writer = SummaryWriter(args.out_dir)\n    # logger.info(json.dumps(vars(args), indent=4, sort_keys=True))\n\n    # CLI(main)\n    main()"
  },
  {
    "path": "generate.py",
    "content": "import sys\nimport time\nimport warnings\nfrom pathlib import Path\nfrom typing import Optional\n\nimport lightning as L\nimport torch\n\nfrom lit_llama import LLaMA, Tokenizer\nfrom lit_llama.utils import EmptyInitOnDevice, lazy_load\n\n\n@torch.no_grad()\ndef generate(\n    model: torch.nn.Module,\n    idx: torch.Tensor,\n    max_new_tokens: int,\n    max_seq_length: int,\n    temperature: float = 1.0,\n    top_k: Optional[int] = None,\n    eos_id: Optional[int] = None,\n) -> torch.Tensor:\n    \"\"\"Takes a conditioning sequence (prompt) as input and continues to generate as many tokens as requested.\n\n    The implementation of this function is modified from A. Karpathy's nanoGPT.\n\n    Args:\n        model: The model to use.\n        idx: Tensor of shape (T) with indices of the prompt sequence.\n        max_new_tokens: The number of new tokens to generate.\n        max_seq_length: The maximum sequence length allowed.\n        temperature: Scales the predicted logits by 1 / temperature\n        top_k: If specified, only sample among the tokens with the k highest probabilities\n        eos_id: If specified, stop generating any more token once the <eos> token is triggered\n    \"\"\"\n    # create an empty tensor of the expected final shape and fill in the current tokens\n    T = idx.size(0)\n    T_new = T + max_new_tokens\n    empty = torch.empty(T_new, dtype=idx.dtype, device=idx.device)\n    empty[:T] = idx\n    idx = empty\n\n    # generate max_new_tokens tokens\n    for t in range(T, T_new):\n        # ignore the not-filled-yet tokens\n        idx_cond = idx[:t]\n        # if the sequence context is growing too long we must crop it at max_seq_length\n        idx_cond = idx_cond if T <= max_seq_length else idx_cond[-max_seq_length:]\n\n        # forward\n        logits = model(idx_cond.view(1, -1))\n        logits = logits[0, -1] / temperature\n\n        # optionally crop the logits to only the top k options\n        if top_k is not None:\n            v, _ = torch.topk(logits, min(top_k, logits.size(-1)))\n            logits[logits < v[[-1]]] = -float(\"Inf\")\n\n        probs = torch.nn.functional.softmax(logits, dim=-1)\n        idx_next = torch.multinomial(probs, num_samples=1)\n\n        # concatenate the new generation\n        idx[t] = idx_next\n\n        # if <eos> token is triggered, return the output (stop generation)\n        if idx_next == eos_id:\n            return idx[:t + 1]  # include the EOS token\n\n    return idx\n\n\ndef main(\n    prompt: str = \"Hello, my name is\",\n    *,\n    num_samples: int = 1,\n    max_new_tokens: int = 50,\n    top_k: int = 200,\n    temperature: float = 0.8,\n    checkpoint_path: Optional[Path] = None,\n    tokenizer_path: Optional[Path] = None,\n    model_size: str = \"7B\",\n    quantize: Optional[str] = None,\n) -> None:\n    \"\"\"Generates text samples based on a pre-trained LLaMA model and tokenizer.\n\n    Args:\n        prompt: The prompt string to use for generating the samples.\n        num_samples: The number of text samples to generate.\n        max_new_tokens: The number of generation steps to take.\n        top_k: The number of top most probable tokens to consider in the sampling process.\n        temperature: A value controlling the randomness of the sampling process. Higher values result in more random\n            samples.\n        checkpoint_path: The checkpoint path to load.\n        tokenizer_path: The tokenizer path to load.\n        model_size: The model size to load.\n        quantize: Whether to quantize the model and using which method:\n            ``\"llm.int8\"``: LLM.int8() mode,\n            ``\"gptq.int4\"``: GPTQ 4-bit mode.\n    \"\"\"\n    if not checkpoint_path:\n        checkpoint_path = Path(f\"./checkpoints/lit-llama/{model_size}/lit-llama.pth\")\n    if not tokenizer_path:\n        tokenizer_path = Path(\"./checkpoints/lit-llama/tokenizer.model\")\n    assert checkpoint_path.is_file(), checkpoint_path\n    assert tokenizer_path.is_file(), tokenizer_path\n\n    fabric = L.Fabric(accelerator=\"cuda\", devices=1)\n    dtype = torch.bfloat16 if torch.cuda.is_bf16_supported() else torch.float32\n\n    print(\"Loading model ...\", file=sys.stderr)\n    t0 = time.time()\n    with EmptyInitOnDevice(\n        device=fabric.device, dtype=dtype, quantization_mode=quantize\n    ):\n        model = LLaMA.from_name(model_size)\n\n    checkpoint = lazy_load(checkpoint_path)\n    model.load_state_dict(checkpoint)\n    print(f\"Time to load model: {time.time() - t0:.02f} seconds.\", file=sys.stderr)\n\n    model.eval()\n    model = fabric.setup_module(model)\n\n    tokenizer = Tokenizer(tokenizer_path)\n    encoded_prompt = tokenizer.encode(prompt, bos=True, eos=False, device=fabric.device)\n\n    L.seed_everything(1234)\n    t0 = time.perf_counter()\n\n    for _ in range(num_samples):\n        y = generate(\n            model,\n            encoded_prompt,\n            max_new_tokens,\n            model.config.block_size,  # type: ignore[union-attr,arg-type]\n            temperature=temperature,\n            top_k=top_k,\n        )\n        print(tokenizer.decode(y))\n\n    t = time.perf_counter() - t0\n    print(f\"\\n\\nTime for inference: {t:.02f} sec total, {num_samples * max_new_tokens / t:.02f} tokens/sec\", file=sys.stderr)\n    print(f\"Memory used: {torch.cuda.max_memory_reserved() / 1e9:.02f} GB\", file=sys.stderr)\n\n\nif __name__ == \"__main__\":\n    from jsonargparse import CLI\n\n    torch.set_float32_matmul_precision(\"high\")\n    warnings.filterwarnings(\n        # Triggered internally at ../aten/src/ATen/EmptyTensor.cpp:31\n        \"ignore\", \n        message=\"ComplexHalf support is experimental and many operators don't support it yet\"\n    )\n    warnings.filterwarnings(\n        # Triggered in bitsandbytes/autograd/_functions.py:298\n        \"ignore\", \n        message=\"MatMul8bitLt: inputs will be cast from torch.bfloat16 to float16 during quantization\",\n    )\n    CLI(main)\n"
  },
  {
    "path": "generate_batch.py",
    "content": "import sys\nimport time\nimport warnings\nfrom pathlib import Path\nfrom typing import Optional\n\nimport lightning as L\nimport torch\n\nfrom lit_llama import LLaMA, Tokenizer\nfrom lit_llama.utils import EmptyInitOnDevice, lazy_load\n\n\n@torch.no_grad()\ndef generate(\n    model: torch.nn.Module,\n    idx: torch.Tensor,\n    max_new_tokens: int,\n    max_seq_length: int,\n    temperature: float = 1.0,\n    top_k: Optional[int] = None,\n    eos_id: Optional[int] = None,\n) -> torch.Tensor:\n    \"\"\"Takes a conditioning sequence (prompt) as input and continues to generate as many tokens as requested.\n\n    The implementation of this function is modified from A. Karpathy's nanoGPT.\n\n    Args:\n        model: The model to use.\n        idx: Tensor of shape (B, T) with indices of the prompt sequence.\n        max_new_tokens: The number of new tokens to generate.\n        max_seq_length: The maximum sequence length allowed.\n        temperature: Scales the predicted logits by 1 / temperature\n        top_k: If specified, only sample among the tokens with the k highest probabilities\n        eos_id: If specified, stop generating any more token once the <eos> token is triggered\n    \"\"\"\n    # create an empty tensor of the expected final shape and fill in the current tokens\n    B, T = idx.shape\n    T_new = T + max_new_tokens\n    empty = torch.empty(B, T_new, dtype=idx.dtype, device=idx.device)\n    empty[:, :T] = idx\n    idx = empty\n\n    # generate max_new_tokens tokens\n    for t in range(T, T_new):\n        # ignore the not-filled-yet tokens\n        idx_cond = idx[:, :t]\n        # if the sequence context is growing too long we must crop it at max_seq_length\n        idx_cond = idx_cond if T <= max_seq_length else idx_cond[:, -max_seq_length:]\n\n        # forward\n        logits = model(idx_cond)\n        logits = logits[:, -1] / temperature\n\n        # optionally crop the logits to only the top k options\n        if top_k is not None:\n            v, _ = torch.topk(logits, min(top_k, logits.size(-1)))\n            logits[logits < v[:, [-1]]] = -float(\"Inf\")\n\n        probs = torch.nn.functional.softmax(logits, dim=-1)\n        idx_next = torch.multinomial(probs, num_samples=1)\n\n        # concatenate the new column\n        idx[:, t:] = idx_next\n\n        # if <eos> token is triggered, return the output (stop generation)\n        # if idx_next == eos_id:\n            # return idx[:t + 1]  # include the EOS token\n\n    return idx\n\n\ndef main(\n    prompt: str = \"Hello, my name is\",\n    *,\n    num_samples: int = 1,\n    max_new_tokens: int = 50,\n    top_k: int = 200,\n    temperature: float = 0.8,\n    checkpoint_path: Optional[Path] = None,\n    tokenizer_path: Optional[Path] = None,\n    model_size: str = \"7B\",\n    quantize: Optional[str] = None,\n) -> None:\n    \"\"\"Generates text samples based on a pre-trained LLaMA model and tokenizer.\n\n    Args:\n        prompt: The prompt string to use for generating the samples.\n        num_samples: The number of text samples to generate.\n        max_new_tokens: The number of generation steps to take.\n        top_k: The number of top most probable tokens to consider in the sampling process.\n        temperature: A value controlling the randomness of the sampling process. Higher values result in more random\n            samples.\n        checkpoint_path: The checkpoint path to load.\n        tokenizer_path: The tokenizer path to load.\n        model_size: The model size to load.\n        quantize: Whether to quantize the model and using which method:\n            ``\"llm.int8\"``: LLM.int8() mode,\n            ``\"gptq.int4\"``: GPTQ 4-bit mode.\n    \"\"\"\n    if not checkpoint_path:\n        checkpoint_path = Path(f\"./checkpoints/lit-llama/{model_size}/lit-llama.pth\")\n    if not tokenizer_path:\n        tokenizer_path = Path(\"./checkpoints/lit-llama/tokenizer.model\")\n    assert checkpoint_path.is_file(), checkpoint_path\n    assert tokenizer_path.is_file(), tokenizer_path\n\n    fabric = L.Fabric(accelerator=\"cuda\", devices=1)\n    dtype = torch.bfloat16 if torch.cuda.is_bf16_supported() else torch.float32\n\n    print(\"Loading model ...\", file=sys.stderr)\n    t0 = time.time()\n    with EmptyInitOnDevice(\n        device=fabric.device, dtype=dtype, quantization_mode=quantize\n    ):\n        model = LLaMA.from_name(model_size)\n\n    checkpoint = lazy_load(checkpoint_path)\n    model.load_state_dict(checkpoint)\n    print(f\"Time to load model: {time.time() - t0:.02f} seconds.\", file=sys.stderr)\n\n    model.eval()\n    model = fabric.setup_module(model)\n\n    tokenizer = Tokenizer(tokenizer_path)\n    encoded_prompt = tokenizer.encode(prompt, bos=True, eos=False, device=fabric.device)\n    encoded_prompt = encoded_prompt[None, :]  # add batch dimension\n\n    L.seed_everything(1234)\n    t0 = time.perf_counter()\n\n    for _ in range(num_samples):\n        y = generate(\n            model,\n            encoded_prompt,\n            max_new_tokens,\n            model.config.block_size,  # type: ignore[union-attr,arg-type]\n            temperature=temperature,\n            top_k=top_k,\n        )[0]  # unpack batch dimension\n        print(tokenizer.decode(y))\n\n    t = time.perf_counter() - t0\n    print(f\"\\n\\nTime for inference: {t:.02f} sec total, {num_samples * max_new_tokens / t:.02f} tokens/sec\", file=sys.stderr)\n    print(f\"Memory used: {torch.cuda.max_memory_reserved() / 1e9:.02f} GB\", file=sys.stderr)\n\n\nif __name__ == \"__main__\":\n    from jsonargparse import CLI\n\n    torch.set_float32_matmul_precision(\"high\")\n    warnings.filterwarnings(\n        # Triggered internally at ../aten/src/ATen/EmptyTensor.cpp:31\n        \"ignore\", \n        message=\"ComplexHalf support is experimental and many operators don't support it yet\"\n    )\n    warnings.filterwarnings(\n        # Triggered in bitsandbytes/autograd/_functions.py:298\n        \"ignore\", \n        message=\"MatMul8bitLt: inputs will be cast from torch.bfloat16 to float16 during quantization\",\n    )\n    CLI(main)\n"
  },
  {
    "path": "generate_motion.py",
    "content": "import os\nimport sys\nimport time\nimport warnings\nfrom pathlib import Path\nfrom typing import Optional\n\nimport lightning as L\nimport torch\nimport numpy as np\n\nimport models.vqvae as vqvae\nfrom generate import generate\nfrom lit_llama import Tokenizer, LLaMA, LLaMAConfig\nfrom lit_llama.lora import lora\nfrom lit_llama.utils import EmptyInitOnDevice, lazy_load\nfrom scripts.prepare_motion import generate_prompt\nfrom options import option\nimport imageio\nfrom utils.evaluate import plot\nfrom visualization.render import render\nwarnings.filterwarnings('ignore')\n\nargs = option.get_args_parser()\n\n\ndef main(\n    quantize: Optional[str] = None,\n    dtype: str = \"float32\",\n    max_new_tokens: int = 200,\n    top_k: int = 200,\n    temperature: float = 0.8,\n    accelerator: str = \"auto\",\n) -> None:\n    lora_path = Path(args.lora_path)\n    pretrained_path = Path(f\"./checkpoints/lit-llama/{args.pretrained_llama}/lit-llama.pth\")\n    tokenizer_path = Path(\"./checkpoints/lit-llama/tokenizer.model\")\n    \n    assert lora_path.is_file()\n    assert pretrained_path.is_file()\n    assert tokenizer_path.is_file()\n\n    if quantize is not None:\n        raise NotImplementedError(\"Quantization in LoRA is not supported yet\")\n\n    fabric = L.Fabric(accelerator=accelerator, devices=1)\n\n    dt = getattr(torch, dtype, None)\n    if not isinstance(dt, torch.dtype):\n        raise ValueError(f\"{dtype} is not a valid dtype.\")\n    dtype = dt\n\n    net = vqvae.HumanVQVAE(args, ## use args to define different parameters in different quantizers\n                       args.nb_code,\n                       args.code_dim,\n                       args.output_emb_width,\n                       args.down_t,\n                       args.stride_t,\n                       args.width,\n                       args.depth,\n                       args.dilation_growth_rate)\n    print ('loading checkpoint from {}'.format(args.vqvae_pth))\n    ckpt = torch.load(args.vqvae_pth, map_location='cpu')\n    net.load_state_dict(ckpt['net'], strict=True)\n    net.eval()\n    net.cuda()\n\n    print(\"Loading model ...\", file=sys.stderr)\n    t0 = time.time()\n    with EmptyInitOnDevice(\n        device=fabric.device, dtype=dtype, quantization_mode=quantize\n    ), lora(r=args.lora_r, alpha=args.lora_alpha, dropout=args.lora_dropout, enabled=True):\n        config = LLaMAConfig.from_name(args.pretrained_llama)\n        model = LLaMA(config)\n        # model = LLaMA(LLaMAConfig())  # TODO: Support different model sizes\n\n    # 1. Load the pretrained weights\n    pretrained_checkpoint = lazy_load(pretrained_path)\n    model.load_state_dict(pretrained_checkpoint, strict=False)\n\n    # 2. Load the fine-tuned LoRA weights\n    lora_checkpoint = lazy_load(lora_path)\n    model.load_state_dict(lora_checkpoint, strict=False)\n\n    print(f\"Time to load model: {time.time() - t0:.02f} seconds.\", file=sys.stderr)\n\n    model.eval()\n    model = fabric.setup_module(model)\n\n    tokenizer = Tokenizer(tokenizer_path)\n    sample = {\"instruction\": args.prompt, \"input\": args.input}\n    prompt = generate_prompt(sample)\n    encoded = tokenizer.encode(prompt, bos=True, eos=False, device=model.device)\n\n    t0 = time.perf_counter()\n    output = generate(\n        model,\n        idx=encoded,\n        max_seq_length=max_new_tokens,\n        max_new_tokens=max_new_tokens,\n        temperature=temperature,\n        top_k=top_k,\n        eos_id=tokenizer.eos_id\n    )\n\n    output = tokenizer.decode(output)\n    output = output.split(\"### Response:\")[1].strip()\n\n    t = time.perf_counter() - t0\n\n    print(f\"\\n\\nTime for inference: {t:.02f} sec total, {max_new_tokens / t:.02f} tokens/sec\", file=sys.stderr)\n    print(f\"Memory used: {torch.cuda.max_memory_reserved() / 1e9:.02f} GB\", file=sys.stderr)\n\n    tokens = torch.tensor([int(token) for token in output.split(',')]).cuda()\n    generated_pose, img = plot(tokens, net, args.dataname)\n    os.makedirs(args.out_dir, exist_ok=True)\n    np.save(os.path.join(args.out_dir, 'demo.npy'), generated_pose)\n    imageio.mimsave(os.path.join(args.out_dir, 'demo.gif'), np.array(img), fps=20)\n    if args.render:\n        print(\"Rendering...\")\n        render(generated_pose, 'demo', outdir=args.out_dir)\n\n\nif __name__ == \"__main__\":\n    torch.set_float32_matmul_precision(\"high\")\n    main()\n"
  },
  {
    "path": "index.html",
    "content": "<!DOCTYPE html>\n<html>\n<head>\n  <meta charset=\"utf-8\">\n  <meta name=\"google-site-verification\" content=\"oZMIcPh6afVajpq9eSwxoKM79HITHoE3mZ46IXmt6D8\" />\n  <meta name=\"description\"\n        content=\"MotionGPT: Finetuned LLMs are General-Purpose Motion Generators.\">\n  <meta name=\"keywords\" content=\"MotionGPT, Motion Generation, LLM\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n  <title>MotionGPT: Finetuned LLMs are General-Purpose Motion Generators</title>\n\n  <!-- Global site tag (gtag.js) - Google Analytics -->\n  <script async src=\"https://www.googletagmanager.com/gtag/js?id=G-PYVRSFMDRL\"></script>\n  <script>\n    window.dataLayer = window.dataLayer || [];\n\n    function gtag() {\n      dataLayer.push(arguments);\n    }\n\n    gtag('js', new Date());\n\n    gtag('config', 'G-PYVRSFMDRL');\n  </script>\n\n  <link href=\"https://fonts.googleapis.com/css?family=Google+Sans|Noto+Sans|Castoro\"\n        rel=\"stylesheet\">\n\n  <link rel=\"stylesheet\" href=\"./static/css/bulma.min.css\">\n  <link rel=\"stylesheet\" href=\"./static/css/bulma-carousel.min.css\">\n  <link rel=\"stylesheet\" href=\"./static/css/bulma-slider.min.css\">\n  <link rel=\"stylesheet\" href=\"./static/css/fontawesome.all.min.css\">\n  <link rel=\"stylesheet\"\n        href=\"https://cdn.jsdelivr.net/gh/jpswalsh/academicons@1/css/academicons.min.css\">\n  <link rel=\"stylesheet\" href=\"./static/css/index.css\">\n  <link rel=\"icon\" href=\"./static/images/dancing-motion-svgrepo-com.svg\">\n\n  <script src=\"https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js\"></script>\n  <script defer src=\"./static/js/fontawesome.all.min.js\"></script>\n  <script src=\"./static/js/bulma-carousel.min.js\"></script>\n  <script src=\"./static/js/bulma-slider.min.js\"></script>\n  <script src=\"./static/js/index.js\"></script>\n</head>\n<body>\n\n<section class=\"hero\">\n  <div class=\"hero-body\">\n    <div class=\"container is-max-desktop\">\n      <div class=\"columns is-centered\">\n        <div class=\"column has-text-centered\">\n          <h1 class=\"title is-1 publication-title\">MotionGPT: Finetuned LLMs are General-Purpose Motion Generators</h1>\n          <div class=\"is-size-5 publication-authors\">\n            <span class=\"author-block\">\n              Yaqi Zhang<sup>1,2</sup>,</span>\n            <span class=\"author-block\">\n              Di Huang<sup>4</sup>,</span>\n            <span class=\"author-block\">\n              Bin Liu<sup>1,2</sup>,\n            </span>\n            <span class=\"author-block\">\n              Shixiang Tang<sup>4</sup>,\n            </span>\n            <span class=\"author-block\">\n              Yan Lu<sup>4</sup>,\n            </span>\n            <span class=\"author-block\">\n              Lu Chen<sup>5</sup>,\n            </span>\n            <span class=\"author-block\">\n              Lei Bai<sup>3</sup>,\n            </span>\n            <span class=\"author-block\">\n              Qi Chu<sup>1,2</sup>,\n            </span>\n            <span class=\"author-block\">\n              Nenghai Yu<sup>1,2</sup>,\n            </span>\n            <span class=\"author-block\">\n              Wanli Ouyang<sup>3</sup>\n            </span>\n          </div>\n\n          <div class=\"is-size-5 publication-authors\">\n            <span class=\"author-block\"><sup>1</sup>University of Science and Technology of China</span>\n            <span class=\"author-block\"><sup>2</sup>CAS Key Laboratory of Electromagnetic Space Information</span>\n            <span class=\"author-block\"><sup>3</sup>Shanghai AI Laboratory</span>\n            <span class=\"author-block\"><sup>4</sup>The University of Sydney</span>\n            <span class=\"author-block\"><sup>5</sup>Zhejiang University</span>\n          </div>\n\n          <div class=\"column has-text-centered\">\n            <div class=\"publication-links\">\n              <span class=\"link-block\">\n                <a href=\"https://arxiv.org/abs/2306.10900\"\n                   class=\"external-link button is-normal is-rounded is-dark\">\n                  <span class=\"icon\">\n                      <i class=\"ai ai-arxiv\"></i>\n                  </span>\n                  <span>arXiv</span>\n                </a>\n              </span>\n              <span class=\"link-block\">\n                <a href=\"https://github.com/qiqiApink/MotionGPT\"\n                   class=\"external-link button is-normal is-rounded is-dark\">\n                  <span class=\"icon\">\n                      <i class=\"fab fa-github\"></i>\n                  </span>\n                  <span>Code</span>\n                  </a>\n              </span>\n            </div>\n\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n</section>\n\n<section class=\"hero teaser\">\n  <div class=\"container is-max-desktop\">\n    <div class=\"hero-body\">\n      <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"80%\">\n        <source src=\"./static/videos/teaser.mp4\"\n        type=\"video/mp4\">\n      </video>\n      <h2 class=\"subtitle has-text-centered\">\n        MotionGPT supports diverse control conditions for human motion generation by finetuning LLMs.\n      </h2>\n    </div>\n  </div>\n</section>\n\n<section class=\"section\">\n  <div class=\"container is-max-desktop\">\n    <!-- Abstract. -->\n    <div class=\"columns is-centered has-text-centered\">\n      <div class=\"column is-four-fifths\">\n        <h2 class=\"title is-3\">Abstract</h2>\n        <div class=\"content has-text-justified\">\n          <p>\n            Generating realistic human motion from given action descriptions has experienced significant \n            advancements because of the emerging requirement of digital humans. While recent works have \n            achieved impressive results in generating motion directly from textual action descriptions, \n            they often support only a single modality of the control signal, which limits their application \n            in the real digital human industry. This paper presents a <b>Motion G</b>eneral-<b>P</b>urpose genera<b>T</b>or \n            (MotionGPT) that can use multimodal control signals, <i>e.g.</i>, text and single-frame poses, for \n            generating consecutive human motions by treating multimodal signals as special input tokens in \n            large language models (LLMs). Specifically, we first quantize multimodal control signals into \n            discrete codes and then formulate them in a unified prompt instruction to ask the LLMs to generate \n            the motion answer. Our MotionGPT demonstrates a unified human motion generation model with \n            multimodal control signals by tuning a mere 0.4% of LLM parameters. To the best of our knowledge, \n            MotionGPT is the first method to generate human motion by multimodal control signals, which we \n            hope can shed light on this new direction.\n          </p>\n          <img src=\"./static/images/teaser.png\" alt=\"Teaser image.\">\n          <div class=\"content has-text-justified\">\n            <p>Compared with previous methods, MotionGPT has the unique ability to accept multiple control conditions and solve various motion generation tasks using a unified model.</p>\n          </div>\n        </div>\n      </div>\n    </div>\n  </div>\n</section>\n\n\n<section class=\"section\">\n  <div class=\"container is-max-desktop\">\n    <div class=\"columns is-centered has-text-centered\">\n      <div class=\"column is-four-fifths\">\n        <h2 class=\"title is-3\">Pipeline</h2>\n\n        <img src=\"./static/images/pipeline.png\" alt=\"Pipeline image.\" />\n        <div class=\"content has-text-justified\">\n          <p>\n            Our MotionGPT (<b>Motion G</b>eneral-<b>P</b>urpose genera<b>T</b>or) has \n            the unique ability to accept multiple control conditions and solve various \n            motion generation tasks using a unified model. Given text and poses as an \n            input example, we organize task descriptions (Instruction) and multiple \n            control conditions (Input) within a question template. MotionGPT fine-tunes \n            a LLM with LoRA to generate the corresponding motion answer, which can then \n            be decoded into human motions using a VQ-VAE decoder.\n          </p>\n        </div>\n      </div>\n    </div>\n  </div>\n</section>\n\n<section class=\"hero is-small\">\n  <div class=\"hero-body\">\n    <div class=\"container\">  \n      <div class=\"columns is-centered has-text-centered\">\n        <div class=\"column is-four-fifths\">\n          <h2 class=\"title is-3\">Text-to-motion Generation</h2>\n          <p><b><font face=\"verdana\">the generated motion is in <font color=\"#f5a623\">orange</font></font></b></p>\n          <div class=\"content has-text-justified\">\n            <div id=\"results-carousel\" class=\"carousel results-carousel\">\n              <div class=\"column is-centered has-text-centered\">\n                <!-- <h2 class=\"title is-6\">a person walks forward at an angle to the right, then swings their left hand, a person walks forward at an angle to the right, then swings their left hand</h2> -->\n                <div style=\"width:500px ;height:100px;\"><p><i>a person walks forward, turns and then sits on a chair</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/t2m_0.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n              <div class=\"column is-centered has-text-centered\">\n                <!-- <h2 class=\"title is-4\">3</h2> -->\n                <div style=\"width:500px ;height:100px;\"><p><i>a hunched individual slowly wobbles forward in a drunken manner</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/t2m_1.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n              <div class=\"column is-centered has-text-centered\">\n                <!-- <h2 class=\"title is-4\">4</h2> -->\n                <div style=\"width:500px ;height:100px;\"><p><i>a person walks forward at an angle to the right, then swings their left hand</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/t2m_2.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n              <div class=\"column is-centered has-text-centered\">\n                <div style=\"width:500px ;height:100px;\"><p><i>a person stirs something with his left hand</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/t2m_3.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>    \n    </div>\n  </div>\n</section>\n\n<section class=\"hero is-small\">\n  <div class=\"hero-body\">\n    <div class=\"container\">  \n      <div class=\"columns is-centered has-text-centered\">\n        <div class=\"column is-four-fifths\">\n          <h2 class=\"title is-3\">(Text,initial pose)-to-motion Generation</h2>\n          <p><b><font face=\"verdana\">the generated motion is in <font color=\"#f5a623\">orange</font> and we highlight the initial pose in <font color=\"#4a90e2\">blue (remain frozen for 0.5s)</font></font></b></p>\n          <div class=\"content has-text-justified\">\n            <div id=\"results-carousel\" class=\"carousel results-carousel\">\n              <div class=\"column is-centered has-text-centered\">\n                <div style=\"width:500px ;height:100px;\"><p><i>a person slowly walked forward and returned</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/initial_0.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n              <div class=\"column is-centered has-text-centered\">\n                <div style=\"width:500px ;height:100px;\"><p><i>person is running from side to side</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/initial_1.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n              <div class=\"column is-centered has-text-centered\">\n                <div style=\"width:500px ;height:100px;\"><p>a person slowly walked forward while balancing</p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/initial_2.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n              <div class=\"column is-centered has-text-centered\">\n                <div style=\"width:500px ;height:100px;\"><p>a person walks forward very slowly</p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/initial_3.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>    \n    </div>\n  </div>\n</section>\n\n<section class=\"hero is-small\">\n  <div class=\"hero-body\">\n    <div class=\"container\">  \n      <div class=\"columns is-centered has-text-centered\">\n        <div class=\"column is-four-fifths\">\n          <h2 class=\"title is-3\">(Text,last pose)-to-motion Generation</h2>\n          <p><b><font face=\"verdana\">the generated motion is in <font color=\"#f5a623\">orange</font> and we highlight the last pose in <font color=\"#4a90e2\">blue (remain frozen for 0.5s)</font></font></b></p>\n          <div class=\"content has-text-justified\">\n            <div id=\"results-carousel\" class=\"carousel results-carousel\">\n              <div class=\"column is-centered has-text-centered\">\n                <div style=\"width:500px ;height:100px;\"><p><i>a person with his arms bent kicks to side with his left foot</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/last_0.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n              <div class=\"column is-centered has-text-centered\">\n                <div style=\"width:500px ;height:100px;\"><p><i>a person turns right while walking then stops</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/last_1.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n              <div class=\"column is-centered has-text-centered\">\n                <div style=\"width:500px ;height:100px;\"><p><i>walking backwards and then stopping</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/last_2.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n              <div class=\"column is-centered has-text-centered\">\n                <div style=\"width:500px ;height:100px;\"><p><i>swinging hands up and down</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/last_3.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>    \n    </div>\n  </div>\n</section>\n\n<section class=\"hero is-small\">\n  <div class=\"hero-body\">\n    <div class=\"container\">  \n      <div class=\"columns is-centered has-text-centered\">\n        <div class=\"column is-four-fifths\">\n          <h2 class=\"title is-3\">(Text,key poses)-to-motion Generation</h2>\n          <p><b><font face=\"verdana\">the generated motion is in <font color=\"#f5a623\">orange</font> and we highlight key poses in <font color=\"#4a90e2\">blue (remain frozen for 0.5s)</font></font></b></p>\n          <div class=\"content has-text-justified\">\n            <div id=\"results-carousel\" class=\"carousel results-carousel\">\n              <div class=\"column is-centered has-text-centered\">\n                <div style=\"width:500px ;height:100px;\"><p><i>a walking person suddenly gets staggered to their left, then recovers</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/keys_0.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n              <div class=\"column is-centered has-text-centered\">\n                <!-- <h2 class=\"title is-4\">2</h2> -->\n                <div style=\"width:500px ;height:100px;\"><p><i>standing on one leg and swinging it</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/keys_1.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n              <div class=\"column is-centered has-text-centered\">\n                <div style=\"width:500px ;height:100px;\"><p><i>the man dances around waving his arms and kicking his legs</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/keys_2.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n              <div class=\"column is-centered has-text-centered\">\n                <div style=\"width:500px ;height:100px;\"><p><i>a person does multiple jumping jacks</i></p></div>\n                <video poster=\"\" id=\"tree\" playsinline autoplay muted loop height=\"100%\">\n                  <source src=\"./static/videos/keys_3.mp4\"\n                  type=\"video/mp4\">\n                </video>\n              </div>\n            </div>\n          </div>\n        </div>\n      </div>    \n    </div>\n  </div>\n</section>\n\n<section class=\"section\" id=\"BibTeX\">\n  <div class=\"container is-max-desktop content\">\n    <h2 class=\"title\">BibTeX</h2>\n    <pre><code>\n    @article{zhang2023motiongpt,\n      title={MotionGPT: Finetuned LLMs are General-Purpose Motion Generators},\n      author={Zhang, Yaqi and Huang, Di and Liu, Bin and Tang, Shixiang and Lu, Yan and Chen, Lu and Bai, Lei and Chu, Qi and Yu, Nenghai and Ouyang, Wanli},\n      journal={arXiv preprint arXiv:2306.10900},\n      year={2023}\n    }\n    </code></pre>\n  </div>\n</section>\n\n\n<footer class=\"footer\">\n  <div class=\"container\">\n    <div class=\"content has-text-centered\">\n      <a class=\"icon-link\"\n         href=\"./static/images/motiongpt_paper.pdf\">\n        <i class=\"fas fa-file-pdf\"></i>\n      </a>\n      <a class=\"icon-link\" href=\"https://github.com/qiqiApink/MotionGPT\" class=\"external-link\" disabled>\n        <i class=\"fab fa-github\"></i>\n      </a>\n    </div>\n    <div class=\"columns is-centered\">\n      <div class=\"column is-8\">\n        <div class=\"content\">\n          <p>\n            This website is licensed under a <a rel=\"license\"\n                                                href=\"http://creativecommons.org/licenses/by-sa/4.0/\">Creative\n            Commons Attribution-ShareAlike 4.0 International License</a>.\n          </p>\n          <p>\n            Website source code based on the <a href=\"https://nerfies.github.io\">Nerfies</a> project page. \n            If you want to reuse their <a href=\"https://github.com/nerfies/nerfies.github.io\">source code</a>, \n            please credit them appropriately.\n          </p>\n        </div>\n      </div>\n    </div>\n  </div>\n</footer>\n\n</body>\n</html>\n"
  },
  {
    "path": "lit_llama/__init__.py",
    "content": "from lit_llama.model import LLaMAConfig, LLaMA, RMSNorm, build_rope_cache, apply_rope\nfrom lit_llama.tokenizer import Tokenizer\n"
  },
  {
    "path": "lit_llama/adapter.py",
    "content": "\"\"\"Implementation of the paper:\n\nLLaMA-Adapter: Efficient Fine-tuning of Language Models with Zero-init Attention\nhttps://arxiv.org/abs/2303.16199\n\"\"\"\n# mypy: ignore-errors\nimport math\nfrom dataclasses import dataclass\n\nimport torch\nimport torch.nn as nn\nfrom torch.nn import functional as F\nimport lit_llama.model as llama\nfrom lit_llama.model import build_rope_cache, apply_rope, RMSNorm, MLP\n\n\n@dataclass\nclass LLaMAConfig(llama.LLaMAConfig):\n    adapter_prompt_length: int = 10\n    adapter_start_layer: int = 2\n\n\nclass CausalSelfAttention(nn.Module):\n    \"\"\"A modification of `lit_llama.model.CausalSelfAttention` that adds the attention\n    over the adaption prompt.\"\"\"\n\n    def __init__(self, config: LLaMAConfig, block_idx: int) -> None:\n        super().__init__()\n        assert config.n_embd % config.n_head == 0\n\n        # key, query, value projections for all heads, but in a batch\n        self.c_attn = nn.Linear(config.n_embd, 3 * config.n_embd, bias=False)\n        # output projection\n        self.c_proj = nn.Linear(config.n_embd, config.n_embd, bias=False)\n        \n        if block_idx >= config.adapter_start_layer:\n            # adapter embedding layer\n            self.adapter_wte = nn.Embedding(config.adapter_prompt_length, config.n_embd)\n            # gate for adaption\n            self.gating_factor = torch.nn.Parameter(torch.zeros(1))\n\n        self.n_head = config.n_head\n        self.n_embd = config.n_embd\n        self.block_size = config.block_size\n        self.block_idx = block_idx\n        self.adapter_prompt_length = config.adapter_prompt_length\n        self.adapter_start_layer = config.adapter_start_layer\n        self.rope_cache = None\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        B, T, C = x.size()  # batch size, sequence length, embedding dimensionality (n_embd)\n\n        # calculate query, key, values for all heads in batch and move head forward to be the batch dim\n        q, k, v = self.c_attn(x).split(self.n_embd, dim=2)\n\n        head_size = C // self.n_head\n        k = k.view(B, T, self.n_head, head_size).transpose(1, 2)  # (B, nh, T, hs)\n        q = q.view(B, T, self.n_head, head_size).transpose(1, 2)  # (B, nh, T, hs)\n        v = v.view(B, T, self.n_head, head_size).transpose(1, 2)  # (B, nh, T, hs)\n\n        if self.rope_cache is None:\n            # cache for future forward calls\n            self.rope_cache = build_rope_cache(\n                seq_len=self.block_size,\n                n_elem=self.n_embd // self.n_head, \n                dtype=x.dtype,\n                device=x.device,\n            )\n\n        q = apply_rope(q, self.rope_cache)\n        k = apply_rope(k, self.rope_cache)\n\n        # causal self-attention; Self-attend: (B, nh, T, hs) x (B, nh, hs, T) -> (B, nh, T, T)\n        #  att = (q @ k.transpose(-2, -1)) * (1.0 / math.sqrt(k.size(-1)))\n        #  att = att.masked_fill(self.bias[:,:,:T,:T] == 0, float('-inf'))\n        #  att = F.softmax(att, dim=-1)\n        #  y = att @ v # (B, nh, T, T) x (B, nh, T, hs) -> (B, nh, T, hs)\n\n        # efficient attention using Flash Attention CUDA kernels\n        y = F.scaled_dot_product_attention(q, k, v, attn_mask=None, dropout_p=0.0, is_causal=True)\n\n        if self.block_idx >= self.adapter_start_layer:\n            prefix = self.adapter_wte.weight.reshape(1, self.adapter_prompt_length, self.n_embd)\n\n            aT = prefix.size(1)\n            _, ak, av = self.c_attn(prefix).split(self.n_embd, dim=2)\n            ak = ak.view(1, aT, self.n_head, head_size).repeat(B, 1, 1, 1).transpose(1, 2)\n            av = av.view(1, aT, self.n_head, head_size).repeat(B, 1, 1, 1).transpose(1, 2)\n\n            amask = torch.ones(q.shape[-2], ak.shape[-2], dtype=torch.bool, device=x.device)\n            ay = F.scaled_dot_product_attention(q, ak, av, attn_mask=amask, dropout_p=0.0, is_causal=False)\n            y = y + self.gating_factor * ay\n\n        y = y.transpose(1, 2).contiguous().view(B, T, C)  # re-assemble all head outputs side by side\n\n        # output projection\n        y = self.c_proj(y)\n\n        return y\n\n\nclass Block(nn.Module):\n    \"\"\"The implementation is identical to `lit_llama.model.Block` with the exception that\n    we replace the attention layer where adaption is implemented.\"\"\"\n\n    def __init__(self, config: LLaMAConfig, block_idx: int) -> None:\n        super().__init__()\n        self.rms_1 = RMSNorm(config.n_embd)\n        self.attn = CausalSelfAttention(config, block_idx)\n        self.rms_2 = RMSNorm(config.n_embd)\n        self.mlp = MLP(config)\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        x = x + self.attn(self.rms_1(x))\n        x = x + self.mlp(self.rms_2(x))\n        return x\n\n\nclass LLaMA(llama.LLaMA):\n    \"\"\"The implementation is identical to `lit_llama.model.LLaMA` with the exception that\n    the `Block` saves the layer index and passes it down to the attention layer.\"\"\"\n\n    def __init__(self, config: LLaMAConfig) -> None:\n        nn.Module.__init__(self)\n        assert config.vocab_size is not None\n        assert config.block_size is not None\n        self.config = config\n\n        self.lm_head = nn.Linear(config.n_embd, config.vocab_size, bias=False)\n        self.transformer = nn.ModuleDict(\n            dict(\n                wte=nn.Embedding(config.vocab_size, config.n_embd),\n                h=nn.ModuleList([Block(config, i) for i in range(config.n_layer)]),\n                ln_f=RMSNorm(config.n_embd),\n            )\n        )\n\n    @classmethod\n    def from_name(cls, name: str):\n        return cls(LLaMAConfig.from_name(name))\n\n\ndef mark_only_adapter_as_trainable(model: LLaMA) -> None:\n    \"\"\"Sets `requires_grad=False` for all non-adapter weights.\"\"\"\n    for name, param in model.named_parameters():\n        param.requires_grad = \"adapter_wte\" in name or \"gating_factor\" in name\n\n\ndef adapter_state_from_state_dict(state_dict: dict) -> dict:\n    \"\"\"Returns the model state dict with only the adapter weights for saving.\"\"\"\n    return {name: param for name, param in state_dict.items() if \"adapter_wte\" in name or \"gating_factor\" in name}\n"
  },
  {
    "path": "lit_llama/indexed_dataset.py",
    "content": "# https://github.com/NVIDIA/Megatron-LM/blob/main/megatron/data/indexed_dataset.py\n\n# Copyright (c) Facebook, Inc. and its affiliates.\n#\n# This source code is licensed under the MIT license found in the\n# LICENSE file in the root directory of the FairSeq source tree.\n\n# copied from fairseq/fairseq/data/indexed_dataset.py\n# Removed IndexedRawTextDataset since it relied on Fairseq dictionary\n# other slight modifications to remove fairseq dependencies\n# Added document index to index file and made it accessible.\n#    An empty sentence no longer separates documents.\n\nfrom functools import lru_cache\nimport os\nimport shutil\nimport struct\nfrom itertools import accumulate\n\nimport numpy as np\nimport torch\n\n\ndef __best_fitting_dtype(vocab_size=None):\n    if vocab_size is not None and vocab_size < 65500:\n        return np.uint16\n    else:\n        return np.int32\n\n\ndef get_available_dataset_impl():\n    return ['lazy', 'cached', 'mmap']\n\n\ndef infer_dataset_impl(path):\n    if IndexedDataset.exists(path):\n        with open(index_file_path(path), 'rb') as f:\n            magic = f.read(8)\n            if magic == IndexedDataset._HDR_MAGIC:\n                return 'cached'\n            elif magic == MMapIndexedDataset.Index._HDR_MAGIC[:8]:\n                return 'mmap'\n            else:\n                return None\n    else:\n        print(f\"Dataset does not exist: {path}\")\n        print(\"Path should be a basename that both .idx and .bin can be appended to get full filenames.\")\n        return None\n\n\ndef make_builder(out_file, impl, vocab_size=None):\n    if impl == 'mmap':\n        return MMapIndexedDatasetBuilder(out_file, dtype=__best_fitting_dtype(vocab_size))\n    else:\n        return IndexedDatasetBuilder(out_file)\n\n\ndef make_dataset(path, impl, skip_warmup=False):\n    if not IndexedDataset.exists(path):\n        print(f\"Dataset does not exist: {path}\")\n        print(\"Path should be a basename that both .idx and .bin can be appended to get full filenames.\")\n        return None\n    if impl == 'infer':\n        impl = infer_dataset_impl(path)\n    if impl == 'lazy' and IndexedDataset.exists(path):\n        return IndexedDataset(path)\n    elif impl == 'cached' and IndexedDataset.exists(path):\n        return IndexedCachedDataset(path)\n    elif impl == 'mmap' and MMapIndexedDataset.exists(path):\n        return MMapIndexedDataset(path, skip_warmup)\n    print(f\"Unknown dataset implementation: {impl}\")\n    return None\n\n\ndef dataset_exists(path, impl):\n    if impl == 'mmap':\n        return MMapIndexedDataset.exists(path)\n    else:\n        return IndexedDataset.exists(path)\n\n\ndef read_longs(f, n):\n    a = np.empty(n, dtype=np.int64)\n    f.readinto(a)\n    return a\n\n\ndef write_longs(f, a):\n    f.write(np.array(a, dtype=np.int64))\n\n\ndtypes = {\n    1: np.uint8,\n    2: np.int8,\n    3: np.int16,\n    4: np.int32,\n    5: np.int64,\n    6: np.float32,\n    7: np.float64,\n    8: np.uint16\n}\n\n\ndef code(dtype):\n    for k in dtypes.keys():\n        if dtypes[k] == dtype:\n            return k\n    raise ValueError(dtype)\n\n\ndef index_file_path(prefix_path):\n    return prefix_path + '.idx'\n\n\ndef data_file_path(prefix_path):\n    return prefix_path + '.bin'\n\n\ndef create_doc_idx(sizes):\n    doc_idx = [0]\n    for i, s in enumerate(sizes):\n        if s == 0:\n            doc_idx.append(i + 1)\n    return doc_idx\n\n\nclass IndexedDataset(torch.utils.data.Dataset):\n    \"\"\"Loader for IndexedDataset\"\"\"\n    _HDR_MAGIC = b'TNTIDX\\x00\\x00'\n\n    def __init__(self, path):\n        super().__init__()\n        self.path = path\n        self.data_file = None\n        self.read_index(path)\n\n    def read_index(self, path):\n        with open(index_file_path(path), 'rb') as f:\n            magic = f.read(8)\n            assert magic == self._HDR_MAGIC, (\n                'Index file doesn\\'t match expected format. '\n                'Make sure that --dataset-impl is configured properly.'\n            )\n            version = f.read(8)\n            assert struct.unpack('<Q', version) == (1,)\n            code, self.element_size = struct.unpack('<QQ', f.read(16))\n            self.dtype = dtypes[code]\n            self._len, self.s = struct.unpack('<QQ', f.read(16))\n            self.doc_count = struct.unpack('<Q', f.read(8))\n            self.dim_offsets = read_longs(f, self._len + 1)\n            self.data_offsets = read_longs(f, self._len + 1)\n            self.sizes = read_longs(f, self.s)\n            self.doc_idx = read_longs(f, self.doc_count)\n\n    def read_data(self, path):\n        self.data_file = open(data_file_path(path), 'rb', buffering=0)\n\n    def check_index(self, i):\n        if i < 0 or i >= self._len:\n            raise IndexError('index out of range')\n\n    def __del__(self):\n        if self.data_file:\n            self.data_file.close()\n\n    # @lru_cache(maxsize=8)\n    def __getitem__(self, idx):\n        if not self.data_file:\n            self.read_data(self.path)\n        if isinstance(idx, int):\n            i = idx\n            self.check_index(i)\n            tensor_size = self.sizes[self.dim_offsets[i]:self.dim_offsets[i + 1]]\n            a = np.empty(tensor_size, dtype=self.dtype)\n            self.data_file.seek(self.data_offsets[i] * self.element_size)\n            self.data_file.readinto(a)\n            return a\n        elif isinstance(idx, slice):\n            start, stop, step = idx.indices(len(self))\n            if step != 1:\n                raise ValueError(\"Slices into indexed_dataset must be contiguous\")\n            sizes = self.sizes[self.dim_offsets[start]:self.dim_offsets[stop]]\n            size = sum(sizes)\n            a = np.empty(size, dtype=self.dtype)\n            self.data_file.seek(self.data_offsets[start] * self.element_size)\n            self.data_file.readinto(a)\n            offsets = list(accumulate(sizes))\n            sents = np.split(a, offsets[:-1])\n            return sents\n\n    def __len__(self):\n        return self._len\n\n    def num_tokens(self, index):\n        return self.sizes[index]\n\n    def size(self, index):\n        return self.sizes[index]\n\n    @staticmethod\n    def exists(path):\n        return (\n            os.path.exists(index_file_path(path)) and os.path.exists(data_file_path(path))\n        )\n\n    @property\n    def supports_prefetch(self):\n        return False  # avoid prefetching to save memory\n\n\nclass IndexedCachedDataset(IndexedDataset):\n\n    def __init__(self, path):\n        super().__init__(path)\n        self.cache = None\n        self.cache_index = {}\n\n    @property\n    def supports_prefetch(self):\n        return True\n\n    def prefetch(self, indices):\n        if all(i in self.cache_index for i in indices):\n            return\n        if not self.data_file:\n            self.read_data(self.path)\n        indices = sorted(set(indices))\n        total_size = 0\n        for i in indices:\n            total_size += self.data_offsets[i + 1] - self.data_offsets[i]\n        self.cache = np.empty(total_size, dtype=self.dtype)\n        ptx = 0\n        self.cache_index.clear()\n        for i in indices:\n            self.cache_index[i] = ptx\n            size = self.data_offsets[i + 1] - self.data_offsets[i]\n            a = self.cache[ptx: ptx + size]\n            self.data_file.seek(self.data_offsets[i] * self.element_size)\n            self.data_file.readinto(a)\n            ptx += size\n        if self.data_file:\n            # close and delete data file after prefetch so we can pickle\n            self.data_file.close()\n            self.data_file = None\n\n    # @lru_cache(maxsize=8)\n    def __getitem__(self, idx):\n        if isinstance(idx, int):\n            i = idx\n            self.check_index(i)\n            tensor_size = self.sizes[self.dim_offsets[i]:self.dim_offsets[i + 1]]\n            a = np.empty(tensor_size, dtype=self.dtype)\n            ptx = self.cache_index[i]\n            np.copyto(a, self.cache[ptx: ptx + a.size])\n            return a\n        elif isinstance(idx, slice):\n            # Hack just to make this work, can optimizer later if necessary\n            sents = []\n            for i in range(*idx.indices(len(self))):\n                sents.append(self[i])\n            return sents\n\n\nclass IndexedDatasetBuilder(object):\n    element_sizes = {\n        np.uint8: 1,\n        np.int8: 1,\n        np.int16: 2,\n        np.int32: 4,\n        np.int64: 8,\n        np.float32: 4,\n        np.float64: 8\n    }\n\n    def __init__(self, out_file, dtype=np.int32):\n        self.out_file = open(out_file, 'wb')\n        self.dtype = dtype\n        self.data_offsets = [0]\n        self.dim_offsets = [0]\n        self.sizes = []\n        self.element_size = self.element_sizes[self.dtype]\n        self.doc_idx = [0]\n\n    def add_item(self, tensor):\n        bytes = self.out_file.write(np.array(tensor.numpy(), dtype=self.dtype))\n        self.data_offsets.append(self.data_offsets[-1] + bytes / self.element_size)\n        for s in tensor.size():\n            self.sizes.append(s)\n        self.dim_offsets.append(self.dim_offsets[-1] + len(tensor.size()))\n\n    def end_document(self):\n        self.doc_idx.append(len(self.sizes))\n\n    def merge_file_(self, another_file):\n        index = IndexedDataset(another_file)\n        assert index.dtype == self.dtype\n\n        doc_offset = len(self.sizes)\n\n        begin = self.data_offsets[-1]\n        for data_offset in index.data_offsets[1:]:\n            self.data_offsets.append(begin + data_offset)\n        self.sizes.extend(index.sizes)\n\n        begin = self.dim_offsets[-1]\n        for dim_offset in index.dim_offsets[1:]:\n            self.dim_offsets.append(begin + dim_offset)\n\n        self.doc_idx.extend((doc_offset + index.doc_idx)[1:])\n\n        with open(data_file_path(another_file), 'rb') as f:\n            while True:\n                data = f.read(1024)\n                if data:\n                    self.out_file.write(data)\n                else:\n                    break\n\n    def finalize(self, index_file):\n        self.out_file.close()\n        index = open(index_file, 'wb')\n        index.write(b'TNTIDX\\x00\\x00')\n        index.write(struct.pack('<Q', 1))\n        index.write(struct.pack('<QQ', code(self.dtype), self.element_size))\n        index.write(struct.pack('<QQ', len(self.data_offsets) - 1, len(self.sizes)))\n        index.write(struct.pack('<Q', len(self.doc_idx)))\n        write_longs(index, self.dim_offsets)\n        write_longs(index, self.data_offsets)\n        write_longs(index, self.sizes)\n        write_longs(index, self.doc_idx)\n        index.close()\n\n\ndef _warmup_mmap_file(path):\n    with open(path, 'rb') as stream:\n        while stream.read(100 * 1024 * 1024):\n            pass\n\n\nclass MMapIndexedDataset(torch.utils.data.Dataset):\n    class Index(object):\n        _HDR_MAGIC = b'MMIDIDX\\x00\\x00'\n\n        @classmethod\n        def writer(cls, path, dtype):\n            class _Writer(object):\n                def __enter__(self):\n                    self._file = open(path, 'wb')\n\n                    self._file.write(cls._HDR_MAGIC)\n                    self._file.write(struct.pack('<Q', 1))\n                    self._file.write(struct.pack('<B', code(dtype)))\n\n                    return self\n\n                @staticmethod\n                def _get_pointers(sizes):\n                    dtype_size = dtype().itemsize\n                    address = 0\n                    pointers = []\n\n                    for size in sizes:\n                        pointers.append(address)\n                        address += size * dtype_size\n\n                    return pointers\n\n                def write(self, sizes, doc_idx):\n                    pointers = self._get_pointers(sizes)\n\n                    self._file.write(struct.pack('<Q', len(sizes)))\n                    self._file.write(struct.pack('<Q', len(doc_idx)))\n\n                    sizes = np.array(sizes, dtype=np.int32)\n                    self._file.write(sizes.tobytes(order='C'))\n                    del sizes\n\n                    pointers = np.array(pointers, dtype=np.int64)\n                    self._file.write(pointers.tobytes(order='C'))\n                    del pointers\n\n                    doc_idx = np.array(doc_idx, dtype=np.int64)\n                    self._file.write(doc_idx.tobytes(order='C'))\n\n                def __exit__(self, exc_type, exc_val, exc_tb):\n                    self._file.close()\n\n            return _Writer()\n\n        def __init__(self, path, skip_warmup=False):\n            with open(path, 'rb') as stream:\n                magic_test = stream.read(9)\n                assert self._HDR_MAGIC == magic_test, (\n                    'Index file doesn\\'t match expected format. '\n                    'Make sure that --dataset-impl is configured properly.'\n                )\n                version = struct.unpack('<Q', stream.read(8))\n                assert (1,) == version\n\n                dtype_code, = struct.unpack('<B', stream.read(1))\n                self._dtype = dtypes[dtype_code]\n                self._dtype_size = self._dtype().itemsize\n\n                self._len = struct.unpack('<Q', stream.read(8))[0]\n                self._doc_count = struct.unpack('<Q', stream.read(8))[0]\n                offset = stream.tell()\n\n            if not skip_warmup:\n                print(\"    warming up index mmap file...\")\n                _warmup_mmap_file(path)\n\n            self._bin_buffer_mmap = np.memmap(path, mode='r', order='C')\n            self._bin_buffer = memoryview(self._bin_buffer_mmap)\n            print(\"    reading sizes...\")\n            self._sizes = np.frombuffer(\n                self._bin_buffer,\n                dtype=np.int32,\n                count=self._len,\n                offset=offset)\n            print(\"    reading pointers...\")\n            self._pointers = np.frombuffer(self._bin_buffer, dtype=np.int64, count=self._len,\n                                           offset=offset + self._sizes.nbytes)\n            print(\"    reading document index...\")\n            self._doc_idx = np.frombuffer(self._bin_buffer, dtype=np.int64, count=self._doc_count,\n                                          offset=offset + self._sizes.nbytes + self._pointers.nbytes)\n\n        def __del__(self):\n            self._bin_buffer_mmap._mmap.close()\n            del self._bin_buffer_mmap\n\n        @property\n        def dtype(self):\n            return self._dtype\n\n        @property\n        def sizes(self):\n            return self._sizes\n\n        @property\n        def doc_idx(self):\n            return self._doc_idx\n\n        @lru_cache(maxsize=8)\n        def __getitem__(self, i):\n            return self._pointers[i], self._sizes[i]\n\n        def __len__(self):\n            return self._len\n\n    def __init__(self, path, skip_warmup=False):\n        super().__init__()\n\n        self._path = None\n        self._index = None\n        self._bin_buffer = None\n\n        self._do_init(path, skip_warmup)\n\n    def __getstate__(self):\n        return self._path\n\n    def __setstate__(self, state):\n        self._do_init(state, skip_warmup=True)\n\n    def _do_init(self, path, skip_warmup):\n        self._path = path\n        self._index = self.Index(index_file_path(self._path), skip_warmup)\n\n        if not skip_warmup:\n            print(\"    warming up data mmap file...\")\n            _warmup_mmap_file(data_file_path(self._path))\n        print(\"    creating numpy buffer of mmap...\")\n        self._bin_buffer_mmap = np.memmap(data_file_path(self._path), mode='r', order='C')\n        print(\"    creating memory view of numpy buffer...\")\n        self._bin_buffer = memoryview(self._bin_buffer_mmap)\n\n    def __del__(self):\n        self._bin_buffer_mmap._mmap.close()\n        del self._bin_buffer_mmap\n        del self._index\n\n    def __len__(self):\n        return len(self._index)\n\n    # @lru_cache(maxsize=8)\n    def __getitem__(self, idx):\n        if isinstance(idx, (int, np.integer)):\n            ptr, size = self._index[idx]\n            np_array = np.frombuffer(self._bin_buffer, dtype=self._index.dtype,\n                                     count=size, offset=ptr)\n            return np_array\n        elif isinstance(idx, slice):\n            start, stop, step = idx.indices(len(self))\n            if step != 1:\n                raise ValueError(\"Slices into indexed_dataset must be contiguous\")\n            ptr = self._index._pointers[start]\n            sizes = self._index._sizes[idx]\n            offsets = list(accumulate(sizes))\n            total_size = sum(sizes)\n            np_array = np.frombuffer(self._bin_buffer, dtype=self._index.dtype,\n                                     count=total_size, offset=ptr)\n            sents = np.split(np_array, offsets[:-1])\n            return sents\n        else:\n            raise TypeError(\"Unexpected type received for idx: {}\".format(type(idx)))\n\n    def get(self, idx, offset=0, length=None):\n        \"\"\" Retrieves a single item from the dataset with the option to only\n        return a portion of the item.\n\n        get(idx) is the same as [idx] but get() does not support slicing.\n        \"\"\"\n        ptr, size = self._index[idx]\n        if length is None:\n            length = size - offset\n        ptr += offset * np.dtype(self._index.dtype).itemsize\n        np_array = np.frombuffer(self._bin_buffer, dtype=self._index.dtype,\n                                 count=length, offset=ptr)\n        return np_array\n\n    @property\n    def sizes(self):\n        return self._index.sizes\n\n    @property\n    def doc_idx(self):\n        return self._index.doc_idx\n\n    def get_doc_idx(self):\n        return self._index._doc_idx\n\n    def set_doc_idx(self, doc_idx_):\n        self._index._doc_idx = doc_idx_\n\n    @property\n    def supports_prefetch(self):\n        return False\n\n    @staticmethod\n    def exists(path):\n        return (\n            os.path.exists(index_file_path(path)) and os.path.exists(data_file_path(path))\n        )\n\n\nclass MMapIndexedDatasetBuilder(object):\n    def __init__(self, out_file, dtype=np.int64):\n        self._data_file = open(out_file, 'wb')\n        self._dtype = dtype\n        self._sizes = []\n        self._doc_idx = [0]\n\n    @property\n    def dtype(self):\n        return self._dtype\n\n    def add_item(self, np_array):\n        # np_array = np.array(tensor.numpy(), dtype=self._dtype)\n        self._data_file.write(np_array.tobytes(order='C'))\n        self._sizes.append(np_array.size)\n\n    def add_doc(self, np_array, sizes):\n        # np_array = np.array(tensor, dtype=self._dtype)\n        self._data_file.write(np_array.tobytes(order='C'))\n        self._sizes.extend(sizes)\n        self._doc_idx.append(len(self._sizes))\n\n    def end_document(self):\n        self._doc_idx.append(len(self._sizes))\n\n    def merge_file_(self, another_file):\n        # Concatenate index\n        index = MMapIndexedDataset.Index(index_file_path(another_file))\n        assert index.dtype == self._dtype\n\n        offset = len(self._sizes)\n        self._sizes.extend(index.sizes)\n        self._doc_idx.extend((offset + index.doc_idx)[1:])\n\n        # Concatenate data\n        with open(data_file_path(another_file), 'rb') as f:\n            shutil.copyfileobj(f, self._data_file)\n\n    def finalize(self, index_file):\n        self._data_file.close()\n\n        with MMapIndexedDataset.Index.writer(index_file, self._dtype) as index:\n            index.write(self._sizes, self._doc_idx)\n"
  },
  {
    "path": "lit_llama/lora.py",
    "content": "# Derived from https://github.com/microsoft/LoRA\n#  ------------------------------------------------------------------------------------------\n#  Copyright (c) Microsoft Corporation. All rights reserved.\n#  Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.\n#  ------------------------------------------------------------------------------------------\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\n\nimport math\nfrom typing import Dict, List\n\nimport lit_llama.model as llama\n\nfrom contextlib import contextmanager\nfrom dataclasses import dataclass\n\nclass LoRALayer():\n    def __init__(\n        self, \n        r: int, \n        lora_alpha: int, \n        lora_dropout: float,\n        merge_weights: bool,\n    ):\n        self.r = r\n        self.lora_alpha = lora_alpha\n        # Optional dropout\n        if lora_dropout > 0.:\n            self.lora_dropout = nn.Dropout(p=lora_dropout)\n        else:\n            self.lora_dropout = lambda x: x\n        # Mark the weight as unmerged\n        self.merged = False\n        self.merge_weights = merge_weights\n\n\nclass MergedLinear(nn.Linear, LoRALayer):\n    # LoRA implemented in a dense layer\n    def __init__(\n        self, \n        in_features: int, \n        out_features: int, \n        r: int = 0, \n        lora_alpha: int = 1, \n        lora_dropout: float = 0.,\n        enable_lora: List[bool] = [False],\n        fan_in_fan_out: bool = False,\n        merge_weights: bool = True,\n        **kwargs\n    ):\n        nn.Linear.__init__(self, in_features, out_features, **kwargs)\n        LoRALayer.__init__(self, r=r, lora_alpha=lora_alpha, lora_dropout=lora_dropout,\n                           merge_weights=merge_weights)\n        assert out_features % len(enable_lora) == 0, \\\n            'The length of enable_lora must divide out_features'\n        self.enable_lora = enable_lora\n        self.fan_in_fan_out = fan_in_fan_out\n        # Actual trainable parameters\n        if r > 0 and any(enable_lora):\n            self.lora_A = nn.Parameter(\n                self.weight.new_zeros((r * sum(enable_lora), in_features)))\n            self.lora_B = nn.Parameter(\n                self.weight.new_zeros((out_features // len(enable_lora) * sum(enable_lora), r))\n            ) # weights for Conv1D with groups=sum(enable_lora)\n            self.scaling = self.lora_alpha / self.r\n            # Freezing the pre-trained weight matrix\n            self.weight.requires_grad = False\n            # Compute the indices\n            self.lora_ind = self.weight.new_zeros(\n                (out_features, ), dtype=torch.bool\n            ).view(len(enable_lora), -1)\n            self.lora_ind[enable_lora, :] = True\n            self.lora_ind = self.lora_ind.view(-1)\n        self.reset_parameters()\n        if fan_in_fan_out:\n            self.weight.data = self.weight.data.T\n\n    def reset_parameters(self):\n        nn.Linear.reset_parameters(self)\n        if hasattr(self, 'lora_A'):\n            # initialize A the same way as the default for nn.Linear and B to zero\n            nn.init.kaiming_uniform_(self.lora_A, a=math.sqrt(5))\n            nn.init.zeros_(self.lora_B)\n\n    def zero_pad(self, x):\n        result = x.new_zeros((*x.shape[:-1], self.out_features))\n        result = result.view(-1, self.out_features)\n        result[:, self.lora_ind] = x.reshape(\n            -1, self.out_features // len(self.enable_lora) * sum(self.enable_lora)\n        )\n        return result.view((*x.shape[:-1], self.out_features))\n\n    def train(self, mode: bool = True):\n        def T(w):\n            return w.T if self.fan_in_fan_out else w\n        nn.Linear.train(self, mode)\n        if self.merge_weights and self.merged:\n            # Make sure that the weights are not merged\n            if self.r > 0 and any(self.enable_lora):\n                delta_w = F.conv1d(\n                    self.lora_A.data.unsqueeze(0), \n                    self.lora_B.data.unsqueeze(-1), \n                    groups=sum(self.enable_lora)\n                ).squeeze(0)\n                self.weight.data -= self.zero_pad(T(delta_w * self.scaling))\n            self.merged = False\n    \n    def eval(self):\n        def T(w):\n            return w.T if self.fan_in_fan_out else w\n        nn.Linear.eval(self)\n        if self.merge_weights and not self.merged:\n            # Merge the weights and mark it\n            if self.r > 0 and any(self.enable_lora):\n                delta_w = F.conv1d(\n                    self.lora_A.data.unsqueeze(0), \n                    self.lora_B.data.unsqueeze(-1), \n                    groups=sum(self.enable_lora)\n                ).squeeze(0)\n                self.weight.data += self.zero_pad(T(delta_w * self.scaling))\n            self.merged = True\n\n    def forward(self, x: torch.Tensor):\n        def T(w):\n            return w.T if self.fan_in_fan_out else w\n        if self.merged:\n            return F.linear(x, T(self.weight), bias=self.bias)\n        else:\n            result = F.linear(x, T(self.weight), bias=self.bias)\n            if self.r > 0:\n                after_A = F.linear(self.lora_dropout(x), self.lora_A)\n                after_B = F.conv1d(\n                    after_A.transpose(-2, -1), \n                    self.lora_B.unsqueeze(-1), \n                    groups=sum(self.enable_lora)\n                ).transpose(-2, -1)\n                result += self.zero_pad(after_B) * self.scaling\n            return result\n\n\ndef mark_only_lora_as_trainable(model: nn.Module, bias: str = 'none') -> None:\n    for n, p in model.named_parameters():\n        if 'lora_' not in n and 'motion_proj' not in n and 'llama_proj' not in n:\n            p.requires_grad = False\n    if bias == 'none':\n        return\n    elif bias == 'all':\n        for n, p in model.named_parameters():\n            if 'bias' in n:\n                p.requires_grad = True\n    elif bias == 'lora_only':\n        for m in model.modules():\n            if isinstance(m, LoRALayer) and \\\n                hasattr(m, 'bias') and \\\n                m.bias is not None:\n                    m.bias.requires_grad = True\n    else:\n        raise NotImplementedError\n\n\ndef lora_state_dict(model: nn.Module, bias: str = 'none') -> Dict[str, torch.Tensor]:\n    my_state_dict = model.state_dict()\n    if bias == 'none':\n        return {k: my_state_dict[k] for k in my_state_dict if 'lora_' in k or 'llama_proj' in k or 'motion_proj' in k}\n    elif bias == 'all':\n        return {k: my_state_dict[k] for k in my_state_dict if 'lora_' in k or 'bias' in k or 'llama_proj' in k or 'motion_proj' in k}\n    elif bias == 'lora_only':\n        to_return = {}\n        for k in my_state_dict:\n            if 'lora_' in k:\n                to_return[k] = my_state_dict[k]\n                bias_name = k.split('lora_')[0]+'bias'\n                if bias_name in my_state_dict:\n                    to_return[bias_name] = my_state_dict[bias_name]\n        return to_return\n    else:\n        raise NotImplementedError\n\n\n@dataclass\nclass LoRAConfig:\n    r: float = 0.0\n    alpha: float = 1.0\n    dropout: float = 0.0\n\n\nclass CausalSelfAttention(llama.CausalSelfAttention):\n    lora_config = None\n\n    def __init__(self, config: llama.LLaMAConfig) -> None:\n        # Skip the parent class __init__ altogether and replace it to avoid\n        # useless allocations\n        nn.Module.__init__(self)\n        assert config.n_embd % config.n_head == 0\n\n        # key, query, value projections for all heads, but in a batch\n        self.c_attn = MergedLinear(\n            in_features=config.n_embd,\n            out_features=3 * config.n_embd,\n            r=self.lora_config.r,\n            lora_alpha=self.lora_config.alpha,\n            lora_dropout=self.lora_config.dropout,\n            enable_lora=[True, False, True],\n            fan_in_fan_out = False,\n            merge_weights=True,\n            bias=False)\n        # output projection\n        self.c_proj = nn.Linear(config.n_embd, config.n_embd, bias=False)\n        # regularization\n        self.n_head = config.n_head\n        self.n_embd = config.n_embd\n        self.block_size = config.block_size\n        self.rope_cache = None\n\n\n@contextmanager\ndef lora(r, alpha, dropout, enabled: bool = True):\n    \"\"\"A context manager under which you can instantiate the model with LoRA.\"\"\"\n    if not enabled:\n        yield\n        return\n\n    CausalSelfAttention.lora_config = LoRAConfig(r=r, alpha=alpha, dropout=dropout)\n\n    causal_self_attention = llama.CausalSelfAttention\n    llama.CausalSelfAttention = CausalSelfAttention\n    yield\n    llama.CausalSelfAttention = causal_self_attention\n\n    CausalSelfAttention.lora_config = None\n"
  },
  {
    "path": "lit_llama/model.py",
    "content": "\"\"\"Full definition of a LLaMA Language Model, all of it in this single file.\n\nBased on the nanoGPT implementation: https://github.com/karpathy/nanoGPT.\n\"\"\"\n# mypy: ignore-errors\nimport math\nfrom dataclasses import dataclass\n\nimport torch\nimport torch.nn as nn\nfrom torch.nn import functional as F\nfrom typing_extensions import Self\n\n\n@dataclass\nclass LLaMAConfig:\n    block_size: int = 4096\n    vocab_size: int = 32000\n    n_layer: int = 32\n    n_head: int = 32\n    n_embd: int = 4096\n\n    @classmethod\n    def from_name(cls, name: str) -> Self:\n        return cls(**llama_configs[name])\n\n\nllama_configs = {\n    \"7B\": dict(n_layer=32, n_head=32, n_embd=4096),\n    \"13B\": dict(n_layer=40, n_head=40, n_embd=5120),\n    \"30B\": dict(n_layer=60, n_head=52, n_embd=6656),\n    \"65B\": dict(n_layer=80, n_head=64, n_embd=8192),\n}\n\n\nclass LLaMA(nn.Module):\n    def __init__(self, config: LLaMAConfig) -> None:\n        super().__init__()\n        assert config.vocab_size is not None\n        assert config.block_size is not None\n        self.config = config\n\n        self.lm_head = nn.Linear(config.n_embd, config.vocab_size, bias=False)\n        self.transformer = nn.ModuleDict(\n            dict(\n                wte=nn.Embedding(config.vocab_size, config.n_embd),\n                h=nn.ModuleList([Block(config) for _ in range(config.n_layer)]),\n                ln_f=RMSNorm(config.n_embd),\n            )\n        )\n        # self.llama_proj = nn.Sequential(\n        #     nn.Linear(256, 1024),\n        #     nn.ReLU(),\n        #     nn.Linear(1024, config.n_embd)\n        # )\n        self.llama_proj = nn.Linear(512, config.n_embd)\n        # self.motion_proj = nn.Sequential(\n        #     nn.Linear(config.n_embd, 1024),\n        #     nn.ReLU(),\n        #     nn.Linear(1024, 256)\n        # )\n        self.motion_proj = nn.Linear(config.n_embd, 512)\n\n    def _init_weights(self, module: nn.Module) -> None:\n        if isinstance(module, nn.Linear):\n            torch.nn.init.normal_(module.weight, mean=0.0, std=0.02 / math.sqrt(2 * self.config.n_layer))\n        elif isinstance(module, nn.Embedding):\n            torch.nn.init.normal_(module.weight, mean=0.0, std=0.02 / math.sqrt(2 * self.config.n_layer))\n\n    def forward(self, idx: torch.Tensor) -> torch.Tensor:\n        _, t = idx.size()\n        assert (\n            t <= self.config.block_size\n        ), f\"Cannot forward sequence of length {t}, block size is only {self.config.block_size}\"\n\n        # forward the LLaMA model itself\n        x = self.transformer.wte(idx)  # token embeddings of shape (b, t, n_embd)\n\n        for block in self.transformer.h:\n            x = block(x)\n        x = self.transformer.ln_f(x)\n\n        logits = self.lm_head(x)  # (b, t, vocab_size)\n\n        return logits\n\n    @classmethod\n    def from_name(cls, name: str) -> Self:\n        return cls(LLaMAConfig.from_name(name))\n\n\nclass Block(nn.Module):\n    def __init__(self, config: LLaMAConfig) -> None:\n        super().__init__()\n        self.rms_1 = RMSNorm(config.n_embd)\n        self.attn = CausalSelfAttention(config)\n        self.rms_2 = RMSNorm(config.n_embd)\n        self.mlp = MLP(config)\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        x = x + self.attn(self.rms_1(x))\n        x = x + self.mlp(self.rms_2(x))\n        return x\n\n\nclass CausalSelfAttention(nn.Module):\n    def __init__(self, config: LLaMAConfig) -> None:\n        super().__init__()\n        assert config.n_embd % config.n_head == 0\n\n        # key, query, value projections for all heads, but in a batch\n        self.c_attn = nn.Linear(config.n_embd, 3 * config.n_embd, bias=False)\n        # output projection\n        self.c_proj = nn.Linear(config.n_embd, config.n_embd, bias=False)\n\n        self.n_head = config.n_head\n        self.n_embd = config.n_embd\n        self.block_size = config.block_size\n        self.rope_cache = None\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        B, T, C = x.size()  # batch size, sequence length, embedding dimensionality (n_embd)\n\n        # calculate query, key, values for all heads in batch and move head forward to be the batch dim\n        q, k, v = self.c_attn(x).split(self.n_embd, dim=2)\n\n        head_size = C // self.n_head\n        k = k.view(B, T, self.n_head, head_size).transpose(1, 2)  # (B, nh, T, hs)\n        q = q.view(B, T, self.n_head, head_size).transpose(1, 2)  # (B, nh, T, hs)\n        v = v.view(B, T, self.n_head, head_size).transpose(1, 2)  # (B, nh, T, hs)\n\n        if self.rope_cache is None:\n            # cache for future forward calls\n            self.rope_cache = build_rope_cache(\n                seq_len=self.block_size,\n                n_elem=self.n_embd // self.n_head, \n                dtype=x.dtype,\n                device=x.device,\n            )\n\n        q = apply_rope(q, self.rope_cache)\n        k = apply_rope(k, self.rope_cache)\n\n        # causal self-attention; Self-attend: (B, nh, T, hs) x (B, nh, hs, T) -> (B, nh, T, T)\n        #  att = (q @ k.transpose(-2, -1)) * (1.0 / math.sqrt(k.size(-1)))\n        #  att = att.masked_fill(self.bias[:,:,:T,:T] == 0, float('-inf'))\n        #  att = F.softmax(att, dim=-1)\n        #  y = att @ v # (B, nh, T, T) x (B, nh, T, hs) -> (B, nh, T, hs)\n\n        # efficient attention using Flash Attention CUDA kernels\n        y = F.scaled_dot_product_attention(q, k, v, attn_mask=None, dropout_p=0.0, is_causal=True)\n\n        y = y.transpose(1, 2).contiguous().view(B, T, C)  # re-assemble all head outputs side by side\n\n        # output projection\n        y = self.c_proj(y)\n\n        return y\n\n\nclass MLP(nn.Module):\n    def __init__(self, config: LLaMAConfig) -> None:\n        super().__init__()\n        hidden_dim = 4 * config.n_embd\n        n_hidden = int(2 * hidden_dim / 3)\n        N = 256\n        # ensure n_hidden is multiple of N\n        n_hidden = ((n_hidden - 1) // N) * N + N\n\n        self.c_fc1 = nn.Linear(config.n_embd, n_hidden, bias=False)\n        self.c_fc2 = nn.Linear(config.n_embd, n_hidden, bias=False)\n        self.c_proj = nn.Linear(n_hidden, config.n_embd, bias=False)\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        x = F.silu(self.c_fc1(x)) * self.c_fc2(x)\n        x = self.c_proj(x)\n        return x\n\n\nclass RMSNorm(nn.Module):\n    \"\"\"Root Mean Square Layer Normalization.\n\n    Derived from https://github.com/bzhangGo/rmsnorm/blob/master/rmsnorm_torch.py. BSD 3-Clause License:\n    https://github.com/bzhangGo/rmsnorm/blob/master/LICENSE.\n    \"\"\"\n\n    def __init__(self, size: int, dim: int = -1, eps: float = 1e-5) -> None:\n        super().__init__()\n        self.scale = nn.Parameter(torch.ones(size))\n        self.eps = eps\n        self.dim = dim\n\n    def forward(self, x: torch.Tensor) -> torch.Tensor:\n        # NOTE: the original RMSNorm paper implementation is not equivalent\n        # norm_x = x.norm(2, dim=self.dim, keepdim=True)\n        # rms_x = norm_x * d_x ** (-1. / 2)\n        # x_normed = x / (rms_x + self.eps)\n        norm_x = torch.mean(x * x, dim=self.dim, keepdim=True)\n        x_normed = x * torch.rsqrt(norm_x + self.eps)\n        return self.scale * x_normed\n\n\ndef build_rope_cache(seq_len: int, n_elem: int, dtype: torch.dtype, device: torch.device, base: int = 10000) -> torch.Tensor:\n    \"\"\"Enhanced Transformer with Rotary Position Embedding.\n\n    Derived from: https://github.com/labmlai/annotated_deep_learning_paper_implementations/blob/master/labml_nn/\n    transformers/rope/__init__.py. MIT License:\n    https://github.com/labmlai/annotated_deep_learning_paper_implementations/blob/master/license.\n    \"\"\"\n    # $\\Theta = {\\theta_i = 10000^{\\frac{2(i-1)}{d}}, i \\in [1, 2, ..., \\frac{d}{2}]}$\n    theta = 1.0 / (base ** (torch.arange(0, n_elem, 2, dtype=dtype, device=device) / n_elem))\n\n    # Create position indexes `[0, 1, ..., seq_len - 1]`\n    seq_idx = torch.arange(seq_len, dtype=dtype, device=device)\n\n    # Calculate the product of position index and $\\theta_i$\n    idx_theta = torch.outer(seq_idx, theta)\n\n    # Compute cache. Because polar only takes float32 or float64, we need to cast\n    # when working with 16 bit floats (float16 or bfloat16)\n    dtypes_requiring_casting = [torch.float16, torch.bfloat16, torch.int8]\n    working_dtype = (\n        torch.float32 if dtype in dtypes_requiring_casting else dtype\n    )\n    complex_dtype = (\n        torch.complex32 if dtype in dtypes_requiring_casting else torch.complex64\n    )\n    cache = torch.polar(\n        torch.ones_like(idx_theta).to(working_dtype), idx_theta.to(working_dtype)\n    ).to(complex_dtype)\n    return cache\n\n\ndef apply_rope(x: torch.Tensor, rope_cache: torch.Tensor) -> torch.Tensor:\n    x = x.transpose(1, 2)\n\n    # truncate to support variable sizes\n    T = x.size(1)\n    rope_cache = rope_cache[:T]\n\n    # cast because `view_as_complex` does not support 16 bit tensors\n    xc = torch.view_as_complex(x.float().reshape(*x.shape[:-1], -1, 2))\n    rope_cache = rope_cache.view(1, xc.size(1), 1, xc.size(3))\n    x_out = torch.view_as_real(xc * rope_cache).flatten(3)\n    return x_out.transpose(1, 2).type_as(x)\n"
  },
  {
    "path": "lit_llama/quantization.py",
    "content": "import os\nfrom contextlib import contextmanager\nimport warnings\nimport math\n\nimport torch\n\n# configuration for bitsandbytes before import\nos.environ[\"BITSANDBYTES_NOWELCOME\"] = \"1\"\nwarnings.filterwarnings(\n    \"ignore\", \n    message=\"MatMul8bitLt: inputs will be cast from torch.float32 to float16 during quantization\"\n)\nwarnings.filterwarnings(\n    \"ignore\", \n    message=\"MatMul8bitLt: inputs will be cast from torch.bfloat16 to float16 during quantization\"\n)\nwarnings.filterwarnings(\n    \"ignore\", \n    message=\"The installed version of bitsandbytes was compiled without GPU support. 8-bit optimizers and GPU quantization are unavailable.\"\n)\n\ntry:\n    import bitsandbytes as bnb  # noqa: E402\nexcept:\n    bnb = None\n\nif bnb is not None:\n    class Linear8bitLt(bnb.nn.Linear8bitLt):\n        \"\"\"Wraps `bnb.nn.Linear8bitLt` and enables instantiation directly on the device and\n        re-quantizaton when loading the state dict.\n\n\n        This should only be used for inference. For training, use `bnb.nn.Linear8bitLt` directly.\n        \"\"\"\n        def __init__(self, *args, **kwargs):\n            super().__init__(*args, **kwargs, has_fp16_weights=False, threshold=6.0)\n            # We quantize the initial weight here so we don't end up filling the device\n            # memory with float32 weights which could lead to OOM.\n            self._quantize_weight(self.weight.data)\n\n        def _load_from_state_dict(self, local_state_dict, *args, **kwargs):\n            # There is only one key that ends with `*.weight`, the other one is the bias\n            weight_key = next((name for name in local_state_dict.keys() if name.endswith(\"weight\")), None)\n            if weight_key is None:\n                return\n\n            # Load the weight from the state dict and re-quantize it\n            weight = local_state_dict.pop(weight_key)\n            self._quantize_weight(weight)\n\n            # If there is a bias, let nn.Module load it\n            if local_state_dict:\n                super()._load_from_state_dict(local_state_dict, *args, **kwargs)\n\n        def _quantize_weight(self, weight: torch.Tensor) -> None:\n            # This code is taken and adapted from `bnb.nn.Int8Params.cuda()`\n            B = weight.contiguous().half().cuda()\n            CB, CBt, SCB, SCBt, coo_tensorB = bnb.functional.double_quant(B)\n            del CBt\n            del SCBt\n            self.weight.data = CB\n            setattr(self.weight, \"CB\", CB)\n            setattr(self.weight, \"SCB\", SCB)\n\n\n# for correctness but with terrible perf\nclass ColBlockQuantizedLinear(torch.nn.Module):\n    def __init__(self, in_features, out_features, bias: bool, *, bits, tile_cols):\n        super().__init__()\n        self.in_features = in_features\n        self.out_features = out_features\n        self.tile_cols = tile_cols if tile_cols != -1 else self.in_features\n        self.bits = bits\n        self.entries_per_byte = 8 // bits\n        assert self.entries_per_byte > 0 and self.entries_per_byte * self.bits == 8\n        assert in_features % self.entries_per_byte == 0\n        self.register_buffer(\"quant_weight\", torch.empty((self.out_features, self.in_features // self.entries_per_byte), dtype=torch.uint8))\n        self.register_buffer(\"scales\", torch.empty((self.out_features, (self.in_features + self.tile_cols - 1) // self.tile_cols)))\n        self.register_buffer(\"zeros\", torch.empty_like(self.scales))\n        assert isinstance(bias, bool)\n        if bias:\n            self.register_buffer(\"bias\", torch.empty((self.out_features,)))\n        else:\n            self.register_buffer(\"bias\", None)\n\n    def pack_weight(self, weight):\n        weight = weight.to(device=self.quant_weight.device, copy=True)\n        for j in range(self.scales.size(1)):\n            weight[:, j * self.tile_cols: (j + 1) * self.tile_cols] /= self.scales[: , j: j+1]\n            weight[:, j * self.tile_cols: (j + 1) * self.tile_cols] += self.zeros[: , j: j+1]\n        weight = weight.clamp_(min=0, max=2 ** self.bits - 1).to(dtype=torch.uint8)\n        self.quant_weight.zero_()\n        for nr in range(self.entries_per_byte):\n            self.quant_weight += weight[:, nr::self.entries_per_byte] << (nr * self.bits)\n\n    def get_weight(self, dtype=torch.float):\n        weight = torch.empty((self.out_features, self.in_features),  device=self.quant_weight.device, dtype=dtype)\n        mask = (1<<self.bits) - 1\n        for nr in range(self.entries_per_byte):\n            weight[:, nr::self.entries_per_byte] = ((self.quant_weight >> (nr * self.bits)) & mask).float()\n        self.quant_weight.to(dtype)\n        for j in range(self.scales.size(1)):\n            weight[:, j * self.tile_cols: (j + 1) * self.tile_cols] -= self.zeros[: , j: j+1]\n            weight[:, j * self.tile_cols: (j + 1) * self.tile_cols] *= self.scales[: , j: j+1]\n        return weight\n\n    def forward(self, inp):\n        weight = self.get_weight(dtype=inp.dtype)\n        return torch.nn.functional.linear(inp, weight, self.bias)\n\n\n\n\nclass GPTQQuantizer:\n    # The algorithm and code has been taken from  https://github.com/IST-DASLab/gptq/\n    # E. Frantar et al GPTQ: Accurate Post-training Compression for GPT, arXiv:2210.17323\n    # portions copyright by the authors licensed under the Apache License 2.0\n    # All errors are our own.\n\n    def __init__(self, linear_module, *, bits, perchannel=True, sym=False, blocksize=128, percdamp=.01, groupsize=-1, actorder=False):\n        assert isinstance(linear_module, torch.nn.Linear)\n\n        self.linear_module = linear_module\n        self.dev = self.linear_module.weight.device\n        self.rows = linear_module.weight.shape[0]\n        self.columns = linear_module.weight.shape[1]\n        self.H = torch.zeros((self.columns, self.columns), device=self.dev)\n        self.nsamples = 0\n        self.bits = bits\n        self.maxq = 2 ** bits - 1\n        self.perchannel = perchannel\n        self.sym = sym\n        self.blocksize = blocksize\n        self.percdamp = percdamp\n        self.groupsize = groupsize\n        self.actorder = actorder\n        self.tile_cols = self.columns if groupsize == -1 else groupsize\n        self.scales = torch.zeros((self.rows, (self.columns + self.tile_cols - 1) // self.tile_cols), dtype=self.linear_module.weight.dtype, device = self.dev)\n        self.zeros = torch.zeros_like(self.scales)\n        assert not (self.actorder and self.groupsize != -1), \"The permutation trick does not work for grouped quantization\"\n\n    @staticmethod\n    def quantize_weight(x, scale, zero, maxq):\n        q = torch.clamp(torch.round(x / scale) + zero, 0, maxq)\n        x_rec = scale * (q - zero)\n        return x_rec\n\n    def find_params_weight(self, x):\n        dev = x.device\n\n        shape = x.shape\n        if self.perchannel:\n            x = x.flatten(1)\n        else:\n            x = x.flatten().unsqueeze(0)\n\n        tmp = torch.zeros(x.shape[0], device=dev)\n        xmin = torch.minimum(x.min(1)[0], tmp)\n        xmax = torch.maximum(x.max(1)[0], tmp)\n\n        if self.sym:\n            xmax = torch.maximum(torch.abs(xmin), xmax)\n            tmp = xmin < 0\n            if torch.any(tmp):\n                xmin[tmp] = -xmax[tmp]\n        tmp = (xmin == 0) & (xmax == 0)\n        xmin[tmp] = -1\n        xmax[tmp] = +1\n\n        scale = (xmax - xmin) / self.maxq\n        if self.sym:\n            zero = torch.full_like(scale, (self.maxq + 1) / 2)\n        else:\n            zero = torch.round(-xmin / scale)\n\n        if not self.perchannel:\n            tmp = shape[0]\n            scale = scale.repeat(tmp)\n            zero = zero.repeat(tmp)\n\n        shape = [-1] + [1] * (len(shape) - 1)\n        scale = scale.reshape(shape)\n        zero = zero.reshape(shape)\n        return scale, zero\n\n    def collect_input_stats(self, _1, inp, _2):\n        inp = inp[0].detach()\n        self.last_inp = inp\n        if len(inp.shape) == 2:\n            inp = inp.unsqueeze(0)\n        tmp = inp.shape[0]\n        if len(inp.shape) == 3:\n            inp = inp.reshape((-1, inp.shape[-1]))\n        inp = inp.t()\n        self.H *= self.nsamples / (self.nsamples + tmp)\n        self.nsamples += tmp\n        # inp = inp.float()\n        inp = math.sqrt(2 / self.nsamples) * inp.float()\n        # self.H += 2 / self.nsamples * inp.matmul(inp.t())\n        self.H += inp.matmul(inp.t())\n\n    def quantize(self):\n        W = self.linear_module.weight.detach().to(dtype=torch.float, copy=True)\n\n        scale, zero = self.find_params_weight(W)\n        self.scales[:] = scale\n        self.zeros[:] = zero\n\n        H = self.H\n        del self.H\n        dead = torch.diag(H) == 0\n        H[dead, dead] = 1\n        W[:, dead] = 0\n        if self.actorder:\n            perm = torch.argsort(torch.diag(H), descending=True)\n            W = W[:, perm]\n            H = H[perm][:, perm]\n\n        Losses = torch.zeros_like(W)\n        Q = torch.zeros_like(W)\n\n        damp = self.percdamp * torch.mean(torch.diag(H))\n        diag = torch.arange(self.columns, device=self.dev)\n        H[diag, diag] += damp\n        H = torch.linalg.cholesky(H)\n        H = torch.cholesky_inverse(H)\n        H = torch.linalg.cholesky(H, upper=True)\n        Hinv = H\n\n        for i1 in range(0, self.columns, self.blocksize):\n            i2 = min(i1 + self.blocksize, self.columns)\n            count = i2 - i1\n\n            W1 = W[:, i1:i2].clone()\n            Q1 = torch.zeros_like(W1)\n            Err1 = torch.zeros_like(W1)\n            Losses1 = torch.zeros_like(W1)\n            Hinv1 = Hinv[i1:i2, i1:i2]\n\n            for i in range(count):\n                w = W1[:, i]\n                d = Hinv1[i, i]\n\n                if self.groupsize != -1:\n                    if (i1 + i) % self.groupsize == 0:\n                        scale, zero = self.find_params_weight(W[:, (i1 + i):(i1 + i + self.groupsize)])\n                        self.scales[:, (i1 + i) // self.groupsize] = scale\n                        self.zeros[:, (i1 + i) // self.groupsize] = zeros\n\n                q = self.quantize_weight(\n                    w.unsqueeze(1), scale, zero, self.maxq\n                )\n                q = q.squeeze(1)\n                assert q.dim() == 1\n                Q1[:, i] = q\n                Losses1[:, i] = (w - q) ** 2 / d ** 2\n\n                err1 = (w - q) / d\n                W1[:, i:] -= err1.unsqueeze(1).matmul(Hinv1[i, i:].unsqueeze(0))\n                Err1[:, i] = err1\n\n            Q[:, i1:i2] = Q1\n            Losses[:, i1:i2] = Losses1 / 2\n\n            W[:, i2:] -= Err1.matmul(Hinv[i1:i2, i2:])\n\n        if self.actorder:\n            invperm = torch.argsort(perm)\n            Q = Q[:, invperm]\n\n        weight = Q.reshape(self.linear_module.weight.shape).to(self.linear_module.weight.data.dtype)\n        error = torch.sum(Losses).item()\n\n        q_module = ColBlockQuantizedLinear(self.linear_module.in_features, self.linear_module.out_features, self.linear_module.bias is not None,\n                                           bits=self.bits, tile_cols=self.groupsize).to(self.dev)\n        q_module.scales = self.scales\n        q_module.zeros = self.zeros\n        q_module.pack_weight(weight)\n        q_module.bias = self.linear_module.bias\n        return q_module, error\n"
  },
  {
    "path": "lit_llama/tokenizer.py",
    "content": "import os\nfrom pathlib import Path\nfrom typing import Optional\n\nimport torch\nfrom sentencepiece import SentencePieceProcessor, SentencePieceTrainer\n\n\nclass Tokenizer:\n    \"\"\"Tokenizer for LLaMA.\"\"\"\n\n    def __init__(self, model_path: Path) -> None:\n        self.processor = SentencePieceProcessor(model_file=str(model_path))\n        self.bos_id = self.processor.bos_id()\n        self.eos_id = self.processor.eos_id()\n        self.pad_id = self.processor.pad_id()\n\n    @property\n    def vocab_size(self) -> int:\n        return self.processor.vocab_size()\n\n    def encode(\n        self,\n        string: str,\n        bos: bool = True,\n        eos: bool = False,\n        max_length: int = -1,\n        pad: bool = False,\n        device: Optional[torch.device] = None\n    ) -> torch.Tensor:\n        tokens = self.processor.encode(string)\n        if bos:\n            tokens = [self.bos_id] + tokens\n        if eos:\n            tokens = tokens + [self.eos_id]\n        if max_length > 0:\n            tokens = tokens[:max_length]\n        if pad and len(tokens) < max_length:\n            tokens += [self.pad_id] * (max_length - len(tokens))\n\n        return torch.tensor(tokens, dtype=torch.int, device=device)\n\n    def decode(self, tokens: torch.Tensor) -> str:\n        return self.processor.decode(tokens.tolist())\n\n    @staticmethod\n    def train(input: str, destination: str, vocab_size=32000) -> None:\n        model_prefix = os.path.join(destination, \"tokenizer\")\n        SentencePieceTrainer.Train(input=input, model_prefix=model_prefix, vocab_size=vocab_size)\n"
  },
  {
    "path": "lit_llama/utils.py",
    "content": "\"\"\"Utility functions for training and inference.\"\"\"\n\nimport functools\nfrom pathlib import Path\nimport pickle\nimport warnings\nfrom io import BytesIO\n\nimport torch\nimport torch.utils._device\nfrom lightning.fabric.strategies import DeepSpeedStrategy, FSDPStrategy\nfrom torch.distributed.fsdp import FullStateDictConfig\nfrom torch.distributed.fsdp import FullyShardedDataParallel as FSDP\nfrom torch.distributed.fsdp import StateDictType\n\n\ndef save_model_checkpoint(fabric, model, file_path):\n    \"\"\"Handles boilerplate logic for retrieving and saving the state_dict.\n    \n    This will be upstreamed to Fabric soon.\n    \"\"\"\n    file_path = Path(file_path)\n\n    if isinstance(fabric.strategy, DeepSpeedStrategy):\n        from deepspeed.utils.zero_to_fp32 import convert_zero_checkpoint_to_fp32_state_dict\n\n        fabric.save(file_path, {\"model\": model})\n        fabric.barrier()\n        if fabric.global_rank == 0:\n            # Create a consolidated checkpoint with the same name next to the deepspeed checkpoint\n            convert_zero_checkpoint_to_fp32_state_dict(file_path, file_path.with_suffix(\".pth\"))\n        return\n\n    if isinstance(fabric.strategy, FSDPStrategy):\n        save_policy = FullStateDictConfig(offload_to_cpu=(fabric.world_size > 1), rank0_only=True)\n        with FSDP.state_dict_type(model, StateDictType.FULL_STATE_DICT, save_policy):\n            state_dict = model._forward_module.state_dict()\n    else:\n        state_dict = model.state_dict()\n\n    if fabric.global_rank == 0:\n        torch.save(state_dict, file_path)\n    fabric.barrier()\n\n\nclass EmptyInitOnDevice(torch.overrides.TorchFunctionMode):\n    def __init__(self, device=None, dtype=None, quantization_mode=None):\n        \"\"\"\n        Create tensors with given device and dtype and don't run initialization\n           (but instead use \"empty tensors\", i.e. uninitialized memory).\n\n            device: `torch.device` to work with\n            dtype: `torch.dtype` to work with\n            quantization_mode: optional string, quantization mode to work with, default `None`.\n                 Available modes: `llm.int8` bitsnbytes LLM.int8 quantization (only on GPU)\n                                  `qptq.int4`, `gptq.int8`: GPTQ pre-quantized models\n\n        Example::\n            with EmptyInitOnDevice(\"cuda\", dtype=torch.bfloat16):\n               model = LLaMA.from_name('7B')\n            model.load_state_dict(torch.load('llama-lit/7B/lit-llama.pth'))\"\"\"\n\n        self.quantization_mode = quantization_mode\n        self.quantized_linear_cls = None\n        if self.quantization_mode == 'llm.int8':\n            if device.type != \"cuda\":\n                raise ValueError(\"Quantization is only supported on the GPU.\")\n            from .quantization import Linear8bitLt\n            self.quantized_linear_cls = Linear8bitLt\n        elif self.quantization_mode == 'gptq.int4':\n            from .quantization import ColBlockQuantizedLinear\n            self.quantized_linear_cls = functools.partial(ColBlockQuantizedLinear, bits=4, tile_cols=-1)\n        elif self.quantization_mode == 'gptq.int8':\n            from .quantization import ColBlockQuantizedLinear\n            self.quantized_linear_cls = functools.partial(ColBlockQuantizedLinear, bits=8, tile_cols=-1)\n        elif self.quantization_mode is not None:\n            raise RuntimeError(f\"unknown quantization mode {self.quantization_mode}\")\n        self.device = device\n        self.dtype = dtype\n\n    def __enter__(self):\n        if self.quantized_linear_cls != None:\n            self.torch_linear_cls = torch.nn.Linear\n            torch.nn.Linear = self.quantized_linear_cls\n        return super().__enter__()\n\n    def __exit__(self, exc_type, exc_val, exc_tb):\n        if self.quantized_linear_cls != None:\n            torch.nn.Linear = self.torch_linear_cls\n        return super().__exit__(exc_type, exc_val, exc_tb)\n\n    def __torch_function__(self, func, types, args=(), kwargs=None):\n        kwargs = kwargs or {}\n        if getattr(func, \"__module__\", None) == \"torch.nn.init\":\n            if \"tensor\" in kwargs:\n                return kwargs[\"tensor\"]\n            else:\n                return args[0]\n        if (\n            self.device is not None\n            and func in torch.utils._device._device_constructors()\n            and kwargs.get(\"device\") is None\n        ):\n            kwargs[\"device\"] = self.device\n        if (\n            self.dtype is not None\n            and func in torch.utils._device._device_constructors()\n            and kwargs.get(\"dtype\") is None\n        ):\n            kwargs[\"dtype\"] = self.dtype\n        return func(*args, **kwargs)\n\n\n# this is taken from torchhacks https://github.com/lernapparat/torchhacks\n\n\nclass NotYetLoadedTensor:\n    def __init__(self, metatensor, archiveinfo, storageinfo, rebuild_args):\n        self.metatensor = metatensor\n        self.archiveinfo = archiveinfo\n        self.storageinfo = storageinfo\n        self.rebuild_args = rebuild_args\n\n    @classmethod\n    def rebuild(\n        cls,\n        storage,\n        storage_offset,\n        size,\n        stride,\n        requires_grad,\n        backward_hooks,\n        metadata=None,\n        archiveinfo=None,\n    ):\n        rebuild_args = (\n            storage_offset,\n            size,\n            stride,\n            requires_grad,\n            backward_hooks,\n            metadata,\n        )\n        metatensor = torch._utils._rebuild_tensor_v2(\n            storage,\n            storage_offset,\n            size,\n            stride,\n            requires_grad,\n            backward_hooks,\n            metadata,\n        )\n        storageinfo = storage.archiveinfo\n        return NotYetLoadedTensor(metatensor, archiveinfo, storageinfo, rebuild_args)\n\n    def _load_tensor(self):\n        name, storage_cls, fn, device, size = self.storageinfo\n        dtype = self.metatensor.dtype\n\n        uts = (\n            self.archiveinfo.zipfile.get_storage_from_record(\n                f\"data/{fn}\",\n                size * torch._utils._element_size(dtype),\n                torch.UntypedStorage,\n            )\n            ._typed_storage()\n            ._untyped_storage\n        )\n        with warnings.catch_warnings():\n            warnings.simplefilter(\"ignore\")\n            storage = torch.storage.TypedStorage(\n                wrap_storage=uts, dtype=self.metatensor.dtype, _internal=True\n            )\n        tensor = torch._utils._rebuild_tensor_v2(storage, *self.rebuild_args)\n        return tensor\n\n    @classmethod\n    def __torch_function__(cls, func, types, args=(), kwargs=None):\n        if kwargs is None:\n            kwargs = {}\n        loaded_args = [\n            (a._load_tensor() if isinstance(a, NotYetLoadedTensor) else a) for a in args\n        ]\n        res = func(*loaded_args, **kwargs)\n        # gc.collect would be costly here, maybe do it optionally\n        return res\n\n    def __getattr__(self, name):\n        # properties\n        ## TODO: device, is_...??\n        ## TODO: mH, mT, H, T, data, imag, real\n        ## name ???\n        if name in {\n            \"dtype\",\n            \"grad\",\n            \"grad_fn\",\n            \"layout\",\n            \"names\",\n            \"ndim\",\n            \"output_nr\",\n            \"requires_grad\",\n            \"retains_grad\",\n            \"shape\",\n            \"volatile\",\n        }:\n            return getattr(self.metatensor, name)\n        if name in {\"size\"}:\n            return getattr(self.metatensor, name)\n        # materializing with contiguous is needed for quantization\n        if name in {\"contiguous\"}:\n            return getattr(self._load_tensor(), name)\n\n        raise AttributeError(f\"{type(self)} does not have {name}\")\n\n    def __repr__(self):\n        return f\"NotYetLoadedTensor({repr(self.metatensor)})\"\n\n\nclass LazyLoadingUnpickler(pickle.Unpickler):\n    def __init__(self, file, zipfile):\n        super().__init__(file)\n        self.zipfile = zipfile\n\n    def find_class(self, module, name):\n        if module == \"torch._utils\" and name == \"_rebuild_tensor_v2\":\n            res = super().find_class(module, name)\n            return functools.partial(NotYetLoadedTensor.rebuild, archiveinfo=self)\n        return super().find_class(module, name)\n\n    def persistent_load(self, pid):\n        name, cls, fn, device, size = pid\n        with warnings.catch_warnings():\n            warnings.simplefilter(\"ignore\")\n            s = torch.storage.TypedStorage(dtype=cls().dtype, device=\"meta\")\n        s.archiveinfo = pid\n        return s\n\n\ndef lazy_load(fn):\n    zf = torch._C.PyTorchFileReader(str(fn))\n    with BytesIO(zf.get_record(\"data.pkl\")) as pkl:\n        mup = LazyLoadingUnpickler(pkl, zf)\n        sd = mup.load()\n    return sd\n"
  },
  {
    "path": "models/encdec.py",
    "content": "import torch.nn as nn\nfrom models.resnet import Resnet1D\n\nclass Encoder(nn.Module):\n    def __init__(self,\n                 input_emb_width = 3,\n                 output_emb_width = 512,\n                 down_t = 3,\n                 stride_t = 2,\n                 width = 512,\n                 depth = 3,\n                 dilation_growth_rate = 3,\n                 activation='relu',\n                 norm=None):\n        super().__init__()\n        \n        blocks = []\n        filter_t, pad_t = stride_t * 2, stride_t // 2\n        blocks.append(nn.Conv1d(input_emb_width, width, 3, 1, 1))\n        blocks.append(nn.ReLU())\n        \n        for i in range(down_t):\n            input_dim = width\n            block = nn.Sequential(\n                nn.Conv1d(input_dim, width, filter_t, stride_t, pad_t),\n                Resnet1D(width, depth, dilation_growth_rate, activation=activation, norm=norm),\n            )\n            blocks.append(block)\n        blocks.append(nn.Conv1d(width, output_emb_width, 3, 1, 1))\n        self.model = nn.Sequential(*blocks)\n\n    def forward(self, x):\n        return self.model(x)\n\nclass Decoder(nn.Module):\n    def __init__(self,\n                 input_emb_width = 3,\n                 output_emb_width = 512,\n                 down_t = 3,\n                 stride_t = 2,\n                 width = 512,\n                 depth = 3,\n                 dilation_growth_rate = 3, \n                 activation='relu',\n                 norm=None):\n        super().__init__()\n        blocks = []\n        \n        filter_t, pad_t = stride_t * 2, stride_t // 2\n        blocks.append(nn.Conv1d(output_emb_width, width, 3, 1, 1))\n        blocks.append(nn.ReLU())\n        for i in range(down_t):\n            out_dim = width\n            block = nn.Sequential(\n                Resnet1D(width, depth, dilation_growth_rate, reverse_dilation=True, activation=activation, norm=norm),\n                nn.Upsample(scale_factor=2, mode='nearest'),\n                nn.Conv1d(width, out_dim, 3, 1, 1)\n            )\n            blocks.append(block)\n        blocks.append(nn.Conv1d(width, width, 3, 1, 1))\n        blocks.append(nn.ReLU())\n        blocks.append(nn.Conv1d(width, input_emb_width, 3, 1, 1))\n        self.model = nn.Sequential(*blocks)\n\n    def forward(self, x):\n        return self.model(x)\n    \n"
  },
  {
    "path": "models/evaluator_wrapper.py",
    "content": "\nimport torch\nfrom os.path import join as pjoin\nimport numpy as np\nfrom models.modules import MovementConvEncoder, TextEncoderBiGRUCo, MotionEncoderBiGRUCo\nfrom utils.word_vectorizer import POS_enumerator\n\ndef build_models(opt):\n    movement_enc = MovementConvEncoder(opt.dim_pose-4, opt.dim_movement_enc_hidden, opt.dim_movement_latent)\n    text_enc = TextEncoderBiGRUCo(word_size=opt.dim_word,\n                                  pos_size=opt.dim_pos_ohot,\n                                  hidden_size=opt.dim_text_hidden,\n                                  output_size=opt.dim_coemb_hidden,\n                                  device=opt.device)\n\n    motion_enc = MotionEncoderBiGRUCo(input_size=opt.dim_movement_latent,\n                                      hidden_size=opt.dim_motion_hidden,\n                                      output_size=opt.dim_coemb_hidden,\n                                      device=opt.device)\n\n    checkpoint = torch.load(pjoin(opt.checkpoints_dir, opt.dataset_name, 'text_mot_match', 'model', 'finest.tar'),\n                            map_location=opt.device)\n    movement_enc.load_state_dict(checkpoint['movement_encoder'])\n    text_enc.load_state_dict(checkpoint['text_encoder'])\n    motion_enc.load_state_dict(checkpoint['motion_encoder'])\n    print('Loading Evaluation Model Wrapper (Epoch %d) Completed!!' % (checkpoint['epoch']))\n    return text_enc, motion_enc, movement_enc\n\n\nclass EvaluatorModelWrapper(object):\n\n    def __init__(self, opt):\n\n        if opt.dataset_name == 't2m':\n            opt.dim_pose = 263\n        elif opt.dataset_name == 'kit':\n            opt.dim_pose = 251\n        else:\n            raise KeyError('Dataset not Recognized!!!')\n\n        opt.dim_word = 300\n        opt.max_motion_length = 196\n        opt.dim_pos_ohot = len(POS_enumerator)\n        opt.dim_motion_hidden = 1024\n        opt.max_text_len = 20\n        opt.dim_text_hidden = 512\n        opt.dim_coemb_hidden = 512\n\n        # print(opt)\n\n        self.text_encoder, self.motion_encoder, self.movement_encoder = build_models(opt)\n        self.opt = opt\n        self.device = opt.device\n\n        self.text_encoder.to(opt.device)\n        self.motion_encoder.to(opt.device)\n        self.movement_encoder.to(opt.device)\n\n        self.text_encoder.eval()\n        self.motion_encoder.eval()\n        self.movement_encoder.eval()\n\n    # Please note that the results does not following the order of inputs\n    def get_co_embeddings(self, word_embs, pos_ohot, cap_lens, motions, m_lens):\n        with torch.no_grad():\n            word_embs = word_embs.detach().to(self.device).float()\n            pos_ohot = pos_ohot.detach().to(self.device).float()\n            motions = motions.detach().to(self.device).float()\n\n            '''Movement Encoding'''\n            movements = self.movement_encoder(motions[..., :-4]).detach()\n            m_lens = m_lens // self.opt.unit_length\n            motion_embedding = self.motion_encoder(movements, m_lens)\n\n            '''Text Encoding'''\n            text_embedding = self.text_encoder(word_embs, pos_ohot, cap_lens)\n        return text_embedding, motion_embedding\n\n    # Please note that the results does not following the order of inputs\n    def get_motion_embeddings(self, motions, m_lens):\n        with torch.no_grad():\n            motions = motions.detach().to(self.device).float()\n\n            align_idx = np.argsort(m_lens.data.tolist())[::-1].copy()\n            motions = motions[align_idx]\n            m_lens = m_lens[align_idx]\n\n            '''Movement Encoding'''\n            movements = self.movement_encoder(motions[..., :-4]).detach()\n            m_lens = m_lens // self.opt.unit_length\n            motion_embedding = self.motion_encoder(movements, m_lens)\n        return motion_embedding\n"
  },
  {
    "path": "models/modules.py",
    "content": "import torch\nimport torch.nn as nn\nfrom torch.nn.utils.rnn import pack_padded_sequence\n\ndef init_weight(m):\n    if isinstance(m, nn.Conv1d) or isinstance(m, nn.Linear) or isinstance(m, nn.ConvTranspose1d):\n        nn.init.xavier_normal_(m.weight)\n        # m.bias.data.fill_(0.01)\n        if m.bias is not None:\n            nn.init.constant_(m.bias, 0)\n\n            \nclass MovementConvEncoder(nn.Module):\n    def __init__(self, input_size, hidden_size, output_size):\n        super(MovementConvEncoder, self).__init__()\n        self.main = nn.Sequential(\n            nn.Conv1d(input_size, hidden_size, 4, 2, 1),\n            nn.Dropout(0.2, inplace=True),\n            nn.LeakyReLU(0.2, inplace=True),\n            nn.Conv1d(hidden_size, output_size, 4, 2, 1),\n            nn.Dropout(0.2, inplace=True),\n            nn.LeakyReLU(0.2, inplace=True),\n        )\n        self.out_net = nn.Linear(output_size, output_size)\n        self.main.apply(init_weight)\n        self.out_net.apply(init_weight)\n\n    def forward(self, inputs):\n        inputs = inputs.permute(0, 2, 1)\n        outputs = self.main(inputs).permute(0, 2, 1)\n        # print(outputs.shape)\n        return self.out_net(outputs)\n\n\n\nclass TextEncoderBiGRUCo(nn.Module):\n    def __init__(self, word_size, pos_size, hidden_size, output_size, device):\n        super(TextEncoderBiGRUCo, self).__init__()\n        self.device = device\n\n        self.pos_emb = nn.Linear(pos_size, word_size)\n        self.input_emb = nn.Linear(word_size, hidden_size)\n        self.gru = nn.GRU(hidden_size, hidden_size, batch_first=True, bidirectional=True)\n        self.output_net = nn.Sequential(\n            nn.Linear(hidden_size * 2, hidden_size),\n            nn.LayerNorm(hidden_size),\n            nn.LeakyReLU(0.2, inplace=True),\n            nn.Linear(hidden_size, output_size)\n        )\n\n        self.input_emb.apply(init_weight)\n        self.pos_emb.apply(init_weight)\n        self.output_net.apply(init_weight)\n        self.hidden_size = hidden_size\n        self.hidden = nn.Parameter(torch.randn((2, 1, self.hidden_size), requires_grad=True))\n\n    # input(batch_size, seq_len, dim)\n    def forward(self, word_embs, pos_onehot, cap_lens):\n        num_samples = word_embs.shape[0]\n\n        pos_embs = self.pos_emb(pos_onehot)\n        inputs = word_embs + pos_embs\n        input_embs = self.input_emb(inputs)\n        hidden = self.hidden.repeat(1, num_samples, 1)\n\n        cap_lens = cap_lens.data.tolist()\n        emb = pack_padded_sequence(input_embs, cap_lens, batch_first=True)\n\n        gru_seq, gru_last = self.gru(emb, hidden)\n\n        gru_last = torch.cat([gru_last[0], gru_last[1]], dim=-1)\n\n        return self.output_net(gru_last)\n\n\nclass MotionEncoderBiGRUCo(nn.Module):\n    def __init__(self, input_size, hidden_size, output_size, device):\n        super(MotionEncoderBiGRUCo, self).__init__()\n        self.device = device\n\n        self.input_emb = nn.Linear(input_size, hidden_size)\n        self.gru = nn.GRU(hidden_size, hidden_size, batch_first=True, bidirectional=True)\n        self.output_net = nn.Sequential(\n            nn.Linear(hidden_size*2, hidden_size),\n            nn.LayerNorm(hidden_size),\n            nn.LeakyReLU(0.2, inplace=True),\n            nn.Linear(hidden_size, output_size)\n        )\n\n        self.input_emb.apply(init_weight)\n        self.output_net.apply(init_weight)\n        self.hidden_size = hidden_size\n        self.hidden = nn.Parameter(torch.randn((2, 1, self.hidden_size), requires_grad=True))\n\n    # input(batch_size, seq_len, dim)\n    def forward(self, inputs, m_lens):\n        num_samples = inputs.shape[0]\n\n        input_embs = self.input_emb(inputs)\n        hidden = self.hidden.repeat(1, num_samples, 1)\n\n        cap_lens = m_lens.data.tolist()\n        emb = pack_padded_sequence(input_embs, cap_lens, batch_first=True, enforce_sorted=False)\n\n        gru_seq, gru_last = self.gru(emb, hidden)\n\n        gru_last = torch.cat([gru_last[0], gru_last[1]], dim=-1)\n\n        return self.output_net(gru_last)\n"
  },
  {
    "path": "models/quantize_cnn.py",
    "content": "import numpy as np\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\n\nclass QuantizeEMAReset(nn.Module):\n    def __init__(self, nb_code, code_dim, args):\n        super().__init__()\n        self.nb_code = nb_code\n        self.code_dim = code_dim\n        self.mu = args.mu\n        self.reset_codebook()\n        \n    def reset_codebook(self):\n        self.init = False\n        self.code_sum = None\n        self.code_count = None\n        self.register_buffer('codebook', torch.zeros(self.nb_code, self.code_dim).cuda())\n\n    def _tile(self, x):\n        nb_code_x, code_dim = x.shape\n        if nb_code_x < self.nb_code:\n            n_repeats = (self.nb_code + nb_code_x - 1) // nb_code_x\n            std = 0.01 / np.sqrt(code_dim)\n            out = x.repeat(n_repeats, 1)\n            out = out + torch.randn_like(out) * std\n        else :\n            out = x\n        return out\n\n    def init_codebook(self, x):\n        out = self._tile(x)\n        self.codebook = out[:self.nb_code]\n        self.code_sum = self.codebook.clone()\n        self.code_count = torch.ones(self.nb_code, device=self.codebook.device)\n        self.init = True\n        \n    @torch.no_grad()\n    def compute_perplexity(self, code_idx) : \n        # Calculate new centres\n        code_onehot = torch.zeros(self.nb_code, code_idx.shape[0], device=code_idx.device)  # nb_code, N * L\n        code_onehot.scatter_(0, code_idx.view(1, code_idx.shape[0]), 1)\n\n        code_count = code_onehot.sum(dim=-1)  # nb_code\n        prob = code_count / torch.sum(code_count)  \n        perplexity = torch.exp(-torch.sum(prob * torch.log(prob + 1e-7)))\n        return perplexity\n    \n    @torch.no_grad()\n    def update_codebook(self, x, code_idx):\n        \n        code_onehot = torch.zeros(self.nb_code, x.shape[0], device=x.device)  # nb_code, N * L\n        code_onehot.scatter_(0, code_idx.view(1, x.shape[0]), 1)\n\n        code_sum = torch.matmul(code_onehot, x)  # nb_code, w\n        code_count = code_onehot.sum(dim=-1)  # nb_code\n\n        out = self._tile(x)\n        code_rand = out[:self.nb_code]\n\n        # Update centres\n        self.code_sum = self.mu * self.code_sum + (1. - self.mu) * code_sum  # w, nb_code\n        self.code_count = self.mu * self.code_count + (1. - self.mu) * code_count  # nb_code\n\n        usage = (self.code_count.view(self.nb_code, 1) >= 1.0).float()\n        code_update = self.code_sum.view(self.nb_code, self.code_dim) / self.code_count.view(self.nb_code, 1)\n\n        self.codebook = usage * code_update + (1 - usage) * code_rand\n        prob = code_count / torch.sum(code_count)  \n        perplexity = torch.exp(-torch.sum(prob * torch.log(prob + 1e-7)))\n\n            \n        return perplexity\n\n    def preprocess(self, x):\n        # NCT -> NTC -> [NT, C]\n        x = x.permute(0, 2, 1).contiguous()\n        x = x.view(-1, x.shape[-1])  \n        return x\n\n    def quantize(self, x):\n        # Calculate latent code x_l\n        k_w = self.codebook.t()\n        distance = torch.sum(x ** 2, dim=-1, keepdim=True) - 2 * torch.matmul(x, k_w) + torch.sum(k_w ** 2, dim=0,\n                                                                                            keepdim=True)  # (N * L, b)\n        _, code_idx = torch.min(distance, dim=-1)\n        return code_idx\n\n    def dequantize(self, code_idx):\n        x = F.embedding(code_idx, self.codebook)\n        return x\n\n    \n    def forward(self, x):\n        N, width, T = x.shape\n\n        # Preprocess\n        x = self.preprocess(x)\n\n        # Init codebook if not inited\n        if self.training and not self.init:\n            self.init_codebook(x)\n\n        # quantize and dequantize through bottleneck\n        code_idx = self.quantize(x)\n        x_d = self.dequantize(code_idx)\n\n        # Update embeddings\n        if self.training:\n            perplexity = self.update_codebook(x, code_idx)\n        else : \n            perplexity = self.compute_perplexity(code_idx)\n        \n        # Loss\n        commit_loss = F.mse_loss(x, x_d.detach())\n\n        # Passthrough\n        x_d = x + (x_d - x).detach()\n\n        # Postprocess\n        x_d = x_d.view(N, T, -1).permute(0, 2, 1).contiguous()   #(N, DIM, T)\n        \n        return x_d, commit_loss, perplexity\n\n\n\nclass Quantizer(nn.Module):\n    def __init__(self, n_e, e_dim, beta):\n        super(Quantizer, self).__init__()\n\n        self.e_dim = e_dim\n        self.n_e = n_e\n        self.beta = beta\n\n        self.embedding = nn.Embedding(self.n_e, self.e_dim)\n        self.embedding.weight.data.uniform_(-1.0 / self.n_e, 1.0 / self.n_e)\n\n    def forward(self, z):\n        \n        N, width, T = z.shape\n        z = self.preprocess(z)\n        assert z.shape[-1] == self.e_dim\n        z_flattened = z.contiguous().view(-1, self.e_dim)\n\n        # B x V\n        d = torch.sum(z_flattened ** 2, dim=1, keepdim=True) + \\\n            torch.sum(self.embedding.weight**2, dim=1) - 2 * \\\n            torch.matmul(z_flattened, self.embedding.weight.t())\n        # B x 1\n        min_encoding_indices = torch.argmin(d, dim=1)\n        z_q = self.embedding(min_encoding_indices).view(z.shape)\n\n        # compute loss for embedding\n        loss = torch.mean((z_q - z.detach())**2) + self.beta * \\\n               torch.mean((z_q.detach() - z)**2)\n\n        # preserve gradients\n        z_q = z + (z_q - z).detach()\n        z_q = z_q.view(N, T, -1).permute(0, 2, 1).contiguous()   #(N, DIM, T)\n\n        min_encodings = F.one_hot(min_encoding_indices, self.n_e).type(z.dtype)\n        e_mean = torch.mean(min_encodings, dim=0)\n        perplexity = torch.exp(-torch.sum(e_mean*torch.log(e_mean + 1e-10)))\n        return z_q, loss, perplexity\n\n    def quantize(self, z):\n\n        assert z.shape[-1] == self.e_dim\n\n        # B x V\n        d = torch.sum(z ** 2, dim=1, keepdim=True) + \\\n            torch.sum(self.embedding.weight ** 2, dim=1) - 2 * \\\n            torch.matmul(z, self.embedding.weight.t())\n        # B x 1\n        min_encoding_indices = torch.argmin(d, dim=1)\n        return min_encoding_indices\n\n    def dequantize(self, indices):\n\n        index_flattened = indices.view(-1)\n        z_q = self.embedding(index_flattened)\n        z_q = z_q.view(indices.shape + (self.e_dim, )).contiguous()\n        return z_q\n\n    def preprocess(self, x):\n        # NCT -> NTC -> [NT, C]\n        x = x.permute(0, 2, 1).contiguous()\n        x = x.view(-1, x.shape[-1])  \n        return x\n\n\n\nclass QuantizeReset(nn.Module):\n    def __init__(self, nb_code, code_dim, args):\n        super().__init__()\n        self.nb_code = nb_code\n        self.code_dim = code_dim\n        self.reset_codebook()\n        self.codebook = nn.Parameter(torch.randn(nb_code, code_dim))\n        \n    def reset_codebook(self):\n        self.init = False\n        self.code_count = None\n\n    def _tile(self, x):\n        nb_code_x, code_dim = x.shape\n        if nb_code_x < self.nb_code:\n            n_repeats = (self.nb_code + nb_code_x - 1) // nb_code_x\n            std = 0.01 / np.sqrt(code_dim)\n            out = x.repeat(n_repeats, 1)\n            out = out + torch.randn_like(out) * std\n        else :\n            out = x\n        return out\n\n    def init_codebook(self, x):\n        out = self._tile(x)\n        self.codebook = nn.Parameter(out[:self.nb_code])\n        self.code_count = torch.ones(self.nb_code, device=self.codebook.device)\n        self.init = True\n        \n    @torch.no_grad()\n    def compute_perplexity(self, code_idx) : \n        # Calculate new centres\n        code_onehot = torch.zeros(self.nb_code, code_idx.shape[0], device=code_idx.device)  # nb_code, N * L\n        code_onehot.scatter_(0, code_idx.view(1, code_idx.shape[0]), 1)\n\n        code_count = code_onehot.sum(dim=-1)  # nb_code\n        prob = code_count / torch.sum(code_count)  \n        perplexity = torch.exp(-torch.sum(prob * torch.log(prob + 1e-7)))\n        return perplexity\n    \n    def update_codebook(self, x, code_idx):\n        \n        code_onehot = torch.zeros(self.nb_code, x.shape[0], device=x.device)  # nb_code, N * L\n        code_onehot.scatter_(0, code_idx.view(1, x.shape[0]), 1)\n\n        code_count = code_onehot.sum(dim=-1)  # nb_code\n\n        out = self._tile(x)\n        code_rand = out[:self.nb_code]\n\n        # Update centres\n        self.code_count = code_count  # nb_code\n        usage = (self.code_count.view(self.nb_code, 1) >= 1.0).float()\n\n        self.codebook.data = usage * self.codebook.data + (1 - usage) * code_rand\n        prob = code_count / torch.sum(code_count)  \n        perplexity = torch.exp(-torch.sum(prob * torch.log(prob + 1e-7)))\n\n            \n        return perplexity\n\n    def preprocess(self, x):\n        # NCT -> NTC -> [NT, C]\n        x = x.permute(0, 2, 1).contiguous()\n        x = x.view(-1, x.shape[-1])  \n        return x\n\n    def quantize(self, x):\n        # Calculate latent code x_l\n        k_w = self.codebook.t()\n        distance = torch.sum(x ** 2, dim=-1, keepdim=True) - 2 * torch.matmul(x, k_w) + torch.sum(k_w ** 2, dim=0,\n                                                                                            keepdim=True)  # (N * L, b)\n        _, code_idx = torch.min(distance, dim=-1)\n        return code_idx\n\n    def dequantize(self, code_idx):\n        x = F.embedding(code_idx, self.codebook)\n        return x\n\n    \n    def forward(self, x):\n        N, width, T = x.shape\n        # Preprocess\n        x = self.preprocess(x)\n        # Init codebook if not inited\n        if self.training and not self.init:\n            self.init_codebook(x)\n        # quantize and dequantize through bottleneck\n        code_idx = self.quantize(x)\n        x_d = self.dequantize(code_idx)\n        # Update embeddings\n        if self.training:\n            perplexity = self.update_codebook(x, code_idx)\n        else : \n            perplexity = self.compute_perplexity(code_idx)\n        \n        # Loss\n        commit_loss = F.mse_loss(x, x_d.detach())\n\n        # Passthrough\n        x_d = x + (x_d - x).detach()\n\n        # Postprocess\n        x_d = x_d.view(N, T, -1).permute(0, 2, 1).contiguous()   #(N, DIM, T)\n        \n        return x_d, commit_loss, perplexity\n\n    \nclass QuantizeEMA(nn.Module):\n    def __init__(self, nb_code, code_dim, args):\n        super().__init__()\n        self.nb_code = nb_code\n        self.code_dim = code_dim\n        self.mu = 0.99\n        self.reset_codebook()\n        \n    def reset_codebook(self):\n        self.init = False\n        self.code_sum = None\n        self.code_count = None\n        self.register_buffer('codebook', torch.zeros(self.nb_code, self.code_dim).cuda())\n\n    def _tile(self, x):\n        nb_code_x, code_dim = x.shape\n        if nb_code_x < self.nb_code:\n            n_repeats = (self.nb_code + nb_code_x - 1) // nb_code_x\n            std = 0.01 / np.sqrt(code_dim)\n            out = x.repeat(n_repeats, 1)\n            out = out + torch.randn_like(out) * std\n        else :\n            out = x\n        return out\n\n    def init_codebook(self, x):\n        out = self._tile(x)\n        self.codebook = out[:self.nb_code]\n        self.code_sum = self.codebook.clone()\n        self.code_count = torch.ones(self.nb_code, device=self.codebook.device)\n        self.init = True\n        \n    @torch.no_grad()\n    def compute_perplexity(self, code_idx) : \n        # Calculate new centres\n        code_onehot = torch.zeros(self.nb_code, code_idx.shape[0], device=code_idx.device)  # nb_code, N * L\n        code_onehot.scatter_(0, code_idx.view(1, code_idx.shape[0]), 1)\n\n        code_count = code_onehot.sum(dim=-1)  # nb_code\n        prob = code_count / torch.sum(code_count)  \n        perplexity = torch.exp(-torch.sum(prob * torch.log(prob + 1e-7)))\n        return perplexity\n    \n    @torch.no_grad()\n    def update_codebook(self, x, code_idx):\n        \n        code_onehot = torch.zeros(self.nb_code, x.shape[0], device=x.device)  # nb_code, N * L\n        code_onehot.scatter_(0, code_idx.view(1, x.shape[0]), 1)\n\n        code_sum = torch.matmul(code_onehot, x)  # nb_code, w\n        code_count = code_onehot.sum(dim=-1)  # nb_code\n\n        # Update centres\n        self.code_sum = self.mu * self.code_sum + (1. - self.mu) * code_sum  # w, nb_code\n        self.code_count = self.mu * self.code_count + (1. - self.mu) * code_count  # nb_code\n\n        code_update = self.code_sum.view(self.nb_code, self.code_dim) / self.code_count.view(self.nb_code, 1)\n\n        self.codebook = code_update\n        prob = code_count / torch.sum(code_count)  \n        perplexity = torch.exp(-torch.sum(prob * torch.log(prob + 1e-7)))\n            \n        return perplexity\n\n    def preprocess(self, x):\n        # NCT -> NTC -> [NT, C]\n        x = x.permute(0, 2, 1).contiguous()\n        x = x.view(-1, x.shape[-1])  \n        return x\n\n    def quantize(self, x):\n        # Calculate latent code x_l\n        k_w = self.codebook.t()\n        distance = torch.sum(x ** 2, dim=-1, keepdim=True) - 2 * torch.matmul(x, k_w) + torch.sum(k_w ** 2, dim=0,\n                                                                                            keepdim=True)  # (N * L, b)\n        _, code_idx = torch.min(distance, dim=-1)\n        return code_idx\n\n    def dequantize(self, code_idx):\n        x = F.embedding(code_idx, self.codebook)\n        return x\n\n    \n    def forward(self, x):\n        N, width, T = x.shape\n\n        # Preprocess\n        x = self.preprocess(x)\n\n        # Init codebook if not inited\n        if self.training and not self.init:\n            self.init_codebook(x)\n\n        # quantize and dequantize through bottleneck\n        code_idx = self.quantize(x)\n        x_d = self.dequantize(code_idx)\n\n        # Update embeddings\n        if self.training:\n            perplexity = self.update_codebook(x, code_idx)\n        else : \n            perplexity = self.compute_perplexity(code_idx)\n        \n        # Loss\n        commit_loss = F.mse_loss(x, x_d.detach())\n\n        # Passthrough\n        x_d = x + (x_d - x).detach()\n\n        # Postprocess\n        x_d = x_d.view(N, T, -1).permute(0, 2, 1).contiguous()   #(N, DIM, T)\n        \n        return x_d, commit_loss, perplexity\n"
  },
  {
    "path": "models/resnet.py",
    "content": "import torch.nn as nn\nimport torch\n\nclass nonlinearity(nn.Module):\n    def __init__(self):\n        super().__init__()\n\n    def forward(self, x):\n        # swish\n        return x * torch.sigmoid(x)\n\nclass ResConv1DBlock(nn.Module):\n    def __init__(self, n_in, n_state, dilation=1, activation='silu', norm=None, dropout=None):\n        super().__init__()\n        padding = dilation\n        self.norm = norm\n        if norm == \"LN\":\n            self.norm1 = nn.LayerNorm(n_in)\n            self.norm2 = nn.LayerNorm(n_in)\n        elif norm == \"GN\":\n            self.norm1 = nn.GroupNorm(num_groups=32, num_channels=n_in, eps=1e-6, affine=True)\n            self.norm2 = nn.GroupNorm(num_groups=32, num_channels=n_in, eps=1e-6, affine=True)\n        elif norm == \"BN\":\n            self.norm1 = nn.BatchNorm1d(num_features=n_in, eps=1e-6, affine=True)\n            self.norm2 = nn.BatchNorm1d(num_features=n_in, eps=1e-6, affine=True)\n        \n        else:\n            self.norm1 = nn.Identity()\n            self.norm2 = nn.Identity()\n\n        if activation == \"relu\":\n            self.activation1 = nn.ReLU()\n            self.activation2 = nn.ReLU()\n            \n        elif activation == \"silu\":\n            self.activation1 = nonlinearity()\n            self.activation2 = nonlinearity()\n            \n        elif activation == \"gelu\":\n            self.activation1 = nn.GELU()\n            self.activation2 = nn.GELU()\n            \n        \n\n        self.conv1 = nn.Conv1d(n_in, n_state, 3, 1, padding, dilation)\n        self.conv2 = nn.Conv1d(n_state, n_in, 1, 1, 0,)     \n\n\n    def forward(self, x):\n        x_orig = x\n        if self.norm == \"LN\":\n            x = self.norm1(x.transpose(-2, -1))\n            x = self.activation1(x.transpose(-2, -1))\n        else:\n            x = self.norm1(x)\n            x = self.activation1(x)\n            \n        x = self.conv1(x)\n\n        if self.norm == \"LN\":\n            x = self.norm2(x.transpose(-2, -1))\n            x = self.activation2(x.transpose(-2, -1))\n        else:\n            x = self.norm2(x)\n            x = self.activation2(x)\n\n        x = self.conv2(x)\n        x = x + x_orig\n        return x\n\nclass Resnet1D(nn.Module):\n    def __init__(self, n_in, n_depth, dilation_growth_rate=1, reverse_dilation=True, activation='relu', norm=None):\n        super().__init__()\n        \n        blocks = [ResConv1DBlock(n_in, n_in, dilation=dilation_growth_rate ** depth, activation=activation, norm=norm) for depth in range(n_depth)]\n        if reverse_dilation:\n            blocks = blocks[::-1]\n        \n        self.model = nn.Sequential(*blocks)\n\n    def forward(self, x):        \n        return self.model(x)"
  },
  {
    "path": "models/rotation2xyz.py",
    "content": "# This code is based on https://github.com/Mathux/ACTOR.git\nimport torch\nimport utils.rotation_conversions as geometry\n\n\nfrom models.smpl import SMPL, JOINTSTYPE_ROOT\n# from .get_model import JOINTSTYPES\nJOINTSTYPES = [\"a2m\", \"a2mpl\", \"smpl\", \"vibe\", \"vertices\"]\n\n\nclass Rotation2xyz:\n    def __init__(self, device, dataset='amass'):\n        self.device = device\n        self.dataset = dataset\n        self.smpl_model = SMPL().eval().to(device)\n\n    def __call__(self, x, mask, pose_rep, translation, glob,\n                 jointstype, vertstrans, betas=None, beta=0,\n                 glob_rot=None, get_rotations_back=False, **kwargs):\n        if pose_rep == \"xyz\":\n            return x\n\n        if mask is None:\n            mask = torch.ones((x.shape[0], x.shape[-1]), dtype=bool, device=x.device)\n\n        if not glob and glob_rot is None:\n            raise TypeError(\"You must specify global rotation if glob is False\")\n\n        if jointstype not in JOINTSTYPES:\n            raise NotImplementedError(\"This jointstype is not implemented.\")\n\n        if translation:\n            x_translations = x[:, -1, :3]\n            x_rotations = x[:, :-1]\n        else:\n            x_rotations = x\n\n        x_rotations = x_rotations.permute(0, 3, 1, 2)\n        nsamples, time, njoints, feats = x_rotations.shape\n\n        # Compute rotations (convert only masked sequences output)\n        if pose_rep == \"rotvec\":\n            rotations = geometry.axis_angle_to_matrix(x_rotations[mask])\n        elif pose_rep == \"rotmat\":\n            rotations = x_rotations[mask].view(-1, njoints, 3, 3)\n        elif pose_rep == \"rotquat\":\n            rotations = geometry.quaternion_to_matrix(x_rotations[mask])\n        elif pose_rep == \"rot6d\":\n            rotations = geometry.rotation_6d_to_matrix(x_rotations[mask])\n        else:\n            raise NotImplementedError(\"No geometry for this one.\")\n\n        if not glob:\n            global_orient = torch.tensor(glob_rot, device=x.device)\n            global_orient = geometry.axis_angle_to_matrix(global_orient).view(1, 1, 3, 3)\n            global_orient = global_orient.repeat(len(rotations), 1, 1, 1)\n        else:\n            global_orient = rotations[:, 0]\n            rotations = rotations[:, 1:]\n\n        if betas is None:\n            betas = torch.zeros([rotations.shape[0], self.smpl_model.num_betas],\n                                dtype=rotations.dtype, device=rotations.device)\n            betas[:, 1] = beta\n            # import ipdb; ipdb.set_trace()\n        out = self.smpl_model(body_pose=rotations, global_orient=global_orient, betas=betas)\n\n        # get the desirable joints\n        joints = out[jointstype]\n\n        x_xyz = torch.empty(nsamples, time, joints.shape[1], 3, device=x.device, dtype=x.dtype)\n        x_xyz[~mask] = 0\n        x_xyz[mask] = joints\n\n        x_xyz = x_xyz.permute(0, 2, 3, 1).contiguous()\n\n        # the first translation root at the origin on the prediction\n        if jointstype != \"vertices\":\n            rootindex = JOINTSTYPE_ROOT[jointstype]\n            x_xyz = x_xyz - x_xyz[:, [rootindex], :, :]\n\n        if translation and vertstrans:\n            # the first translation root at the origin\n            x_translations = x_translations - x_translations[:, :, [0]]\n\n            # add the translation to all the joints\n            x_xyz = x_xyz + x_translations[:, None, :, :]\n\n        if get_rotations_back:\n            return x_xyz, rotations, global_orient\n        else:\n            return x_xyz\n"
  },
  {
    "path": "models/smpl.py",
    "content": "# This code is based on https://github.com/Mathux/ACTOR.git\nimport numpy as np\nimport torch\n\nimport contextlib\n\nfrom smplx import SMPLLayer as _SMPLLayer\nfrom smplx.lbs import vertices2joints\n\n\n# action2motion_joints = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 21, 24, 38]\n# change 0 and 8\naction2motion_joints = [8, 1, 2, 3, 4, 5, 6, 7, 0, 9, 10, 11, 12, 13, 14, 21, 24, 38]\n\nfrom utils.config import SMPL_MODEL_PATH, JOINT_REGRESSOR_TRAIN_EXTRA\n\nJOINTSTYPE_ROOT = {\"a2m\": 0, # action2motion\n                   \"smpl\": 0,\n                   \"a2mpl\": 0, # set(smpl, a2m)\n                   \"vibe\": 8}  # 0 is the 8 position: OP MidHip below\n\nJOINT_MAP = {\n    'OP Nose': 24, 'OP Neck': 12, 'OP RShoulder': 17,\n    'OP RElbow': 19, 'OP RWrist': 21, 'OP LShoulder': 16,\n    'OP LElbow': 18, 'OP LWrist': 20, 'OP MidHip': 0,\n    'OP RHip': 2, 'OP RKnee': 5, 'OP RAnkle': 8,\n    'OP LHip': 1, 'OP LKnee': 4, 'OP LAnkle': 7,\n    'OP REye': 25, 'OP LEye': 26, 'OP REar': 27,\n    'OP LEar': 28, 'OP LBigToe': 29, 'OP LSmallToe': 30,\n    'OP LHeel': 31, 'OP RBigToe': 32, 'OP RSmallToe': 33, 'OP RHeel': 34,\n    'Right Ankle': 8, 'Right Knee': 5, 'Right Hip': 45,\n    'Left Hip': 46, 'Left Knee': 4, 'Left Ankle': 7,\n    'Right Wrist': 21, 'Right Elbow': 19, 'Right Shoulder': 17,\n    'Left Shoulder': 16, 'Left Elbow': 18, 'Left Wrist': 20,\n    'Neck (LSP)': 47, 'Top of Head (LSP)': 48,\n    'Pelvis (MPII)': 49, 'Thorax (MPII)': 50,\n    'Spine (H36M)': 51, 'Jaw (H36M)': 52,\n    'Head (H36M)': 53, 'Nose': 24, 'Left Eye': 26,\n    'Right Eye': 25, 'Left Ear': 28, 'Right Ear': 27\n}\n\nJOINT_NAMES = [\n    'OP Nose', 'OP Neck', 'OP RShoulder',\n    'OP RElbow', 'OP RWrist', 'OP LShoulder',\n    'OP LElbow', 'OP LWrist', 'OP MidHip',\n    'OP RHip', 'OP RKnee', 'OP RAnkle',\n    'OP LHip', 'OP LKnee', 'OP LAnkle',\n    'OP REye', 'OP LEye', 'OP REar',\n    'OP LEar', 'OP LBigToe', 'OP LSmallToe',\n    'OP LHeel', 'OP RBigToe', 'OP RSmallToe', 'OP RHeel',\n    'Right Ankle', 'Right Knee', 'Right Hip',\n    'Left Hip', 'Left Knee', 'Left Ankle',\n    'Right Wrist', 'Right Elbow', 'Right Shoulder',\n    'Left Shoulder', 'Left Elbow', 'Left Wrist',\n    'Neck (LSP)', 'Top of Head (LSP)',\n    'Pelvis (MPII)', 'Thorax (MPII)',\n    'Spine (H36M)', 'Jaw (H36M)',\n    'Head (H36M)', 'Nose', 'Left Eye',\n    'Right Eye', 'Left Ear', 'Right Ear'\n]\n\n\n# adapted from VIBE/SPIN to output smpl_joints, vibe joints and action2motion joints\nclass SMPL(_SMPLLayer):\n    \"\"\" Extension of the official SMPL implementation to support more joints \"\"\"\n\n    def __init__(self, model_path=SMPL_MODEL_PATH, **kwargs):\n        kwargs[\"model_path\"] = model_path\n\n        # remove the verbosity for the 10-shapes beta parameters\n        with contextlib.redirect_stdout(None):\n            super(SMPL, self).__init__(**kwargs)\n            \n        J_regressor_extra = np.load(JOINT_REGRESSOR_TRAIN_EXTRA)\n        self.register_buffer('J_regressor_extra', torch.tensor(J_regressor_extra, dtype=torch.float32))\n        vibe_indexes = np.array([JOINT_MAP[i] for i in JOINT_NAMES])\n        a2m_indexes = vibe_indexes[action2motion_joints]\n        smpl_indexes = np.arange(24)\n        a2mpl_indexes = np.unique(np.r_[smpl_indexes, a2m_indexes])\n\n        self.maps = {\"vibe\": vibe_indexes,\n                     \"a2m\": a2m_indexes,\n                     \"smpl\": smpl_indexes,\n                     \"a2mpl\": a2mpl_indexes}\n        \n    def forward(self, *args, **kwargs):\n        smpl_output = super(SMPL, self).forward(*args, **kwargs)\n        \n        extra_joints = vertices2joints(self.J_regressor_extra, smpl_output.vertices)\n        all_joints = torch.cat([smpl_output.joints, extra_joints], dim=1)\n\n        output = {\"vertices\": smpl_output.vertices}\n\n        for joinstype, indexes in self.maps.items():\n            output[joinstype] = all_joints[:, indexes]\n            \n        return output"
  },
  {
    "path": "models/vqvae.py",
    "content": "# This code is based on https://github.com/Mael-zys/T2M-GPT.git\nimport torch.nn as nn\nfrom models.encdec import Encoder, Decoder\nfrom models.quantize_cnn import QuantizeEMAReset, Quantizer, QuantizeEMA, QuantizeReset\n\n\nclass VQVAE_251(nn.Module):\n    def __init__(self,\n                 args,\n                 nb_code=1024,\n                 code_dim=512,\n                 output_emb_width=512,\n                 down_t=3,\n                 stride_t=2,\n                 width=512,\n                 depth=3,\n                 dilation_growth_rate=3,\n                 activation='relu',\n                 norm=None):\n        \n        super().__init__()\n        self.code_dim = code_dim\n        self.num_code = nb_code\n        self.quant = args.quantizer\n        self.encoder = Encoder(251 if args.dataname == 'kit' else 263, output_emb_width, down_t, stride_t, width, depth, dilation_growth_rate, activation=activation, norm=norm)\n        self.decoder = Decoder(251 if args.dataname == 'kit' else 263, output_emb_width, down_t, stride_t, width, depth, dilation_growth_rate, activation=activation, norm=norm)\n        if args.quantizer == \"ema_reset\":\n            self.quantizer = QuantizeEMAReset(nb_code, code_dim, args)\n        elif args.quantizer == \"orig\":\n            self.quantizer = Quantizer(nb_code, code_dim, 1.0)\n        elif args.quantizer == \"ema\":\n            self.quantizer = QuantizeEMA(nb_code, code_dim, args)\n        elif args.quantizer == \"reset\":\n            self.quantizer = QuantizeReset(nb_code, code_dim, args)\n\n\n    def preprocess(self, x):\n        # (bs, T, Jx3) -> (bs, Jx3, T)\n        x = x.permute(0,2,1).float()\n        return x\n\n\n    def postprocess(self, x):\n        # (bs, Jx3, T) ->  (bs, T, Jx3)\n        x = x.permute(0,2,1)\n        return x\n\n\n    def encode(self, x):\n        N, T, _ = x.shape\n        x_in = self.preprocess(x)\n        x_encoder = self.encoder(x_in)\n        x_encoder = self.postprocess(x_encoder)\n        x_encoder = x_encoder.contiguous().view(-1, x_encoder.shape[-1])  # (NT, C)\n        code_idx = self.quantizer.quantize(x_encoder)\n        code_idx = code_idx.view(N, -1)\n        return code_idx\n\n\n    def forward(self, x):\n        \n        x_in = self.preprocess(x)\n        # Encode\n        x_encoder = self.encoder(x_in)\n        \n        ## quantization\n        x_quantized, loss, perplexity  = self.quantizer(x_encoder)\n\n        ## decoder\n        x_decoder = self.decoder(x_quantized)\n        x_out = self.postprocess(x_decoder)\n        return x_out, loss, perplexity\n\n\n    def forward_decoder(self, x):\n        x_d = self.quantizer.dequantize(x)\n        x_d = x_d.view(1, -1, self.code_dim).permute(0, 2, 1).contiguous()\n        \n        # decoder\n        x_decoder = self.decoder(x_d)\n        x_out = self.postprocess(x_decoder)\n        return x_out\n\n\n\nclass HumanVQVAE(nn.Module):\n    def __init__(self,\n                 args,\n                 nb_code=512,\n                 code_dim=512,\n                 output_emb_width=512,\n                 down_t=3,\n                 stride_t=2,\n                 width=512,\n                 depth=3,\n                 dilation_growth_rate=3,\n                 activation='relu',\n                 norm=None):\n        \n        super().__init__()\n        \n        self.nb_joints = 21 if args.dataname == 'kit' else 22\n        self.vqvae = VQVAE_251(args, nb_code, code_dim, output_emb_width, down_t, stride_t, width, depth, dilation_growth_rate, activation=activation, norm=norm)\n\n    def encode(self, x):\n        b, t, c = x.size()\n        quants = self.vqvae.encode(x) # (N, T)\n        return quants\n\n    def forward(self, x):\n\n        x_out, loss, perplexity = self.vqvae(x)\n        \n        return x_out, loss, perplexity\n\n    def forward_decoder(self, x):\n        x_out = self.vqvae.forward_decoder(x)\n        return x_out\n        "
  },
  {
    "path": "options/get_eval_option.py",
    "content": "from argparse import Namespace\nimport re\nfrom os.path import join as pjoin\n\n\ndef is_float(numStr):\n    flag = False\n    numStr = str(numStr).strip().lstrip('-').lstrip('+')\n    try:\n        reg = re.compile(r'^[-+]?[0-9]+\\.[0-9]+$')\n        res = reg.match(str(numStr))\n        if res:\n            flag = True\n    except Exception as ex:\n        print(\"is_float() - error: \" + str(ex))\n    return flag\n\n\ndef is_number(numStr):\n    flag = False\n    numStr = str(numStr).strip().lstrip('-').lstrip('+')\n    if str(numStr).isdigit():\n        flag = True\n    return flag\n\n\ndef get_opt(opt_path, device):\n    opt = Namespace()\n    opt_dict = vars(opt)\n\n    skip = ('-------------- End ----------------',\n            '------------ Options -------------',\n            '\\n')\n    print('Reading', opt_path)\n    with open(opt_path) as f:\n        for line in f:\n            if line.strip() not in skip:\n                # print(line.strip())\n                key, value = line.strip().split(': ')\n                if value in ('True', 'False'):\n                    opt_dict[key] = (value == 'True')\n                #     print(key, value)\n                elif is_float(value):\n                    opt_dict[key] = float(value)\n                elif is_number(value):\n                    opt_dict[key] = int(value)\n                else:\n                    opt_dict[key] = str(value)\n\n    # print(opt)\n    opt_dict['which_epoch'] = 'finest'\n    opt.save_root = pjoin(opt.checkpoints_dir, opt.dataset_name, opt.name)\n    opt.model_dir = pjoin(opt.save_root, 'model')\n    opt.meta_dir = pjoin(opt.save_root, 'meta')\n\n    if opt.dataset_name == 't2m':\n        opt.data_root = './dataset/HumanML3D/'\n        opt.motion_dir = pjoin(opt.data_root, 'new_joint_vecs')\n        opt.text_dir = pjoin(opt.data_root, 'texts')\n        opt.joints_num = 22\n        opt.dim_pose = 263\n        opt.max_motion_length = 196\n        opt.max_motion_frame = 196\n        opt.max_motion_token = 55\n    elif opt.dataset_name == 'kit':\n        opt.data_root = './dataset/KIT-ML/'\n        opt.motion_dir = pjoin(opt.data_root, 'new_joint_vecs')\n        opt.text_dir = pjoin(opt.data_root, 'texts')\n        opt.joints_num = 21\n        opt.dim_pose = 251\n        opt.max_motion_length = 196\n        opt.max_motion_frame = 196\n        opt.max_motion_token = 55\n    else:\n        raise KeyError('Dataset not recognized')\n\n    opt.dim_word = 300\n    opt.num_classes = 200 // opt.unit_length\n    opt.is_train = False\n    opt.is_continue = False\n    opt.device = device\n\n    return opt"
  },
  {
    "path": "options/option.py",
    "content": "import argparse\n\ndef get_args_parser():\n    parser = argparse.ArgumentParser(description='Optimal Transport AutoEncoder training for Amass',\n                                     add_help=True,\n                                     formatter_class=argparse.ArgumentDefaultsHelpFormatter)\n\n    ## dataloader\n    parser.add_argument('--prompt', type=str, default=\"Generate a sequence of motion tokens matching the following human motion description.\", help='task description')\n    parser.add_argument('--input', type=str, help='generation condictions')\n    parser.add_argument('--dataname', type=str, default='t2m', help='dataset directory')\n    parser.add_argument('--pretrained_llama', type=str, default=\"13B\")\n    parser.add_argument('--out_dir', type=str, default='./out/', help='output directory')\n    parser.add_argument('--vqvae_pth', type=str, default='./checkpoints/pretrained_vqvae/t2m.pth', help='path to the pretrained vqvae pth')\n    parser.add_argument('--resume_pth', type=str, help='path to saved finetuned model')\n    parser.add_argument('--lora_path', type=str, help='path to fintuned model for evaluation')\n    parser.add_argument('--data_dir', type=str, default='./data/', help='dataset directory')\n\n    ## lora\n    parser.add_argument('--lora_r', type=int, default=64)\n    parser.add_argument('--lora_alpha', type=int, default=16)\n    parser.add_argument('--lora_dropout', type=float, default=0.05)\n\n    ## llama\n    parser.add_argument('--block_size', type=int, default=512)\n\n    ## train\n    parser.add_argument('--batch_size', type=int, default=256, help='batch size')\n    parser.add_argument('--micro_batch_size', type=int, default=4, help='micro batch size')\n    parser.add_argument('--learning_rate', type=float, default=3e-3, help='learning rate')\n    parser.add_argument('--weight_decay', type=float, default=0.01, help='weight decay')\n    parser.add_argument('--warmup_steps', type=int, default=100, help='warmup steps')\n    parser.add_argument('--eval_interval', type=int, default=100, help='evaluation frequency')\n    parser.add_argument('--save_interval', type=int, default=100, help='model save frequency')\n    parser.add_argument('--eval_iters', type=int, default=100, help='number of evaluation ierations')\n    parser.add_argument('--log_interval', type=int, default=1, help='log frequency')\n\n    ## vqvae\n    parser.add_argument(\"--code_dim\", type=int, default=512, help=\"embedding dimension\")\n    parser.add_argument(\"--nb_code\", type=int, default=512, help=\"nb of embedding\")\n    parser.add_argument(\"--mu\", type=float, default=0.99, help=\"exponential moving average to update the codebook\")\n    parser.add_argument(\"--down_t\", type=int, default=2, help=\"downsampling rate\")\n    parser.add_argument(\"--stride_t\", type=int, default=2, help=\"stride size\")\n    parser.add_argument(\"--width\", type=int, default=512, help=\"width of the network\")\n    parser.add_argument(\"--depth\", type=int, default=3, help=\"depth of the network\")\n    parser.add_argument(\"--dilation_growth_rate\", type=int, default=3, help=\"dilation growth rate\")\n    parser.add_argument(\"--output_emb_width\", type=int, default=512, help=\"output embedding width\")\n    parser.add_argument('--vq_act', type=str, default='relu', choices = ['relu', 'silu', 'gelu'], help='dataset directory')\n    parser.add_argument('--seed', default=123, type=int, help='seed for initializing vqvae training.')\n    parser.add_argument('--window_size', type=int, default=64, help='training motion length')\n\n    ## quantizer\n    parser.add_argument(\"--quantizer\", type=str, default='ema_reset', choices = ['ema', 'orig', 'ema_reset', 'reset'], help=\"eps for optimal transport\")\n    parser.add_argument('--quantbeta', type=float, default=1.0, help='dataset directory')\n\n    ## visualization\n    parser.add_argument(\"--render\", action='store_true', help='render smpl')\n\n    return parser.parse_args()\n"
  },
  {
    "path": "options/option_vqvae.py",
    "content": "import argparse\n\ndef get_args_parser():\n    parser = argparse.ArgumentParser(description='Optimal Transport AutoEncoder training for Amass',\n                                     add_help=True,\n                                     formatter_class=argparse.ArgumentDefaultsHelpFormatter)\n\n    ## dataloader\n    parser.add_argument('--dataname', type=str, default='t2m', help='dataset directory')\n    parser.add_argument('--out_dir', type=str, default='./out/', help='output directory')\n    parser.add_argument('--resume_pth', type=str, help='path to saved vqvae model')\n    parser.add_argument('--window_size', type=int, default=64, help='training motion length')\n\n    ## train\n    parser.add_argument('--batch_size', type=int, default=256, help='batch size')\n    parser.add_argument('--learning_rate', type=float, default=2e-4, help='learning rate')\n    parser.add_argument('--weight_decay', type=float, default=0.0, help='weight decay')\n    parser.add_argument('--warmup_steps', type=int, default=1000, help='number of total iterations for warmup')\n    parser.add_argument('--total_iter', default=300000, type=int, help='number of total iterations to run')\n    parser.add_argument('--lr', default=2e-4, type=float, help='max learning rate')\n    parser.add_argument('--lr_scheduler', default=[200000], nargs=\"+\", type=int, help=\"learning rate schedule (iterations)\")\n    parser.add_argument('--gamma', default=0.05, type=float, help=\"learning rate decay\")\n    parser.add_argument(\"--commit\", type=float, default=0.02, help=\"hyper-parameter for the commitment loss\")\n    parser.add_argument('--loss_vel', type=float, default=0.5, help='hyper-parameter for the velocity loss')\n    parser.add_argument('--recons_loss', type=str, default='l1_smooth', help='reconstruction loss')\n    parser.add_argument('--print_iter', default=200, type=int, help='print frequency')\n    parser.add_argument('--eval_iter', default=1000, type=int, help='evaluation frequency')\n    parser.add_argument('--seed', default=123, type=int, help='seed for initializing training.')\n\n    ## model\n    parser.add_argument(\"--code_dim\", type=int, default=512, help=\"embedding dimension\")\n    parser.add_argument(\"--nb_code\", type=int, default=512, help=\"nb of embedding\")\n    parser.add_argument(\"--mu\", type=float, default=0.99, help=\"exponential moving average to update the codebook\")\n    parser.add_argument(\"--down_t\", type=int, default=2, help=\"downsampling rate\")\n    parser.add_argument(\"--stride_t\", type=int, default=2, help=\"stride size\")\n    parser.add_argument(\"--width\", type=int, default=512, help=\"width of the network\")\n    parser.add_argument(\"--depth\", type=int, default=3, help=\"depth of the network\")\n    parser.add_argument(\"--dilation_growth_rate\", type=int, default=3, help=\"dilation growth rate\")\n    parser.add_argument(\"--output_emb_width\", type=int, default=512, help=\"output embedding width\")\n    parser.add_argument('--vq_act', type=str, default='relu', choices = ['relu', 'silu', 'gelu'], help='dataset directory')\n    parser.add_argument('--vq_norm', type=str, default=None, help='dataset directory')\n\n    ## quantizer\n    parser.add_argument(\"--quantizer\", type=str, default='ema_reset', choices = ['ema', 'orig', 'ema_reset', 'reset'], help=\"eps for optimal transport\")\n    parser.add_argument('--beta', type=float, default=1.0, help='commitment loss in standard VQ')\n\n    return parser.parse_args()\n"
  },
  {
    "path": "prepare/download_evaluators.sh",
    "content": "mkdir -p checkpoints\ncd checkpoints\n\necho \"The evaluators will be stored in the './checkpoints' folder\"\necho \"Downloading\"\ngdown \"https://drive.google.com/uc?id=1jD08gNAU2zVKDAMVyRbxzzv2uA9ssqMk\"\ngdown \"https://drive.google.com/uc?id=1caLMTO5EMZoaCY2U7yEgZp3dG1seyNKF\"\n\necho \"Extracting\"\nunzip t2m.zip\nunzip kit.zip\n\necho \"Cleaning\"\nrm t2m.zip\nrm kit.zip\n\necho \"Downloading done!\"\n"
  },
  {
    "path": "prepare/download_glove.sh",
    "content": "echo \"The glove will be stored in the './' folder\"\necho \"Downloading\"\ngdown \"https://drive.google.com/uc?id=1QMoWoaYIRA-oNMzY74qfCDnENtYyxAmx\"\n\necho \"Extracting\"\nunzip glove.zip\n\necho \"Cleaning\"\nrm glove.zip\n\necho \"Downloading done!\"\n"
  },
  {
    "path": "prepare/download_lora.sh",
    "content": "mkdir -p checkpoints/pretrained_lora\ncd checkpoints/pretrained_lora\n\necho \"The pretrained model will be stored in the './checkpoints/pretrained_lora' folder\"\necho \"Downloading\"\ngdown \"https://drive.google.com/uc?id=10-DGhF7Pfhw4C-SpZBxq8O7wwO3t6pEB\"\necho \"Downloading done!\"\n"
  },
  {
    "path": "prepare/download_smpl.sh",
    "content": "echo \"The body_models will be stored in the './' folder\"\necho \"Downloading\"\ngdown \"https://drive.google.com/uc?id=1uyGhO7VhZjwIuA9Qu0MTv77q6Qqw5kh3\"\n\necho \"Extracting\"\nunzip body_models.zip\n\necho \"Cleaning\"\nrm body_models.zip\n\necho \"Downloading done!\"\n"
  },
  {
    "path": "prepare/download_vqvae.sh",
    "content": "mkdir -p checkpoints\ncd checkpoints\n\necho \"The pretrained_vqvae will be stored in the './checkpoints' folder\"\necho \"Downloading\"\ngdown \"https://drive.google.com/uc?id=1A4cfdodZbiENV75tR9IErei9yiZGlosT\"\n\necho \"Extracting\"\nunzip pretrained_vqvae.zip\n\necho \"Cleaning\"\nrm pretrained_vqvae.zip\n\necho \"Downloading done!\"\n"
  },
  {
    "path": "scripts/convert_checkpoint.py",
    "content": "import gc\nimport shutil\nfrom pathlib import Path\nfrom typing import Dict\n\nimport torch\nfrom tqdm import tqdm\n\n\"\"\"\nSample usage:\n\n```bash\npython -m scripts.convert_checkpoint -h\n\npython -m scripts.convert_checkpoint converted\n```\n\"\"\"\n\n\ndef convert_state_dict(state_dict: Dict[str, torch.Tensor], dtype: torch.dtype = torch.float32) -> Dict[str, torch.Tensor]:\n    converted = {}\n    converted[\"transformer.wte.weight\"] = state_dict[\"tok_embeddings.weight\"].to(dtype)\n    converted[\"lm_head.weight\"] = state_dict[\"output.weight\"].to(dtype)\n    converted[\"transformer.ln_f.scale\"] = state_dict[\"norm.weight\"].to(dtype)\n\n    for layer_idx in sorted(set([k.split(\".\")[1] for k in state_dict if k.startswith(\"layers\")])):\n        # attention\n        # the wq, wk, wv from the FB model are stacked in our model as c_attn\n        converted[f\"transformer.h.{layer_idx}.attn.c_attn.weight\"] = torch.cat(\n            (\n                state_dict[f\"layers.{layer_idx}.attention.wq.weight\"].to(dtype),\n                state_dict[f\"layers.{layer_idx}.attention.wk.weight\"].to(dtype),\n                state_dict[f\"layers.{layer_idx}.attention.wv.weight\"].to(dtype),\n            )\n        )\n        converted[f\"transformer.h.{layer_idx}.attn.c_proj.weight\"] = state_dict[\n            f\"layers.{layer_idx}.attention.wo.weight\"\n        ].to(dtype)\n        # mlp\n        converted[f\"transformer.h.{layer_idx}.mlp.c_fc1.weight\"] = state_dict[\n            f\"layers.{layer_idx}.feed_forward.w1.weight\"\n        ].to(dtype)\n        converted[f\"transformer.h.{layer_idx}.mlp.c_proj.weight\"] = state_dict[\n            f\"layers.{layer_idx}.feed_forward.w2.weight\"\n        ].to(dtype)\n        converted[f\"transformer.h.{layer_idx}.mlp.c_fc2.weight\"] = state_dict[\n            f\"layers.{layer_idx}.feed_forward.w3.weight\"\n        ].to(dtype)\n        # rms norm\n        converted[f\"transformer.h.{layer_idx}.rms_1.scale\"] = state_dict[f\"layers.{layer_idx}.attention_norm.weight\"].to(dtype)\n        converted[f\"transformer.h.{layer_idx}.rms_2.scale\"] = state_dict[f\"layers.{layer_idx}.ffn_norm.weight\"].to(dtype)\n    return converted\n\n\nshard_dims = {\n    \"lm_head.weight\": 0,\n    \"wte.weight\": 1,\n    \"attn.c_attn.weight\": 0,\n    \"attn.c_proj.weight\": 1,\n    \"mlp.c_fc1.weight\": 0,\n    \"mlp.c_fc2.weight\": 0,\n    \"mlp.c_proj.weight\": 1\n}\n\n\ndef meta_weights_for_nano_model(\n    *,\n    output_dir: Path = Path(\"checkpoints/lit-llama\"),\n    ckpt_dir: Path = Path(\"checkpoints/llama/\"),\n    model_size: str = \"7B\",\n    dtype: str = \"float32\",\n) -> None:\n    output_dir = output_dir / model_size\n    ckpt_dir = ckpt_dir / model_size\n    output_dir.mkdir(parents=True, exist_ok=True)\n\n    # the tokenizer is the same for all model sizes, so we store it in the parent dir\n    shutil.copy(ckpt_dir / \"tokenizer.model\", output_dir.parent)\n\n    dt = getattr(torch, dtype, None)\n    if not isinstance(dt, torch.dtype):\n        raise ValueError(f\"{dtype} is not a valid dtype.\")\n    dtype = dt\n\n    checkpoint_files = sorted(ckpt_dir.glob(\"*.pth\"))\n    checkpoint_files.sort()\n    n_checkpoints = len(checkpoint_files)\n\n    if n_checkpoints == 0:\n        raise RuntimeError(f\"No checkpoints were found at ckpt_dir {ckpt_dir}. `consolidated.0*.pth` files expected at that location.\")\n\n    # for the bigger models, there are multiple model-parallel checkpoints\n    # and we combine them into one single file\n    combined = None\n    for file in tqdm(checkpoint_files, total=n_checkpoints):\n        checkpoint = torch.load(file, map_location=\"cpu\")\n        converted = convert_state_dict(checkpoint, dtype=dtype)\n        if combined is None:\n            combined = converted\n            continue\n        for name, param in converted.items():\n            dim = None\n            for k, d in shard_dims.items():\n                if k in name:\n                    dim = d\n                    break\n            if dim is None:\n                # Extra check: assert that tensors are the same if not sharded\n                # assert torch.allclose(combined[name], param)\n                continue\n            combined[name] = torch.cat((combined[name], param), dim=dim)\n\n        del checkpoint\n        del converted\n        gc.collect()\n\n    for name, param in combined.items():\n        if \"c_attn\" not in name:\n            continue\n\n        # Turn [Q1, K1, V1, Q2, K2, V2, ...] into [Q1, Q2, ..., K1, K2, .., V1, V2, ...]\n\n        src_chunk_len = param.shape[0] // n_checkpoints\n        mat_len = src_chunk_len // 3\n        dst_chunk_len = mat_len * n_checkpoints\n        attn = torch.clone(param)\n        for i in range(n_checkpoints):\n            for j in range(3):\n                param[j * dst_chunk_len + i * mat_len: j * dst_chunk_len + (i+1) * mat_len] = \\\n                    attn[i * src_chunk_len + j * mat_len: i * src_chunk_len + (j+1) * mat_len]\n\n        del attn\n        gc.collect()\n\n    torch.save(combined, output_dir / \"lit-llama.pth\")\n\n\nif __name__ == \"__main__\":\n    from jsonargparse import CLI\n\n    CLI(meta_weights_for_nano_model)\n"
  },
  {
    "path": "scripts/convert_hf_checkpoint.py",
    "content": "import gc\nimport json\nimport shutil\nimport sys\nfrom pathlib import Path\n\nimport torch\n\n# support running without installing as a package\nwd = Path(__file__).parent.parent.resolve()\nsys.path.append(str(wd))\n\nfrom lit_llama.model import LLaMA, LLaMAConfig\nfrom lit_llama.utils import EmptyInitOnDevice\n\n\n@torch.no_grad()\ndef convert_hf_checkpoint(\n    *,\n    output_dir: Path = Path(\"checkpoints/lit-llama\"),\n    ckpt_dir: Path = Path(\"checkpoints/hf-llama/\"),\n    model_size: str = \"7B\",\n    dtype: str = \"float32\",\n    verify: bool = False,\n) -> None:\n    \"\"\"\n    Perform the reverse operation of: https://github.com/huggingface/transformers/blob/main/src/transformers/models/llama/convert_llama_weights_to_hf.py\n    \"\"\"\n    output_dir = output_dir / model_size\n    ckpt_dir = ckpt_dir / model_size\n    output_dir.mkdir(parents=True, exist_ok=True)\n\n    # the tokenizer is the same for all model sizes, so we store it in the parent dir\n    shutil.copy(ckpt_dir / \"tokenizer.model\", output_dir.parent)\n\n    dt = getattr(torch, dtype, None)\n    if not isinstance(dt, torch.dtype):\n        raise ValueError(f\"{dtype} is not a valid dtype.\")\n    dtype = dt\n\n    print(\"Initializing lit-llama\")\n    config = LLaMAConfig.from_name(model_size)\n\n    with EmptyInitOnDevice(device=\"cpu\", dtype=dtype):\n        model = LLaMA(config)\n\n    qkv_size = model.transformer.h[0].attn.c_attn.weight.shape[0] // 3\n\n    # initialize a new empty state dict to hold our new weights\n    sd = model.state_dict()\n\n    # Load the json file containing weight mapping\n    pytorch_bin_map_json_path = ckpt_dir / \"pytorch_model.bin.index.json\"\n    with open(pytorch_bin_map_json_path) as json_map:\n        bin_index = json.load(json_map)\n\n    bin_files = set(el for el in bin_index[\"weight_map\"].values())\n\n    def permute(w):\n        dim = config.n_embd\n        return (\n            w.view(config.n_head, 2, dim // config.n_head // 2, dim)\n            .transpose(1, 2)\n            .reshape(dim, dim)\n        )\n\n    weight_map = {\n        \"self_attn.o_proj.weight\": \"attn.c_proj.weight\",\n        \"self_attn.q_proj.weight\": \"attn.c_attn.weight\",\n        \"self_attn.k_proj.weight\": \"attn.c_attn.weight\",\n        \"self_attn.v_proj.weight\": \"attn.c_attn.weight\",\n        \"mlp.gate_proj.weight\": \"mlp.c_fc1.weight\",\n        \"mlp.up_proj.weight\": \"mlp.c_fc2.weight\",\n        \"mlp.down_proj.weight\": \"mlp.c_proj.weight\",\n        \"input_layernorm.weight\": \"rms_1.scale\",\n        \"post_attention_layernorm.weight\": \"rms_2.scale\",\n        \"model.embed_tokens.weight\": \"transformer.wte.weight\",\n        \"model.norm.weight\": \"transformer.ln_f.scale\",\n        \"lm_head.weight\": \"lm_head.weight\"\n    }\n\n    for bin_file in bin_files:\n        print(\"Processing\", bin_file)\n\n        hf_weights = torch.load(ckpt_dir / bin_file, map_location=\"cpu\")\n\n        for name, param in hf_weights.items():\n            param = param.to(dtype=dtype)\n            if \"rotary_emb.inv_freq\" in name:\n                continue\n            if \"model.layers\" in name:\n                block_id = int(name.split(\".\")[2])\n                from_name = \".\".join(name.split(\".\")[3:])\n                to_name = weight_map[from_name]\n\n                if \"q_proj\" in name:\n                    sd[f\"transformer.h.{block_id}.{to_name}\"][:qkv_size] = permute(param)\n                elif \"k_proj\" in name:\n                    sd[f\"transformer.h.{block_id}.{to_name}\"][qkv_size:-qkv_size] = permute(param)\n                elif \"v_proj\" in name:\n                    sd[f\"transformer.h.{block_id}.{to_name}\"][-qkv_size:] = param\n                else:\n                    sd[f\"transformer.h.{block_id}.{to_name}\"].copy_(param)\n            else:\n                sd[weight_map[name]].copy_(param)\n\n        del hf_weights\n        gc.collect()\n\n    print(f\"Saving to disk at {output_dir}\")\n    torch.save(model.state_dict(), output_dir / \"lit-llama.pth\")\n\n    if verify:\n        try:\n            from transformers import LlamaForCausalLM\n        except ImportError:\n            raise ImportError(\"verify=True requires transformers to be installed, please `pip install transformers`\")\n\n        print(\"Verifying...\")\n        token_sample = torch.randint(0, config.vocab_size, size=(1, config.block_size), dtype=torch.int64)\n        out = model(token_sample)\n\n        del model\n        gc.collect()\n\n        print(\"Loading original model for comparison.\")\n        model_hf = LlamaForCausalLM.from_pretrained(ckpt_dir)\n\n        out_hf = model_hf(token_sample)\n\n        print(\"Comparing outputs\")\n        assert torch.allclose(out, out_hf[\"logits\"])\n\n\nif __name__ == \"__main__\":\n    from jsonargparse import CLI\n\n    CLI(convert_hf_checkpoint)\n\n"
  },
  {
    "path": "scripts/download.py",
    "content": "import os\nfrom typing import Optional\nfrom urllib.request import urlretrieve\n\nfiles = {\n    \"original_model.py\": \"https://gist.githubusercontent.com/lantiga/fd36849fb1c498da949a0af635318a7b/raw/7dd20f51c2a1ff2886387f0e25c1750a485a08e1/llama_model.py\",\n    \"original_adapter.py\": \"https://gist.githubusercontent.com/awaelchli/546f33fcdb84cc9f1b661ca1ca18418d/raw/e81d8f35fb1fec53af1099349b0c455fc8c9fb01/original_adapter.py\",\n}\n\n\ndef download_original(wd: str) -> None:\n    for file, url in files.items():\n        filepath = os.path.join(wd, file)\n        if not os.path.isfile(filepath):\n            print(f\"Downloading original implementation to {filepath!r}\")\n            urlretrieve(url=url, filename=file)\n            print(\"Done\")\n        else:\n            print(\"Original implementation found. Skipping download.\")\n\n\ndef download_from_hub(repo_id: Optional[str] = None, local_dir: str = \"checkpoints/hf-llama/7B\") -> None:\n    if repo_id is None:\n        raise ValueError(\"Please pass `--repo_id=...`. You can try googling 'huggingface hub llama' for options.\")\n\n    from huggingface_hub import snapshot_download\n\n    snapshot_download(repo_id, local_dir=local_dir)\n\n\nif __name__ == \"__main__\":\n    from jsonargparse import CLI\n\n    CLI(download_from_hub)\n"
  },
  {
    "path": "scripts/generate_dataset.py",
    "content": "import numpy as np\nimport json, random\nfrom random import sample\nfrom tqdm import tqdm\nimport os\nimport sys\nfrom pathlib import Path\nwd = Path(__file__).parent.parent.resolve()\nsys.path.append(str(wd))\nfrom options import option\n\nargs = option.get_args_parser()\ndataname = 'HumanML3D' if args.dataname == 't2m' else 'KIT-ML'\n\ndef prepare(split):\n    with open(f'./dataset/{dataname}/{split}.txt', 'r') as f:\n        lines = f.readlines()\n\n    dataset = []\n    for line in tqdm(lines):\n        line = line.strip()\n        if not os.path.exists(f'./dataset/{dataname}/VQVAE/{line}.npy'): continue\n        with open(f'./dataset/{dataname}/texts/{line}.txt', 'r') as f:\n            texts = f.readlines()\n            text = sample(texts, 1)[0].split('#')[0]\n\n        data = np.load(f'./dataset/{dataname}/VQVAE/{line}.npy')\n        list_data = data.reshape(-1).tolist()\n        m_length = len(list_data)\n        suffix = str(list_data[-1])\n        prefix = str(list_data[0])\n        sample_num = random.randint(3, 5)\n        index = sample(list(range(len(list_data))), sample_num)\n        index.sort()\n        tokens = ','.join(str(num) for num in list(map(list_data.__getitem__, index)))\n        str_data = ','.join(str(num) for num in list_data)\n        dataset.append({'instruction': 'Generate a sequence of motion tokens matching the following human motion description.', 'input': f'{text}', 'output': str_data, 'motion': line, 'length': m_length})\n        dataset.append({'instruction': 'Generate a sequence of motion tokens matching the following human motion description given the initial token.', 'input': f'{text}<Motion Token>{prefix}</Motion Token>', 'output': str_data, 'motion': line, 'length': m_length})\n        dataset.append({'instruction': 'Generate a sequence of motion tokens matching the following human motion description given the last token.', 'input': f'{text}<Motion Token>{suffix}</Motion Token>', 'output': str_data, 'motion': line, 'length': m_length})\n        dataset.append({'instruction': 'Generate a sequence of motion tokens matching the following human motion description given several key tokens.', 'input': f'{text}<Motion Token>{tokens}</Motion Token>', 'output': str_data, 'motion': line, 'length': m_length})\n\n    dataset = json.dumps(dataset)\n    with open(f'./data/{split}.json', 'w') as f:\n        f.write(dataset)\n\n\ndef main():\n    prepare('train')\n    prepare('val')\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "scripts/prepare_data.py",
    "content": "import os\nimport sys\nfrom pathlib import Path\nwd = Path(__file__).parent.parent.resolve()\nsys.path.append(str(wd))\n\nimport torch\nimport numpy as np\nimport models.vqvae as vqvae\nfrom dataloader.tokenizer_loader import DATALoader\nfrom options import option\n\nargs = option.get_args_parser()\nargs.vq_dir= \"./dataset/KIT-ML/VQVAE\" if args.dataname == 'kit' else \"./dataset/HumanML3D/VQVAE\"\nos.makedirs(args.out_dir, exist_ok = True)\nos.makedirs(args.vq_dir, exist_ok = True)\n\ntoken_loader = DATALoader(args.dataname, 1, unit_length=2**args.down_t)\n\nnet = vqvae.HumanVQVAE(args, ## use args to define different parameters in different quantizers\n                       args.nb_code,\n                       args.code_dim,\n                       args.output_emb_width,\n                       args.down_t,\n                       args.stride_t,\n                       args.width,\n                       args.depth,\n                       args.dilation_growth_rate)\n\nvqvae_pth = f\"./checkpoints/pretrained_vqvae/{args.dataname}.pth\"\nprint ('loading checkpoint from {}'.format(vqvae_pth))\nckpt = torch.load(vqvae_pth, map_location='cpu')\nnet.load_state_dict(ckpt['net'], strict=True)\nnet.eval()\nnet.cuda()\n\nfor batch in token_loader:\n    pose, name = batch\n    bs = pose.shape[0]\n\n    pose = pose.cuda().float() # bs, nb_joints, joints_dim, seq_len\n    target = net.encode(pose)\n    target = target.cpu().numpy()\n\n    np.save(os.path.join(args.vq_dir, name[0] +'.npy'), target[0])\n"
  },
  {
    "path": "scripts/prepare_motion.py",
    "content": "\"\"\"Implementation derived from https://github.com/tloen/alpaca-lora\"\"\"\nimport os\nimport sys\nfrom pathlib import Path\n\n# support running without installing as a package\nwd = Path(__file__).parent.parent.resolve()\nsys.path.append(str(wd))\n\nimport torch\nimport requests\nimport json\nfrom torch.utils.data import random_split\nfrom lit_llama.tokenizer import Tokenizer\nfrom tqdm import tqdm\n\n\nIGNORE_INDEX = -1\n\ndef prepare(\n    destination_path: Path = Path(\"./data\"), \n    tokenizer_path: Path = Path(\"./checkpoints/lit-llama/tokenizer.model\"),\n    max_seq_length: int = 2560,\n    seed: int = 42,\n    mask_inputs: bool = False,  # as in alpaca-lora\n    split: str = \"train\"\n):\n    \"\"\"Prepare the Alpaca dataset for instruction tuning.\n    The output is a training and validation dataset saved as `train.pt` and `val.pt`,\n    which stores the preprocessed and tokenized prompts and labels.\n    \"\"\"\n\n    destination_path.mkdir(parents=True, exist_ok=True)\n    file_path = os.path.join(destination_path, f'{split}.json')\n\n    # TODO: If we don't have the Meta weights, where do we get the tokenizer from?\n    tokenizer = Tokenizer(tokenizer_path)\n\n    with open(file_path, \"r\") as file:\n        data = json.load(file)\n    data_set = list(data)\n\n    print(f\"{split} set has {len(data_set):,} samples\")\n\n    print(f\"Processing {split} split ...\")\n    data_set = [prepare_sample(sample, tokenizer, max_seq_length, mask_inputs) for sample in tqdm(data_set)]\n    torch.save(data_set, os.path.join(destination_path, f\"{split}.pt\"))\n\n\ndef prepare_sample(example: dict, tokenizer: Tokenizer, max_length: int, mask_inputs: bool = True):\n    \"\"\"Processes a single sample.\n    Each sample in the dataset consists of:\n    - instruction: A string describing the task\n    - input: A string holding a special input value for the instruction.\n        This only applies to some samples, and in others this is empty.\n    - output: The response string\n\n    This function processes this data to produce a prompt text and a label for\n    supervised training. The prompt text is formed as a single message including both\n    the instruction and the input. The label/target is the same message but with the\n    response attached.\n\n    Finally, both the prompt and the label get tokenized. If desired, all tokens\n    in the label that correspond to the original input prompt get masked out (default).\n    \"\"\"\n    full_prompt = generate_prompt(example)\n    full_prompt_and_response = full_prompt + example[\"output\"]\n    encoded_full_prompt = tokenize(tokenizer, full_prompt, max_length=max_length, eos=False)\n    encoded_full_prompt_and_response = tokenize(tokenizer, full_prompt_and_response, eos=True, max_length=max_length)\n\n    # The labels are the full prompt with response, but with the prompt masked out\n    labels = encoded_full_prompt_and_response.clone()\n    if mask_inputs:\n        labels[:len(encoded_full_prompt)] = IGNORE_INDEX\n\n    return {**example, \"input_ids\": encoded_full_prompt_and_response, \"input_ids_no_response\": encoded_full_prompt, \"labels\": labels}\n\n\ndef tokenize(tokenizer: Tokenizer, string: str, max_length: int, eos=True) -> torch.Tensor:\n    return tokenizer.encode(string, bos=True, eos=eos, max_length=max_length)\n\n\ndef generate_prompt(example):\n    \"\"\"Generates a standardized message to prompt the model with an instruction, optional input and a\n    'response' field.\"\"\"\n\n    if example[\"input\"]:\n        return (\n            \"Below is an instruction that describes a task, paired with an input that provides further context. \"\n            \"Write a response that appropriately completes the request.\\n\\n\"\n            f\"### Instruction:\\n{example['instruction']}\\n\\n### Input:\\n{example['input']}\\n\\n### Response:\"\n        )\n    return (\n        \"Below is an instruction that describes a task. \"\n        \"Write a response that appropriately completes the request.\\n\\n\"\n        f\"### Instruction:\\n{example['instruction']}\\n\\n### Response:\"\n    )\n\n\ndef main():\n    prepare(split='train')\n    prepare(split='val')\n\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "sitemap.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<urlset\r\n      xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\"\r\n      xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\r\n      xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9\r\n            http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\">\r\n<!-- created with Free Online Sitemap Generator www.xml-sitemaps.com -->\r\n\r\n\n<url>\n  <loc>https://qiqiapink.github.io/MotionGPT/</loc>\n  <lastmod>2023-06-25T05:08:53+00:00</lastmod>\n  <priority>1.00</priority>\n</url>\n<url>\n  <loc>https://qiqiapink.github.io/MotionGPT/static/images/motiongpt_paper.pdf</loc>\n  <lastmod>2023-06-25T05:08:53+00:00</lastmod>\n  <priority>0.80</priority>\n</url>\r\n\r\n\r\n</urlset>"
  },
  {
    "path": "static/css/bulma.css.map.txt",
    "content": "{\"version\":3,\"sources\":[\"../bulma.sass\",\"../sass/utilities/_all.sass\",\"../sass/utilities/animations.sass\",\"bulma.css\",\"../sass/utilities/mixins.sass\",\"../sass/utilities/initial-variables.sass\",\"../sass/utilities/controls.sass\",\"../sass/base/_all.sass\",\"../sass/base/minireset.sass\",\"../sass/base/generic.sass\",\"../sass/utilities/derived-variables.sass\",\"../sass/elements/_all.sass\",\"../sass/elements/box.sass\",\"../sass/elements/button.sass\",\"../sass/utilities/functions.sass\",\"../sass/elements/container.sass\",\"../sass/elements/content.sass\",\"../sass/elements/icon.sass\",\"../sass/elements/image.sass\",\"../sass/elements/notification.sass\",\"../sass/elements/progress.sass\",\"../sass/elements/table.sass\",\"../sass/elements/tag.sass\",\"../sass/elements/title.sass\",\"../sass/elements/other.sass\",\"../sass/form/_all.sass\",\"../sass/form/shared.sass\",\"../sass/form/input-textarea.sass\",\"../sass/form/checkbox-radio.sass\",\"../sass/form/select.sass\",\"../sass/form/file.sass\",\"../sass/form/tools.sass\",\"../sass/components/_all.sass\",\"../sass/components/breadcrumb.sass\",\"../sass/components/card.sass\",\"../sass/components/dropdown.sass\",\"../sass/components/level.sass\",\"../sass/components/media.sass\",\"../sass/components/menu.sass\",\"../sass/components/message.sass\",\"../sass/components/modal.sass\",\"../sass/components/navbar.sass\",\"../sass/components/pagination.sass\",\"../sass/components/panel.sass\",\"../sass/components/tabs.sass\",\"../sass/grid/_all.sass\",\"../sass/grid/columns.sass\",\"../sass/grid/tiles.sass\",\"../sass/helpers/_all.sass\",\"../sass/helpers/color.sass\",\"../sass/helpers/flexbox.sass\",\"../sass/helpers/float.sass\",\"../sass/helpers/other.sass\",\"../sass/helpers/overflow.sass\",\"../sass/helpers/position.sass\",\"../sass/helpers/spacing.sass\",\"../sass/helpers/typography.sass\",\"../sass/helpers/visibility.sass\",\"../sass/layout/_all.sass\",\"../sass/layout/hero.sass\",\"../sass/layout/section.sass\",\"../sass/layout/footer.sass\"],\"names\":[],\"mappings\":\"AACA,6DAAA;ACDA,oBAAA;ACAA;EACE;IACE,uBAAuB;ECGzB;EDFA;IACE,yBAAyB;ECI3B;AACF;ADTA;EACE;IACE,uBAAuB;ECGzB;EDFA;IACE,yBAAyB;ECI3B;AACF;;AC0JA;;;;EANE,2BAA2B;EAC3B,yBAAyB;EACzB,sBAAsB;EACtB,qBAAqB;EACrB,iBAAiB;AD7InB;;ACkKA;EAfE,6BAD8B;EAE9B,kBAAkB;EAClB,eAAe;EACf,aAAa;EACb,YAAY;EACZ,cAAc;EACd,eAAe;EACf,qBAAqB;EACrB,oBAAoB;EACpB,kBAAkB;EAClB,QAAQ;EACR,yBAAyB;EACzB,wBAAwB;EACxB,cAAc;AD/IhB;;ACqJE;;EACE,qBC3IkB;AFNtB;;ACwNA;EAhEE,qBAAqB;EACrB,wBAAwB;EACxB,uCClM2B;EDmM3B,YAAY;EACZ,uBC/HuB;EDgIvB,eAAe;EACf,oBAAoB;EACpB,qBAAqB;EACrB,YAAY;EACZ,cAAc;EACd,YAAY;EACZ,YAAY;EACZ,gBAAgB;EAChB,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,aAAa;EACb,kBAAkB;EAClB,mBAAmB;EACnB,WAAW;ADpJb;;ACqJE;EAEE,uBCzM2B;ED0M3B,WAAW;EACX,cAAc;EACd,SAAS;EACT,kBAAkB;EAClB,QAAQ;EACR,0DAA0D;EAC1D,+BAA+B;ADnJnC;;ACoJE;EACE,WAAW;EACX,UAAU;ADjJd;;ACkJE;EACE,WAAW;EACX,UAAU;AD/Id;;ACgJE;EAEE,uCCtOyB;AFwF7B;;AC+IE;EACE,uCCxOyB;AF4F7B;;AC8IE;EACE,YAAY;EACZ,gBAAgB;EAChB,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,WAAW;AD3If;;AC4IE;EACE,YAAY;EACZ,gBAAgB;EAChB,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,WAAW;ADzIf;;AC0IE;EACE,YAAY;EACZ,gBAAgB;EAChB,eAAe;EACf,gBAAgB;EAChB,eAAe;EACf,WAAW;ADvIf;;ACwJA;EAXE,mDAA2C;UAA3C,2CAA2C;EAC3C,yBC7P4B;ED8P5B,uBCjMuB;EDkMvB,+BAA+B;EAC/B,6BAA6B;EAC7B,WAAW;EACX,cAAc;EACd,WAAW;EACX,kBAAkB;EAClB,UAAU;ADzIZ;;ACqJA;;;;;;;;;;;;;;;;;EANE,SADuB;EAEvB,OAFuB;EAGvB,kBAAkB;EAClB,QAJuB;EAKvB,MALuB;ADtHzB;;AGvHA;;;;;EA3BE,qBAAqB;EACrB,wBAAwB;EACxB,mBAAmB;EACnB,6BAA+C;EAC/C,kBDqDU;ECpDV,gBAAgB;EAChB,oBAAoB;EACpB,eDkBW;ECjBX,aAfoB;EAgBpB,2BAA2B;EAC3B,gBAhBuB;EAiBvB,iCAf+D;EAgB/D,gCAfkE;EAgBlE,iCAhBkE;EAiBlE,8BAlB+D;EAmB/D,kBAAkB;EAClB,mBAAmB;AH0JrB;;AGxJE;;;;;;;;;;;;;;;;;EAIE,aAAa;AHwKjB;;AGvKE;;;;;;;;;;;;;;;;EAEE,mBAAmB;AHwLvB;;AI7NA,eAAA;ACAA,0EAAA;AAEA;;;;;;;;;;;;;;;;;;;;;;;EAuBE,SAAS;EACT,UAAU;ALgOZ;;AK7NA;;;;;;EAME,eAAe;EACf,mBAAmB;ALgOrB;;AK7NA;EACE,gBAAgB;ALgOlB;;AK7NA;;;;EAIE,SAAS;ALgOX;;AK7NA;EACE,sBAAsB;ALgOxB;;AK9NA;EAII,mBAAmB;AL8NvB;;AK3NA;;EAEE,YAAY;EACZ,eAAe;AL8NjB;;AK3NA;EACE,SAAS;AL8NX;;AK3NA;EACE,yBAAyB;EACzB,iBAAiB;AL8NnB;;AK5NA;;EAEE,UAAU;AL+NZ;;AKjOA;;EAII,mBAAmB;ALkOvB;;AK9PA;EClBE,uBJjB6B;EIkB7B,eAhCc;EAiCd,kCAAkC;EAClC,mCAAmC;EACnC,gBAlCoB;EAmCpB,kBAhCsB;EAiCtB,kBAhCsB;EAiCtB,kCApCiC;EAqCjC,8BAAsB;KAAtB,2BAAsB;MAAtB,0BAAsB;UAAtB,sBAAsB;ANoRxB;;AMlRA;;;;;;;EAOE,cAAc;ANqRhB;;AMnRA;;;;;;EAME,oLJ7ByL;AFmT3L;;AMpRA;;EAEE,6BAA6B;EAC7B,4BAA4B;EAC5B,sBJlC0B;AFyT5B;;AMrRA;EACE,cJ3D4B;EI4D5B,cA1DkB;EA2DlB,gBJ3BiB;EI4BjB,gBA1DoB;ANkVtB;;AMpRA;EACE,cJpDgC;EIqDhC,eAAe;EACf,qBAAqB;ANuRvB;;AM1RA;EAKI,mBAAmB;ANyRvB;;AM9RA;EAOI,cJ1E0B;AFqW9B;;AMzRA;EACE,4BJtE4B;EIuE5B,cCpBsB;EDqBtB,kBArEiB;EAsEjB,mBAvEkB;EAwElB,4BAzEgC;ANqWlC;;AM1RA;EACE,4BJ7E4B;EI8E5B,YAAY;EACZ,cAAc;EACd,WAxEa;EAyEb,gBAxEkB;ANqWpB;;AM3RA;EACE,YAAY;EACZ,eAAe;AN8RjB;;AM5RA;;EAEE,wBAAwB;AN+R1B;;AM7RA;EACE,kBAvFuB;ANuXzB;;AM9RA;EACE,mBAAmB;EACnB,oBAAoB;ANiStB;;AM/RA;EACE,cJ1G4B;EI2G5B,gBJrEe;AFuWjB;;AM9RA;EACE,YAAY;ANiSd;;AM/RA;EL1DE,iCAAiC;EK4DjC,4BJ7G4B;EI8G5B,cJpH4B;EIqH5B,kBAjGqB;EAkGrB,gBAAgB;EAChB,uBAlG0B;EAmG1B,gBAAgB;EAChB,iBAAiB;ANkSnB;;AM1SA;EAUI,6BAA6B;EAC7B,mBAAmB;EACnB,cAvGoB;EAwGpB,UAAU;ANoSd;;AMlSA;;EAGI,mBAAmB;ANoSvB;;AMvSA;;EAKM,mBAAmB;ANuSzB;;AM5SA;EAOI,cJxI0B;AFib9B;;AQvbA,mBAAA;ACSA;EAEE,uBPI6B;EOH7B,kBP0DgB;EOzDhB,0FPX2B;EOY3B,cPP4B;EOQ5B,cAAc;EACd,gBAZmB;AT6brB;;AS/aA;EAGI,yEPC8B;AF+alC;;ASnbA;EAKI,oEPD8B;AFmblC;;AUzZA;EAGE,uBRpC6B;EQqC7B,qBR1C4B;EQ2C5B,iBPlDwB;EOmDxB,cRhD4B;EQiD5B,eAAe;EAGf,uBAAuB;EACvB,iCApD6D;EAqD7D,iBApD6B;EAqD7B,kBArD6B;EAsD7B,8BAvD6D;EAwD7D,kBAAkB;EAClB,mBAAmB;AVwZrB;;AUxaA;EAkBI,cAAc;AV0ZlB;;AU5aA;EAwBM,aAAa;EACb,YAAY;AVwZlB;;AUjbA;ETgGI,+BSrEwG;ETqExG,oBSpEgE;AV0ZpE;;AUtbA;ETgGI,mBSlEgE;ETkEhE,gCSjEwG;AV4Z5G;;AU3bA;EAiCM,+BAAmF;EACnF,gCAAoF;AV8Z1F;;AUhcA;EAsCI,qBR7E0B;EQ8E1B,cRjF0B;AF+e9B;;AUrcA;EA0CI,qBRpE8B;EQqE9B,cRrF0B;AFof9B;;AU1cA;EA6CM,kDRvE4B;AFwelC;;AU9cA;EAgDI,qBRzF0B;EQ0F1B,cR3F0B;AF6f9B;;AUndA;EAoDI,6BAA6B;EAC7B,yBAAyB;EACzB,cR/F0B;EQgG1B,0BAjF8B;AVoflC;;AU1dA;EA4DM,4BR/FwB;EQgGxB,cRvGwB;AFygB9B;;AU/dA;EAgEM,yBCH2B;EDI3B,cR3GwB;AF8gB9B;;AUpeA;;EAoEM,6BAA6B;EAC7B,yBAAyB;EACzB,gBAAgB;AVqatB;;AU3eA;EA2EM,uBR5GyB;EQ6GzB,yBAAyB;EACzB,cR3HuB;AF+hB7B;;AUjfA;EAgFQ,yBCnByB;EDoBzB,yBAAyB;EACzB,cRhIqB;AFqiB7B;;AUvfA;EAqFQ,yBAAyB;EACzB,cRpIqB;AF0iB7B;;AU5fA;EAwFU,mDRzHqB;AFiiB/B;;AUhgBA;EA2FQ,yBC9ByB;ED+BzB,yBAAyB;EACzB,cR3IqB;AFojB7B;;AUtgBA;;EAgGQ,uBRjIuB;EQkIvB,yBAAyB;EACzB,gBAAgB;AV2axB;;AU7gBA;EAoGQ,yBRlJqB;EQmJrB,YRtIuB;AFmjB/B;;AUlhBA;EAwGU,uBC3CuB;AXydjC;;AUthBA;;EA2GU,yBRzJmB;EQ0JnB,yBAAyB;EACzB,gBAAgB;EAChB,YR/IqB;AF+jB/B;;AU9hBA;EAiHU,gEAA4E;AVibtF;;AUliBA;EAmHQ,6BAA6B;EAC7B,mBRrJuB;EQsJvB,YRtJuB;AFykB/B;;AUxiBA;EA0HU,uBR3JqB;EQ4JrB,mBR5JqB;EQ6JrB,cR1KmB;AF4lB7B;;AU9iBA;EA+HY,4DAA8D;AVmb1E;;AUljBA;EAqIc,gEAA4E;AVib1F;;AUtjBA;;EAwIU,6BAA6B;EAC7B,mBR1KqB;EQ2KrB,gBAAgB;EAChB,YR5KqB;AF+lB/B;;AU9jBA;EA6IQ,6BAA6B;EAC7B,qBR5LqB;EQ6LrB,cR7LqB;AFknB7B;;AUpkBA;EAoJU,yBRlMmB;EQmMnB,YRtLqB;AF0mB/B;;AUzkBA;EA4Jc,4DAA8D;AVib5E;;AU7kBA;;EA+JU,6BAA6B;EAC7B,qBR9MmB;EQ+MnB,gBAAgB;EAChB,cRhNmB;AFmoB7B;;AUrlBA;EA2EM,yBRzHuB;EQ0HvB,yBAAyB;EACzB,YR9GyB;AF4nB/B;;AU3lBA;EAgFQ,yBCnByB;EDoBzB,yBAAyB;EACzB,YRnHuB;AFkoB/B;;AUjmBA;EAqFQ,yBAAyB;EACzB,YRvHuB;AFuoB/B;;AUtmBA;EAwFU,gDRtImB;AFwpB7B;;AU1mBA;EA2FQ,uBC9ByB;ED+BzB,yBAAyB;EACzB,YR9HuB;AFipB/B;;AUhnBA;;EAgGQ,yBR9IqB;EQ+IrB,yBAAyB;EACzB,gBAAgB;AVqhBxB;;AUvnBA;EAoGQ,uBRrIuB;EQsIvB,cRnJqB;AF0qB7B;;AU5nBA;EAwGU,yBC3CuB;AXmkBjC;;AUhoBA;;EA2GU,uBR5IqB;EQ6IrB,yBAAyB;EACzB,gBAAgB;EAChB,cR5JmB;AFsrB7B;;AUxoBA;EAiHU,4DAA4E;AV2hBtF;;AU5oBA;EAmHQ,6BAA6B;EAC7B,qBRlKqB;EQmKrB,cRnKqB;AFgsB7B;;AUlpBA;EA0HU,yBRxKmB;EQyKnB,qBRzKmB;EQ0KnB,YR7JqB;AFyrB/B;;AUxpBA;EA+HY,gEAA8D;AV6hB1E;;AU5pBA;EAqIc,4DAA4E;AV2hB1F;;AUhqBA;;EAwIU,6BAA6B;EAC7B,qBRvLmB;EQwLnB,gBAAgB;EAChB,cRzLmB;AFstB7B;;AUxqBA;EA6IQ,6BAA6B;EAC7B,mBR/KuB;EQgLvB,YRhLuB;AF+sB/B;;AU9qBA;EAoJU,uBRrLqB;EQsLrB,cRnMmB;AFiuB7B;;AUnrBA;EA4Jc,gEAA8D;AV2hB5E;;AUvrBA;;EA+JU,6BAA6B;EAC7B,mBRjMqB;EQkMrB,gBAAgB;EAChB,YRnMqB;AFguB/B;;AU/rBA;EA2EM,4BR9GwB;EQ+GxB,yBAAyB;EACzB,yBC7Ce;AXqqBrB;;AUrsBA;EAgFQ,yBCnByB;EDoBzB,yBAAyB;EACzB,yBClDa;AX2qBrB;;AU3sBA;EAqFQ,yBAAyB;EACzB,yBCtDa;AXgrBrB;;AUhtBA;EAwFU,mDR3HoB;AFuvB9B;;AUptBA;EA2FQ,yBC9ByB;ED+BzB,yBAAyB;EACzB,yBC7Da;AX0rBrB;;AU1tBA;;EAgGQ,4BRnIsB;EQoItB,yBAAyB;EACzB,gBAAgB;AV+nBxB;;AUjuBA;EAoGQ,oCCpEa;EDqEb,iBRxIsB;AFywB9B;;AUtuBA;EAwGU,oCC3CuB;AX6qBjC;;AU1uBA;;EA2GU,oCC3EW;ED4EX,yBAAyB;EACzB,gBAAgB;EAChB,iBRjJoB;AFqxB9B;;AUlvBA;EAiHU,sFAA4E;AVqoBtF;;AUtvBA;EAmHQ,6BAA6B;EAC7B,wBRvJsB;EQwJtB,iBRxJsB;AF+xB9B;;AU5vBA;EA0HU,4BR7JoB;EQ8JpB,wBR9JoB;EQ+JpB,yBC5FW;AXkuBrB;;AUlwBA;EA+HY,sEAA8D;AVuoB1E;;AUtwBA;EAqIc,sFAA4E;AVqoB1F;;AU1wBA;;EAwIU,6BAA6B;EAC7B,wBR5KoB;EQ6KpB,gBAAgB;EAChB,iBR9KoB;AFqzB9B;;AUlxBA;EA6IQ,6BAA6B;EAC7B,gCC9Ga;ED+Gb,yBC/Ga;AXwvBrB;;AUxxBA;EAoJU,oCCpHW;EDqHX,iBRxLoB;AFg0B9B;;AU7xBA;EA4Jc,sEAA8D;AVqoB5E;;AUjyBA;;EA+JU,6BAA6B;EAC7B,gCChIW;EDiIX,gBAAgB;EAChB,yBClIW;AXywBrB;;AUzyBA;EA2EM,yBRrHwB;EQsHxB,yBAAyB;EACzB,WC3CU;AX6wBhB;;AU/yBA;EAgFQ,yBCnByB;EDoBzB,yBAAyB;EACzB,WChDQ;AXmxBhB;;AUrzBA;EAqFQ,yBAAyB;EACzB,WCpDQ;AXwxBhB;;AU1zBA;EAwFU,gDRlIoB;AFw2B9B;;AU9zBA;EA2FQ,yBC9ByB;ED+BzB,yBAAyB;EACzB,WC3DQ;AXkyBhB;;AUp0BA;;EAgGQ,yBR1IsB;EQ2ItB,yBAAyB;EACzB,gBAAgB;AVyuBxB;;AU30BA;EAoGQ,sBClEQ;EDmER,cR/IsB;AF03B9B;;AUh1BA;EAwGU,yBC3CuB;AXuxBjC;;AUp1BA;;EA2GU,sBCzEM;ED0EN,yBAAyB;EACzB,gBAAgB;EAChB,cRxJoB;AFs4B9B;;AU51BA;EAiHU,0DAA4E;AV+uBtF;;AUh2BA;EAmHQ,6BAA6B;EAC7B,qBR9JsB;EQ+JtB,cR/JsB;AFg5B9B;;AUt2BA;EA0HU,yBRpKoB;EQqKpB,qBRrKoB;EQsKpB,WC1FM;AX00BhB;;AU52BA;EA+HY,gEAA8D;AVivB1E;;AUh3BA;EAqIc,0DAA4E;AV+uB1F;;AUp3BA;;EAwIU,6BAA6B;EAC7B,qBRnLoB;EQoLpB,gBAAgB;EAChB,cRrLoB;AFs6B9B;;AU53BA;EA6IQ,6BAA6B;EAC7B,kBC5GQ;ED6GR,WC7GQ;AXg2BhB;;AUl4BA;EAoJU,sBClHM;EDmHN,cR/LoB;AFi7B9B;;AUv4BA;EA4Jc,gEAA8D;AV+uB5E;;AU34BA;;EA+JU,6BAA6B;EAC7B,kBC9HM;ED+HN,gBAAgB;EAChB,WChIM;AXi3BhB;;AUn5BA;EA2EM,yBRvG4B;EQwG5B,yBAAyB;EACzB,WC3CU;AXu3BhB;;AUz5BA;EAgFQ,yBCnByB;EDoBzB,yBAAyB;EACzB,WChDQ;AX63BhB;;AU/5BA;EAqFQ,yBAAyB;EACzB,WCpDQ;AXk4BhB;;AUp6BA;EAwFU,iDRpHwB;AFo8BlC;;AUx6BA;EA2FQ,yBC9ByB;ED+BzB,yBAAyB;EACzB,WC3DQ;AX44BhB;;AU96BA;;EAgGQ,yBR5H0B;EQ6H1B,yBAAyB;EACzB,gBAAgB;AVm1BxB;;AUr7BA;EAoGQ,sBClEQ;EDmER,cRjI0B;AFs9BlC;;AU17BA;EAwGU,yBC3CuB;AXi4BjC;;AU97BA;;EA2GU,sBCzEM;ED0EN,yBAAyB;EACzB,gBAAgB;EAChB,cR1IwB;AFk+BlC;;AUt8BA;EAiHU,0DAA4E;AVy1BtF;;AU18BA;EAmHQ,6BAA6B;EAC7B,qBRhJ0B;EQiJ1B,cRjJ0B;AF4+BlC;;AUh9BA;EA0HU,yBRtJwB;EQuJxB,qBRvJwB;EQwJxB,WC1FM;AXo7BhB;;AUt9BA;EA+HY,gEAA8D;AV21B1E;;AU19BA;EAqIc,0DAA4E;AVy1B1F;;AU99BA;;EAwIU,6BAA6B;EAC7B,qBRrKwB;EQsKxB,gBAAgB;EAChB,cRvKwB;AFkgClC;;AUt+BA;EA6IQ,6BAA6B;EAC7B,kBC5GQ;ED6GR,WC7GQ;AX08BhB;;AU5+BA;EAoJU,sBClHM;EDmHN,cRjLwB;AF6gClC;;AUj/BA;EA4Jc,gEAA8D;AVy1B5E;;AUr/BA;;EA+JU,6BAA6B;EAC7B,kBC9HM;ED+HN,gBAAgB;EAChB,WChIM;AX29BhB;;AU7/BA;EAwKU,yBC/HsC;EDgItC,cCvH2D;AXg9BrE;;AUlgCA;EA4KY,yBC/GqB;EDgHrB,yBAAyB;EACzB,cC5HyD;AXs9BrE;;AUxgCA;EAiLY,yBCpHqB;EDqHrB,yBAAyB;EACzB,cCjIyD;AX49BrE;;AU9gCA;EA2EM,yBRrG4B;EQsG5B,yBAAyB;EACzB,WC3CU;AXk/BhB;;AUphCA;EAgFQ,yBCnByB;EDoBzB,yBAAyB;EACzB,WChDQ;AXw/BhB;;AU1hCA;EAqFQ,yBAAyB;EACzB,WCpDQ;AX6/BhB;;AU/hCA;EAwFU,kDRlHwB;AF6jClC;;AUniCA;EA2FQ,yBC9ByB;ED+BzB,yBAAyB;EACzB,WC3DQ;AXugChB;;AUziCA;;EAgGQ,yBR1H0B;EQ2H1B,yBAAyB;EACzB,gBAAgB;AV88BxB;;AUhjCA;EAoGQ,sBClEQ;EDmER,cR/H0B;AF+kClC;;AUrjCA;EAwGU,yBC3CuB;AX4/BjC;;AUzjCA;;EA2GU,sBCzEM;ED0EN,yBAAyB;EACzB,gBAAgB;EAChB,cRxIwB;AF2lClC;;AUjkCA;EAiHU,0DAA4E;AVo9BtF;;AUrkCA;EAmHQ,6BAA6B;EAC7B,qBR9I0B;EQ+I1B,cR/I0B;AFqmClC;;AU3kCA;EA0HU,yBRpJwB;EQqJxB,qBRrJwB;EQsJxB,WC1FM;AX+iChB;;AUjlCA;EA+HY,gEAA8D;AVs9B1E;;AUrlCA;EAqIc,0DAA4E;AVo9B1F;;AUzlCA;;EAwIU,6BAA6B;EAC7B,qBRnKwB;EQoKxB,gBAAgB;EAChB,cRrKwB;AF2nClC;;AUjmCA;EA6IQ,6BAA6B;EAC7B,kBC5GQ;ED6GR,WC7GQ;AXqkChB;;AUvmCA;EAoJU,sBClHM;EDmHN,cR/KwB;AFsoClC;;AU5mCA;EA4Jc,gEAA8D;AVo9B5E;;AUhnCA;;EA+JU,6BAA6B;EAC7B,kBC9HM;ED+HN,gBAAgB;EAChB,WChIM;AXslChB;;AUxnCA;EAwKU,yBC/HsC;EDgItC,cCvH2D;AX2kCrE;;AU7nCA;EA4KY,yBC/GqB;EDgHrB,yBAAyB;EACzB,cC5HyD;AXilCrE;;AUnoCA;EAiLY,yBCpHqB;EDqHrB,yBAAyB;EACzB,cCjIyD;AXulCrE;;AUzoCA;EA2EM,yBRtG4B;EQuG5B,yBAAyB;EACzB,WC3CU;AX6mChB;;AU/oCA;EAgFQ,yBCnByB;EDoBzB,yBAAyB;EACzB,WChDQ;AXmnChB;;AUrpCA;EAqFQ,yBAAyB;EACzB,WCpDQ;AXwnChB;;AU1pCA;EAwFU,kDRnHwB;AFyrClC;;AU9pCA;EA2FQ,yBC9ByB;ED+BzB,yBAAyB;EACzB,WC3DQ;AXkoChB;;AUpqCA;;EAgGQ,yBR3H0B;EQ4H1B,yBAAyB;EACzB,gBAAgB;AVykCxB;;AU3qCA;EAoGQ,sBClEQ;EDmER,cRhI0B;AF2sClC;;AUhrCA;EAwGU,yBC3CuB;AXunCjC;;AUprCA;;EA2GU,sBCzEM;ED0EN,yBAAyB;EACzB,gBAAgB;EAChB,cRzIwB;AFutClC;;AU5rCA;EAiHU,0DAA4E;AV+kCtF;;AUhsCA;EAmHQ,6BAA6B;EAC7B,qBR/I0B;EQgJ1B,cRhJ0B;AFiuClC;;AUtsCA;EA0HU,yBRrJwB;EQsJxB,qBRtJwB;EQuJxB,WC1FM;AX0qChB;;AU5sCA;EA+HY,gEAA8D;AVilC1E;;AUhtCA;EAqIc,0DAA4E;AV+kC1F;;AUptCA;;EAwIU,6BAA6B;EAC7B,qBRpKwB;EQqKxB,gBAAgB;EAChB,cRtKwB;AFuvClC;;AU5tCA;EA6IQ,6BAA6B;EAC7B,kBC5GQ;ED6GR,WC7GQ;AXgsChB;;AUluCA;EAoJU,sBClHM;EDmHN,cRhLwB;AFkwClC;;AUvuCA;EA4Jc,gEAA8D;AV+kC5E;;AU3uCA;;EA+JU,6BAA6B;EAC7B,kBC9HM;ED+HN,gBAAgB;EAChB,WChIM;AXitChB;;AUnvCA;EAwKU,yBC/HsC;EDgItC,cCvH2D;AXssCrE;;AUxvCA;EA4KY,yBC/GqB;EDgHrB,yBAAyB;EACzB,cC5HyD;AX4sCrE;;AU9vCA;EAiLY,yBCpHqB;EDqHrB,yBAAyB;EACzB,cCjIyD;AXktCrE;;AUpwCA;EA2EM,yBRxG4B;EQyG5B,yBAAyB;EACzB,WC3CU;AXwuChB;;AU1wCA;EAgFQ,yBCnByB;EDoBzB,yBAAyB;EACzB,WChDQ;AX8uChB;;AUhxCA;EAqFQ,yBAAyB;EACzB,WCpDQ;AXmvChB;;AUrxCA;EAwFU,kDRrHwB;AFszClC;;AUzxCA;EA2FQ,yBC9ByB;ED+BzB,yBAAyB;EACzB,WC3DQ;AX6vChB;;AU/xCA;;EAgGQ,yBR7H0B;EQ8H1B,yBAAyB;EACzB,gBAAgB;AVosCxB;;AUtyCA;EAoGQ,sBClEQ;EDmER,cRlI0B;AFw0ClC;;AU3yCA;EAwGU,yBC3CuB;AXkvCjC;;AU/yCA;;EA2GU,sBCzEM;ED0EN,yBAAyB;EACzB,gBAAgB;EAChB,cR3IwB;AFo1ClC;;AUvzCA;EAiHU,0DAA4E;AV0sCtF;;AU3zCA;EAmHQ,6BAA6B;EAC7B,qBRjJ0B;EQkJ1B,cRlJ0B;AF81ClC;;AUj0CA;EA0HU,yBRvJwB;EQwJxB,qBRxJwB;EQyJxB,WC1FM;AXqyChB;;AUv0CA;EA+HY,gEAA8D;AV4sC1E;;AU30CA;EAqIc,0DAA4E;AV0sC1F;;AU/0CA;;EAwIU,6BAA6B;EAC7B,qBRtKwB;EQuKxB,gBAAgB;EAChB,cRxKwB;AFo3ClC;;AUv1CA;EA6IQ,6BAA6B;EAC7B,kBC5GQ;ED6GR,WC7GQ;AX2zChB;;AU71CA;EAoJU,sBClHM;EDmHN,cRlLwB;AF+3ClC;;AUl2CA;EA4Jc,gEAA8D;AV0sC5E;;AUt2CA;;EA+JU,6BAA6B;EAC7B,kBC9HM;ED+HN,gBAAgB;EAChB,WChIM;AX40ChB;;AU92CA;EAwKU,yBC/HsC;EDgItC,cCvH2D;AXi0CrE;;AUn3CA;EA4KY,yBC/GqB;EDgHrB,yBAAyB;EACzB,cC5HyD;AXu0CrE;;AUz3CA;EAiLY,yBCpHqB;EDqHrB,yBAAyB;EACzB,cCjIyD;AX60CrE;;AU/3CA;EA2EM,yBRzG4B;EQ0G5B,yBAAyB;EACzB,yBC7Ce;AXq2CrB;;AUr4CA;EAgFQ,yBCnByB;EDoBzB,yBAAyB;EACzB,yBClDa;AX22CrB;;AU34CA;EAqFQ,yBAAyB;EACzB,yBCtDa;AXg3CrB;;AUh5CA;EAwFU,kDRtHwB;AFk7ClC;;AUp5CA;EA2FQ,yBC9ByB;ED+BzB,yBAAyB;EACzB,yBC7Da;AX03CrB;;AU15CA;;EAgGQ,yBR9H0B;EQ+H1B,yBAAyB;EACzB,gBAAgB;AV+zCxB;;AUj6CA;EAoGQ,oCCpEa;EDqEb,cRnI0B;AFo8ClC;;AUt6CA;EAwGU,oCC3CuB;AX62CjC;;AU16CA;;EA2GU,oCC3EW;ED4EX,yBAAyB;EACzB,gBAAgB;EAChB,cR5IwB;AFg9ClC;;AUl7CA;EAiHU,sFAA4E;AVq0CtF;;AUt7CA;EAmHQ,6BAA6B;EAC7B,qBRlJ0B;EQmJ1B,cRnJ0B;AF09ClC;;AU57CA;EA0HU,yBRxJwB;EQyJxB,qBRzJwB;EQ0JxB,yBC5FW;AXk6CrB;;AUl8CA;EA+HY,gEAA8D;AVu0C1E;;AUt8CA;EAqIc,sFAA4E;AVq0C1F;;AU18CA;;EAwIU,6BAA6B;EAC7B,qBRvKwB;EQwKxB,gBAAgB;EAChB,cRzKwB;AFg/ClC;;AUl9CA;EA6IQ,6BAA6B;EAC7B,gCC9Ga;ED+Gb,yBC/Ga;AXw7CrB;;AUx9CA;EAoJU,oCCpHW;EDqHX,cRnLwB;AF2/ClC;;AU79CA;EA4Jc,gEAA8D;AVq0C5E;;AUj+CA;;EA+JU,6BAA6B;EAC7B,gCChIW;EDiIX,gBAAgB;EAChB,yBClIW;AXy8CrB;;AUz+CA;EAwKU,yBC/HsC;EDgItC,cCvH2D;AX47CrE;;AU9+CA;EA4KY,yBC/GqB;EDgHrB,yBAAyB;EACzB,cC5HyD;AXk8CrE;;AUp/CA;EAiLY,yBCpHqB;EDqHrB,yBAAyB;EACzB,cCjIyD;AXw8CrE;;AU1/CA;EA2EM,yBRnG2B;EQoG3B,yBAAyB;EACzB,WC3CU;AX89ChB;;AUhgDA;EAgFQ,yBCnByB;EDoBzB,yBAAyB;EACzB,WChDQ;AXo+ChB;;AUtgDA;EAqFQ,yBAAyB;EACzB,WCpDQ;AXy+ChB;;AU3gDA;EAwFU,kDRhHuB;AFuiDjC;;AU/gDA;EA2FQ,yBC9ByB;ED+BzB,yBAAyB;EACzB,WC3DQ;AXm/ChB;;AUrhDA;;EAgGQ,yBRxHyB;EQyHzB,yBAAyB;EACzB,gBAAgB;AV07CxB;;AU5hDA;EAoGQ,sBClEQ;EDmER,cR7HyB;AFyjDjC;;AUjiDA;EAwGU,yBC3CuB;AXw+CjC;;AUriDA;;EA2GU,sBCzEM;ED0EN,yBAAyB;EACzB,gBAAgB;EAChB,cRtIuB;AFqkDjC;;AU7iDA;EAiHU,0DAA4E;AVg8CtF;;AUjjDA;EAmHQ,6BAA6B;EAC7B,qBR5IyB;EQ6IzB,cR7IyB;AF+kDjC;;AUvjDA;EA0HU,yBRlJuB;EQmJvB,qBRnJuB;EQoJvB,WC1FM;AX2hDhB;;AU7jDA;EA+HY,gEAA8D;AVk8C1E;;AUjkDA;EAqIc,0DAA4E;AVg8C1F;;AUrkDA;;EAwIU,6BAA6B;EAC7B,qBRjKuB;EQkKvB,gBAAgB;EAChB,cRnKuB;AFqmDjC;;AU7kDA;EA6IQ,6BAA6B;EAC7B,kBC5GQ;ED6GR,WC7GQ;AXijDhB;;AUnlDA;EAoJU,sBClHM;EDmHN,cR7KuB;AFgnDjC;;AUxlDA;EA4Jc,gEAA8D;AVg8C5E;;AU5lDA;;EA+JU,6BAA6B;EAC7B,kBC9HM;ED+HN,gBAAgB;EAChB,WChIM;AXkkDhB;;AUpmDA;EAwKU,yBC/HsC;EDgItC,cCvH2D;AXujDrE;;AUzmDA;EA4KY,yBC/GqB;EDgHrB,yBAAyB;EACzB,cC5HyD;AX6jDrE;;AU/mDA;EAiLY,yBCpHqB;EDqHrB,yBAAyB;EACzB,cCjIyD;AXmkDrE;;AUrnDA;EATE,kBR6BgB;EQ5BhB,kBRFc;AFooDhB;;AU1nDA;EANE,eRLW;AFyoDb;;AU9nDA;EAJE,kBRRc;AF8oDhB;;AUloDA;EAFE,iBRXa;AFmpDf;;AUtoDA;;EAgMI,uBRjO2B;EQkO3B,qBRvO0B;EQwO1B,gBAtNyB;EAuNzB,YAtNyB;AViqD7B;;AU9oDA;EAqMI,aAAa;EACb,WAAW;AV68Cf;;AUnpDA;EAwMI,6BAA6B;EAC7B,oBAAoB;AV+8CxB;;AUxpDA;ETvCE,kBAAkB;EAKhB,2BAAiC;EACjC,0BAAgC;ES8O9B,6BAA6B;AVk9CnC;;AU/pDA;EA+MI,4BRlP0B;EQmP1B,qBRtP0B;EQuP1B,cRzP0B;EQ0P1B,gBAAgB;EAChB,oBAAoB;AVo9CxB;;AUvqDA;EAqNI,uBR9LqB;EQ+LrB,gCAA0D;EAC1D,iCAA2D;AVs9C/D;;AUp9CA;EACE,mBAAmB;EACnB,aAAa;EACb,eAAe;EACf,2BAA2B;AVu9C7B;;AU39CA;EAMI,qBAAqB;AVy9CzB;;AU/9CA;ETzHI,oBSiIwC;AV29C5C;;AUn+CA;EAUI,sBAAsB;AV69C1B;;AUv+CA;EAYI,mBAAmB;AV+9CvB;;AU3+CA;EAlOE,kBR6BgB;EQ5BhB,kBRFc;AFmtDhB;;AUh/CA;EA7NE,kBRRc;AFytDhB;;AUp/CA;EA3NE,iBRXa;AF8tDf;;AUx/CA;EA0BQ,4BAA4B;EAC5B,yBAAyB;AVk+CjC;;AU7/CA;EA6BQ,6BAA6B;EAC7B,0BAA0B;ETvJ9B,kBSwJwC;AVo+C5C;;AUngDA;ETzHI,eS0JqC;AVs+CzC;;AUvgDA;EAoCQ,UAAU;AVu+ClB;;AU3gDA;EA0CQ,UAAU;AVq+ClB;;AU/gDA;EA4CU,UAAU;AVu+CpB;;AUnhDA;EA8CQ,YAAY;EACZ,cAAc;AVy+CtB;;AUxhDA;EAiDI,uBAAuB;AV2+C3B;;AU5hDA;EAoDQ,oBAAoB;EACpB,qBAAqB;AV4+C7B;;AUjiDA;EAuDI,yBAAyB;AV8+C7B;;AUriDA;EA0DQ,oBAAoB;EACpB,qBAAqB;AV++C7B;;AYhzDA;EACE,YAAY;EACZ,cAAc;EACd,kBAAkB;EAClB,WAAW;AZmzDb;;AYvzDA;EAMI,0BAA0B;EAC1B,kBV2CM;EU1CN,mBV0CM;EUzCN,WAAW;AZqzDf;;AChuDE;EW9FF;IAWI,gBAAuC;EZwzDzC;AACF;;AC5tDI;EWxGJ;IAcM,iBAAqE;EZ2zDzE;AACF;;ACntDI;EWvHJ;IAiBM,iBAAiE;EZ8zDrE;AACF;;ACnuDI;EW7GJ;IAoBM,iBAAqE;EZi0DzE;AACF;;AC1tDI;EW5HJ;IAuBM,iBAAiE;EZo0DrE;AACF;;Aa50DA;EAII,kBAAkB;Ab40DtB;;Aah1DA;;;;;;;EAcM,kBAAkB;Ab40DxB;;Aa11DA;;;;;;EAqBI,cXlC0B;EWmC1B,gBXEiB;EWDjB,kBAxC+B;Abs3DnC;;Aar2DA;EAyBI,cAAc;EACd,oBAAoB;Abg1DxB;;Aa12DA;EA4BM,eAAe;Abk1DrB;;Aa92DA;EA8BI,iBAAiB;EACjB,uBAAuB;Abo1D3B;;Aan3DA;EAiCM,oBAAoB;Abs1D1B;;Aav3DA;EAmCI,gBAAgB;EAChB,uBAAuB;Abw1D3B;;Aa53DA;EAsCM,oBAAoB;Ab01D1B;;Aah4DA;EAwCI,iBAAiB;EACjB,oBAAoB;Ab41DxB;;Aar4DA;EA2CI,kBAAkB;EAClB,uBAAuB;Ab81D3B;;Aa14DA;EA8CI,cAAc;EACd,kBAAkB;Abg2DtB;;Aa/4DA;EAiDI,4BXvD0B;EDmI1B,8BCtI0B;EW4D1B,qBAhEqC;Abk6DzC;;Aar5DA;EAqDI,4BAA4B;EZwE5B,gBYvEmC;EACnC,eAAe;Abo2DnB;;Aa35DA;EAyDM,wBAAwB;Abs2D9B;;Aa/5DA;EA2DQ,4BAA4B;Abw2DpC;;Aan6DA;EA6DQ,4BAA4B;Ab02DpC;;Aav6DA;EA+DQ,4BAA4B;Ab42DpC;;Aa36DA;EAiEQ,4BAA4B;Ab82DpC;;Aa/6DA;EAmEI,wBAAwB;EZ0DxB,gBYzDmC;EACnC,eAAe;Abg3DnB;;Aar7DA;EAuEM,uBAAuB;EACvB,iBAAiB;Abk3DvB;;Aa17DA;EA0EQ,uBAAuB;Abo3D/B;;Aa97DA;EZ6HI,gBYjDmC;Abs3DvC;;Aal8DA;EA8EI,gBAAgB;EAChB,iBAAiB;EACjB,kBAAkB;Abw3DtB;;Aax8DA;EAkFM,eAAe;Ab03DrB;;Aa58DA;EAoFM,kBAAkB;Ab43DxB;;Aah9DA;EAsFM,qBAAqB;Ab83D3B;;Aap9DA;EAwFM,kBAAkB;Abg4DxB;;Aax9DA;EZ2CE,iCAAiC;EYgD/B,gBAAgB;EAChB,qBAvG8B;EAwG9B,gBAAgB;EAChB,iBAAiB;Abk4DrB;;Aah+DA;;EAiGI,cAAc;Abo4DlB;;Aar+DA;EAmGI,WAAW;Abs4Df;;Aaz+DA;;EAsGM,yBX/GwB;EWgHxB,qBA/GmC;EAgHnC,qBA/GmC;EAgHnC,mBAAmB;Abw4DzB;;Aaj/DA;EA2GM,cXxHwB;AFkgE9B;;Aar/DA;EA6GQ,mBAAmB;Ab44D3B;;Aaz/DA;;EAiHQ,qBAtHsC;EAuHtC,cX/HsB;AF4gE9B;;Aa//DA;;EAsHQ,qBAzHsC;EA0HtC,cXpIsB;AFkhE9B;;AargEA;;EA6HY,sBAAsB;Ab64DlC;;Aa1gEA;EAgIM,aAAa;Ab84DnB;;Aa9gEA;EAmII,kBXhHY;AF+/DhB;;AalhEA;EAqII,kBXpHY;AFqgEhB;;AathEA;EAuII,iBXvHW;AF0gEf;;AcxiEA;EACE,mBAAmB;EACnB,oBAAoB;EACpB,uBAAuB;EACvB,cATsB;EAUtB,aAVsB;AdqjExB;;AchjEA;EAQI,YAZwB;EAaxB,WAbwB;AdyjE5B;;AcrjEA;EAWI,YAdyB;EAezB,WAfyB;Ad6jE7B;;Ac1jEA;EAcI,YAhBwB;EAiBxB,WAjBwB;AdikE5B;;AelkEA;EACE,cAAc;EACd,kBAAkB;AfqkEpB;;AevkEA;EAII,cAAc;EACd,YAAY;EACZ,WAAW;AfukEf;;Ae7kEA;EAQM,uBb6DmB;AF4gEzB;;AejlEA;EAUI,WAAW;Af2kEf;;AerlEA;;;;;;;;;;;;;;;;;EA+BM,YAAY;EACZ,WAAW;Af0kEjB;;Ae1mEA;EAmCI,iBAAiB;Af2kErB;;Ae9mEA;EAqCI,gBAAgB;Af6kEpB;;AelnEA;EAuCI,gBAAgB;Af+kEpB;;AetnEA;EAyCI,qBAAqB;AfilEzB;;Ae1nEA;EA2CI,gBAAgB;AfmlEpB;;Ae9nEA;EA6CI,mBAAmB;AfqlEvB;;AeloEA;EA+CI,gBAAgB;AfulEpB;;AetoEA;EAiDI,qBAAqB;AfylEzB;;Ae1oEA;EAmDI,iBAAiB;Af2lErB;;Ae9oEA;EAqDI,sBAAsB;Af6lE1B;;AelpEA;EAuDI,iBAAiB;Af+lErB;;AetpEA;EAyDI,sBAAsB;AfimE1B;;Ae1pEA;EA2DI,sBAAsB;AfmmE1B;;Ae9pEA;EA6DI,iBAAiB;AfqmErB;;AelqEA;EA+DI,iBAAiB;AfumErB;;AetqEA;EAmEM,YAAwB;EACxB,WAAuB;AfumE7B;;Ae3qEA;EAmEM,YAAwB;EACxB,WAAuB;Af4mE7B;;AehrEA;EAmEM,YAAwB;EACxB,WAAuB;AfinE7B;;AerrEA;EAmEM,YAAwB;EACxB,WAAuB;AfsnE7B;;Ae1rEA;EAmEM,YAAwB;EACxB,WAAuB;Af2nE7B;;Ae/rEA;EAmEM,YAAwB;EACxB,WAAuB;AfgoE7B;;AepsEA;EAmEM,aAAwB;EACxB,YAAuB;AfqoE7B;;AgBlsEA;EAEE,4BdE4B;EcD5B,kBdyDU;EcxDV,kBAAkB;EAEhB,sCAXoD;AhB8sExD;;AgBzsEA;EAUI,mBAAmB;EACnB,0BAA0B;AhBmsE9B;;AgB9sEA;EAaI,mBAAmB;AhBqsEvB;;AgBltEA;;EAgBI,iBdV2B;AFitE/B;;AgBvtEA;EAkBI,uBAAuB;AhBysE3B;;AgB3tEA;Ef+II,ae3H4B;EAC5B,kBAAkB;EAClB,WAAW;AhB2sEf;;AgBjuEA;;;EA0BI,mBAAmB;AhB6sEvB;;AgBvuEA;EAgCM,uBd1ByB;Ec2BzB,cdxCuB;AFmvE7B;;AgB5uEA;EAgCM,yBdvCuB;EcwCvB,Yd3ByB;AF2uE/B;;AgBjvEA;EAgCM,4Bd5BwB;Ec6BxB,yBLsCe;AX+qErB;;AgBtvEA;EAgCM,yBdnCwB;EcoCxB,WLwCU;AXkrEhB;;AgB3vEA;EAgCM,yBdrB4B;EcsB5B,WLwCU;AXurEhB;;AgBhwEA;EAuCU,yBLyCsC;EKxCtC,cLiD2D;AX4qErE;;AgBrwEA;EAgCM,yBdnB4B;EcoB5B,WLwCU;AXisEhB;;AgB1wEA;EAuCU,yBLyCsC;EKxCtC,cLiD2D;AXsrErE;;AgB/wEA;EAgCM,yBdpB4B;EcqB5B,WLwCU;AX2sEhB;;AgBpxEA;EAuCU,yBLyCsC;EKxCtC,cLiD2D;AXgsErE;;AgBzxEA;EAgCM,yBdtB4B;EcuB5B,WLwCU;AXqtEhB;;AgB9xEA;EAuCU,yBLyCsC;EKxCtC,cLiD2D;AX0sErE;;AgBnyEA;EAgCM,yBdvB4B;EcwB5B,yBLsCe;AXiuErB;;AgBxyEA;EAuCU,yBLyCsC;EKxCtC,cLiD2D;AXotErE;;AgB7yEA;EAgCM,yBdjB2B;EckB3B,WLwCU;AXyuEhB;;AgBlzEA;EAuCU,yBLyCsC;EKxCtC,cLiD2D;AX8tErE;;AiBxzEA;EAEE,qBAAqB;EACrB,wBAAwB;EACxB,YAAY;EACZ,uBf0DuB;EezDvB,cAAc;EACd,YfsBW;EerBX,gBAAgB;EAChB,UAAU;EACV,WAAW;AjB0zEb;;AiBp0EA;EAYI,yBfT2B;AFq0E/B;;AiBx0EA;EAcI,yBff0B;AF60E9B;;AiB50EA;EAgBI,yBfjB0B;AFi1E9B;;AiBh1EA;EAkBI,yBfnB0B;EeoB1B,YAAY;AjBk0EhB;;AiBr1EA;EAyBQ,uBflBuB;AFk1E/B;;AiBz1EA;EA2BQ,uBfpBuB;AFs1E/B;;AiB71EA;EA6BQ,uBftBuB;AF01E/B;;AiBj2EA;EA+BQ,mEAA2F;AjBs0EnG;;AiBr2EA;EAyBQ,yBf/BqB;AF+2E7B;;AiBz2EA;EA2BQ,yBfjCqB;AFm3E7B;;AiB72EA;EA6BQ,yBfnCqB;AFu3E7B;;AiBj3EA;EA+BQ,qEAA2F;AjBs1EnG;;AiBr3EA;EAyBQ,4BfpBsB;AFo3E9B;;AiBz3EA;EA2BQ,4BftBsB;AFw3E9B;;AiB73EA;EA6BQ,4BfxBsB;AF43E9B;;AiBj4EA;EA+BQ,wEAA2F;AjBs2EnG;;AiBr4EA;EAyBQ,yBf3BsB;AF24E9B;;AiBz4EA;EA2BQ,yBf7BsB;AF+4E9B;;AiB74EA;EA6BQ,yBf/BsB;AFm5E9B;;AiBj5EA;EA+BQ,qEAA2F;AjBs3EnG;;AiBr5EA;EAyBQ,yBfb0B;AF64ElC;;AiBz5EA;EA2BQ,yBff0B;AFi5ElC;;AiB75EA;EA6BQ,yBfjB0B;AFq5ElC;;AiBj6EA;EA+BQ,qEAA2F;AjBs4EnG;;AiBr6EA;EAyBQ,yBfX0B;AF25ElC;;AiBz6EA;EA2BQ,yBfb0B;AF+5ElC;;AiB76EA;EA6BQ,yBff0B;AFm6ElC;;AiBj7EA;EA+BQ,qEAA2F;AjBs5EnG;;AiBr7EA;EAyBQ,yBfZ0B;AF46ElC;;AiBz7EA;EA2BQ,yBfd0B;AFg7ElC;;AiB77EA;EA6BQ,yBfhB0B;AFo7ElC;;AiBj8EA;EA+BQ,qEAA2F;AjBs6EnG;;AiBr8EA;EAyBQ,yBfd0B;AF87ElC;;AiBz8EA;EA2BQ,yBfhB0B;AFk8ElC;;AiB78EA;EA6BQ,yBflB0B;AFs8ElC;;AiBj9EA;EA+BQ,qEAA2F;AjBs7EnG;;AiBr9EA;EAyBQ,yBff0B;AF+8ElC;;AiBz9EA;EA2BQ,yBfjB0B;AFm9ElC;;AiB79EA;EA6BQ,yBfnB0B;AFu9ElC;;AiBj+EA;EA+BQ,qEAA2F;AjBs8EnG;;AiBr+EA;EAyBQ,yBfTyB;AFy9EjC;;AiBz+EA;EA2BQ,yBfXyB;AF69EjC;;AiB7+EA;EA6BQ,yBfbyB;AFi+EjC;;AiBj/EA;EA+BQ,qEAA2F;AjBs9EnG;;AiBr/EA;EAkCI,gCAtCkC;UAsClC,wBAtCkC;EAuClC,2CAAmC;UAAnC,mCAAmC;EACnC,yCAAiC;UAAjC,iCAAiC;EACjC,yCAAiC;UAAjC,iCAAiC;EACjC,yBfnC2B;EeoC3B,qEAA0F;EAC1F,6BAA6B;EAC7B,4BAA4B;EAC5B,0BAA0B;AjBu9E9B;;AiBjgFA;EA4CM,6BAA6B;AjBy9EnC;;AiBrgFA;EA8CM,6BAA6B;AjB29EnC;;AiBzgFA;EAgDM,oBAAoB;AjB69E1B;;AiB7gFA;EAoDI,eftBY;AFm/EhB;;AiBjhFA;EAsDI,ef1BY;AFy/EhB;;AiBrhFA;EAwDI,cf7BW;AF8/Ef;;AiB/9EA;EACE;IACE,2BAA2B;EjBk+E7B;EiBj+EA;IACE,4BAA4B;EjBm+E9B;AACF;;AiBx+EA;EACE;IACE,2BAA2B;EjBk+E7B;EiBj+EA;IACE,4BAA4B;EjBm+E9B;AACF;;AkB/gFA;EAEE,uBhBd6B;EgBe7B,chBxB4B;AFyiF9B;;AkBphFA;;EAMI,yBhBvB0B;EgBwB1B,qBA9B6B;EA+B7B,qBA9B6B;EA+B7B,mBAAmB;AlBmhFvB;;AkB5hFA;;EAeQ,uBhB3BuB;EgB4BvB,mBhB5BuB;EgB6BvB,chB1CqB;AF4jF7B;;AkBniFA;;EAeQ,yBhBxCqB;EgByCrB,qBhBzCqB;EgB0CrB,YhB7BuB;AFsjF/B;;AkB1iFA;;EAeQ,4BhB7BsB;EgB8BtB,wBhB9BsB;EgB+BtB,yBPoCa;AX4/ErB;;AkBjjFA;;EAeQ,yBhBpCsB;EgBqCtB,qBhBrCsB;EgBsCtB,WPsCQ;AXigFhB;;AkBxjFA;;EAeQ,yBhBtB0B;EgBuB1B,qBhBvB0B;EgBwB1B,WPsCQ;AXwgFhB;;AkB/jFA;;EAeQ,yBhBpB0B;EgBqB1B,qBhBrB0B;EgBsB1B,WPsCQ;AX+gFhB;;AkBtkFA;;EAeQ,yBhBrB0B;EgBsB1B,qBhBtB0B;EgBuB1B,WPsCQ;AXshFhB;;AkB7kFA;;EAeQ,yBhBvB0B;EgBwB1B,qBhBxB0B;EgByB1B,WPsCQ;AX6hFhB;;AkBplFA;;EAeQ,yBhBxB0B;EgByB1B,qBhBzB0B;EgB0B1B,yBPoCa;AXsiFrB;;AkB3lFA;;EAeQ,yBhBlByB;EgBmBzB,qBhBnByB;EgBoBzB,WPsCQ;AX2iFhB;;AkBlmFA;;EAoBM,mBAAmB;EACnB,SAAS;AlBmlFf;;AkBxmFA;;EAuBM,yBhB9B4B;EgB+B5B,WP+BU;AXujFhB;;AkB9mFA;;;;EA2BQ,mBAAmB;AlB0lF3B;;AkBrnFA;;EA6BM,sBAAsB;AlB6lF5B;;AkB1nFA;EA+BI,chBpD0B;AFmpF9B;;AkB9nFA;EAiCM,mBAAmB;AlBimFzB;;AkBloFA;EAoCM,yBhB3C4B;EgB4C5B,WPkBU;AXglFhB;;AkBvoFA;;EAwCQ,mBAAmB;AlBomF3B;;AkB5oFA;;EA2CQ,kBPYQ;EOXR,mBAAmB;AlBsmF3B;;AkBlpFA;EA8CI,6BA5DqC;AlBoqFzC;;AkBtpFA;;EAiDM,qBApEgC;EAqEhC,chBvEwB;AFirF9B;;AkB5pFA;EAoDI,6BAhEqC;AlB4qFzC;;AkBhqFA;;EAuDM,qBAxEgC;EAyEhC,chB7EwB;AF2rF9B;;AkBtqFA;EA0DI,6BAvEqC;AlBurFzC;;AkB1qFA;;EA+DU,sBAAsB;AlBgnFhC;;AkB/qFA;;EAoEM,iBAAiB;AlBgnFvB;;AkBprFA;;EAyEU,wBAAwB;AlBgnFlC;;AkBzrFA;EA2EI,WAAW;AlBknFf;;AkB7rFA;EAgFU,yBhB7FoB;AF8sF9B;;AkBjsFA;EAqFY,yBhBlGkB;AFktF9B;;AkBrsFA;EAuFc,4BhBrGgB;AFutF9B;;AkBzsFA;;EA2FM,qBAAqB;AlBmnF3B;;AkB9sFA;EAgGU,yBhB7GoB;AF+tF9B;;AkBhnFA;EjB/DE,iCAAiC;EiBkEjC,cAAc;EACd,kBAAkB;EAClB,eAAe;AlBknFjB;;AmB7uFA;EACE,mBAAmB;EACnB,aAAa;EACb,eAAe;EACf,2BAA2B;AnBgvF7B;;AmBpvFA;EAMI,qBAAqB;AnBkvFzB;;AmBxvFA;ElByII,oBkBjIwC;AnBovF5C;;AmB5vFA;EAUI,sBAAsB;AnBsvF1B;;AmBhwFA;EAYI,mBAAmB;AnBwvFvB;;AmBpwFA;EAgBM,ejBcO;AF0uFb;;AmBxwFA;EAmBM,kBjBUU;AF+uFhB;;AmB5wFA;EAqBI,uBAAuB;AnB2vF3B;;AmBhxFA;EAuBM,qBAAqB;EACrB,oBAAoB;AnB6vF1B;;AmBrxFA;EA0BI,yBAAyB;AnB+vF7B;;AmBzxFA;EA6BQ,mBAAmB;AnBgwF3B;;AmB7xFA;EA+BQ,eAAe;AnBkwFvB;;AmBjyFA;ElByII,ekBvGmC;AnBmwFvC;;AmBryFA;ElByII,ckBrGqC;EAE/B,yBAAyB;EACzB,4BAA4B;AnBowFtC;;AmB3yFA;EA6CU,0BAA0B;EAC1B,6BAA6B;AnBkwFvC;;AmB7vFA;EACE,mBAAmB;EACnB,4BjB/C4B;EiBgD5B,kBjBQU;EiBPV,cjBvD4B;EiBwD5B,oBAAoB;EACpB,kBjB1Bc;EiB2Bd,WAAW;EACX,uBAAuB;EACvB,gBAAgB;EAChB,oBAAoB;EACpB,qBAAqB;EACrB,mBAAmB;AnBgwFrB;;AmB5wFA;ElBsFI,oBkBxEuC;ElBwEvC,uBkBvEyC;AnBkwF7C;;AmBjxFA;EAqBM,uBjBhEyB;EiBiEzB,cjB9EuB;AF80F7B;;AmBtxFA;EAqBM,yBjB7EuB;EiB8EvB,YjBjEyB;AFs0F/B;;AmB3xFA;EAqBM,4BjBlEwB;EiBmExB,yBRAe;AX0wFrB;;AmBhyFA;EAqBM,yBjBzEwB;EiB0ExB,WREU;AX6wFhB;;AmBryFA;EAqBM,yBjB3D4B;EiB4D5B,WREU;AXkxFhB;;AmB1yFA;EA4BU,yBRGsC;EQFtC,cRW2D;AXuwFrE;;AmB/yFA;EAqBM,yBjBzD4B;EiB0D5B,WREU;AX4xFhB;;AmBpzFA;EA4BU,yBRGsC;EQFtC,cRW2D;AXixFrE;;AmBzzFA;EAqBM,yBjB1D4B;EiB2D5B,WREU;AXsyFhB;;AmB9zFA;EA4BU,yBRGsC;EQFtC,cRW2D;AX2xFrE;;AmBn0FA;EAqBM,yBjB5D4B;EiB6D5B,WREU;AXgzFhB;;AmBx0FA;EA4BU,yBRGsC;EQFtC,cRW2D;AXqyFrE;;AmB70FA;EAqBM,yBjB7D4B;EiB8D5B,yBRAe;AX4zFrB;;AmBl1FA;EA4BU,yBRGsC;EQFtC,cRW2D;AX+yFrE;;AmBv1FA;EAqBM,yBjBvD2B;EiBwD3B,WREU;AXo0FhB;;AmB51FA;EA4BU,yBRGsC;EQFtC,cRW2D;AXyzFrE;;AmBj2FA;EAgCI,kBjBpDY;AFy3FhB;;AmBr2FA;EAkCI,ejBvDS;AF83Fb;;AmBz2FA;EAoCI,kBjB1DY;AFm4FhB;;AmB72FA;ElBsFI,qBkB/C0C;ElB+C1C,sBkB9C0C;AnB00F9C;;AmBl3FA;ElBsFI,qBkB5C0C;ElB4C1C,sBkB3C0C;AnB40F9C;;AmBv3FA;ElBsFI,qBkBzC0C;ElByC1C,sBkBxC0C;AnB80F9C;;AmB53FA;ElBsFI,gBkB7ImB;EAyGnB,UAAU;EACV,kBAAkB;EAClB,UAAU;AnB+0Fd;;AmBn4FA;EAuDM,8BAA8B;EAC9B,WAAW;EACX,cAAc;EACd,SAAS;EACT,kBAAkB;EAClB,QAAQ;EACR,0DAA0D;EAC1D,+BAA+B;AnBg1FrC;;AmB94FA;EAgEM,WAAW;EACX,UAAU;AnBk1FhB;;AmBn5FA;EAmEM,WAAW;EACX,UAAU;AnBo1FhB;;AmBx5FA;EAuEM,yBAAmD;AnBq1FzD;;AmB55FA;EAyEM,yBAAoD;AnBu1F1D;;AmBh6FA;EA2EI,uBjB9DqB;AFu5FzB;;AmBv1FA;EAEI,0BAA0B;AnBy1F9B;;AoB/8FA;;EAGE,sBAAsB;ApBi9FxB;;AoBp9FA;;;;EAMI,oBAAoB;ApBq9FxB;;AoB39FA;;EAQI,iBApBmB;ApB4+FvB;;AoBh+FA;;EAUI,iBArBmB;ApBg/FvB;;AoBr+FA;;EAYI,sBAAsB;ApB89F1B;;AoB59FA;EACE,clB5B4B;EkB+B5B,elBHW;EkBIX,gBlBKmB;EkBJnB,kBAnCuB;ApBggGzB;;AoBn+FA;EAQI,cApCwB;EAqCxB,oBApCyB;ApBmgG7B;;AoBx+FA;EAWI,oBAAoB;ApBi+FxB;;AoB5+FA;EAaI,oBA7B+B;ApBggGnC;;AoBh/FA;EAkBM,elBnBO;AFq/Fb;;AoBp/FA;EAkBM,iBlBlBS;AFw/Ff;;AoBx/FA;EAkBM,elBjBO;AF2/Fb;;AoB5/FA;EAkBM,iBlBhBS;AF8/Ff;;AoBhgGA;EAkBM,kBlBfU;AFigGhB;;AoBpgGA;EAkBM,elBdO;AFogGb;;AoBxgGA;EAkBM,kBlBbU;AFugGhB;;AoBx/FA;EACE,clB/C4B;EkBkD5B,kBlBrBc;EkBsBd,gBlBjBiB;EkBkBjB,iBA7CyB;ApBsiG3B;;AoB//FA;EAQI,clBvD0B;EkBwD1B,gBlBnBiB;AF8gGrB;;AoBpgGA;EAWI,oBA/C+B;ApB4iGnC;;AoBxgGA;EAgBM,elBrCO;AFiiGb;;AoB5gGA;EAgBM,iBlBpCS;AFoiGf;;AoBhhGA;EAgBM,elBnCO;AFuiGb;;AoBphGA;EAgBM,iBlBlCS;AF0iGf;;AoBxhGA;EAgBM,kBlBjCU;AF6iGhB;;AoB5hGA;EAgBM,elBhCO;AFgjGb;;AoBhiGA;EAgBM,kBlB/BU;AFmjGhB;;AqBnlGA;EACE,cAAc;EACd,eAAe;EACf,mBAAmB;EACnB,kBAAkB;EAClB,yBAAyB;ArBslG3B;;AqBplGA;EAEE,gBnB0BiB;EmBzBjB,eAAe;EACf,gBAAgB;EAChB,UAAU;ArBslGZ;;AqB3lGA;EAOI,cAAc;EACd,eAAe;ArBwlGnB;;AqBnlGA;EACE,mBAAmB;EACnB,4BnBf4B;EmBgB5B,uBnB0CuB;EmBzCvB,oBAAoB;EACpB,kBnBKc;EmBJd,WAAW;EACX,uBAAuB;EACvB,oBAAoB;EACpB,gBAAgB;EAChB,uBAAuB;EACvB,kBAAkB;EAClB,mBAAmB;ArBslGrB;;AsB5nGA,eAAA;ACuDA;EAxBE,uBrBhB6B;EqBiB7B,qBrBtB4B;EqBuB5B,kBrBoCU;EqBnCV,crB5B4B;AF8nG9B;;ACjkGI;EsB/BA,4BrB9B0B;AFkoG9B;;ACrkGI;EsB/BA,4BrB9B0B;AFsoG9B;;ACzkGI;EsB/BA,4BrB9B0B;AF0oG9B;;AC7kGI;EsB/BA,4BrB9B0B;AF8oG9B;;AuB/mGE;EAEE,qBrB9B0B;AF+oG9B;;AuBhnGE;EAIE,qBrBtB8B;EqBuB9B,kDrBvB8B;AFuoGlC;;AuB/mGE;;;;;EAEE,4BrBnC0B;EqBoC1B,wBrBpC0B;EqBqC1B,gBAAgB;EAChB,crB3C0B;AFgqG9B;;ACrmGI;;;;;EsBdE,+BrB7CwB;AFwqG9B;;AC7mGI;;;;;EsBdE,+BrB7CwB;AFgrG9B;;ACrnGI;;;;;EsBdE,+BrB7CwB;AFwrG9B;;AC7nGI;;;;;EsBdE,+BrB7CwB;AFgsG9B;;AwBlsGA;EAEE,2DtBN2B;EsBO3B,eAAe;EACf,WAAW;AxBosGb;;AwBnsGE;EACE,gBAAgB;AxBssGpB;;AwBlsGI;EACE,mBtBFyB;AFusG/B;;AwBtsGK;EAMG,mDtBPuB;AF2sG/B;;AwB1sGI;EACE,qBtBfuB;AF4tG7B;;AwB9sGK;EAMG,gDtBpBqB;AFguG7B;;AwBltGI;EACE,wBtBJwB;AFytG9B;;AwBttGK;EAMG,mDtBTsB;AF6tG9B;;AwB1tGI;EACE,qBtBXwB;AFwuG9B;;AwB9tGK;EAMG,gDtBhBsB;AF4uG9B;;AwBluGI;EACE,qBtBG4B;AFkuGlC;;AwBtuGK;EAMG,iDtBF0B;AFsuGlC;;AwB1uGI;EACE,qBtBK4B;AFwuGlC;;AwB9uGK;EAMG,kDtBA0B;AF4uGlC;;AwBlvGI;EACE,qBtBI4B;AFivGlC;;AwBtvGK;EAMG,kDtBD0B;AFqvGlC;;AwB1vGI;EACE,qBtBE4B;AF2vGlC;;AwB9vGK;EAMG,kDtBH0B;AF+vGlC;;AwBlwGI;EACE,qBtBC4B;AFowGlC;;AwBtwGK;EAMG,kDtBJ0B;AFwwGlC;;AwB1wGI;EACE,qBtBO2B;AFswGjC;;AwB9wGK;EAMG,kDtBEyB;AF0wGjC;;AwB1wGE;ErBoBA,kBDwBgB;ECvBhB,kBDPc;AFiwGhB;;AwB7wGE;ErBqBA,kBDXc;AFuwGhB;;AwB/wGE;ErBqBA,iBDda;AF4wGf;;AwBhxGE;EACE,cAAc;EACd,WAAW;AxBmxGf;;AwBlxGE;EACE,eAAe;EACf,WAAW;AxBqxGf;;AwBnxGA;EAGI,uBtB8BqB;EsB7BrB,gDAA4D;EAC5D,iDAA6D;AxBoxGjE;;AwBzxGA;EAOI,6BAA6B;EAC7B,yBAAyB;EACzB,gBAAgB;EAChB,eAAe;EACf,gBAAgB;AxBsxGpB;;AwBpxGA;EAEE,cAAc;EACd,eAAe;EACf,eAAe;EACf,2BrB/CkE;EqBgDlE,gBAAgB;AxBsxGlB;;AwB5xGA;EAQI,gBA1DsB;EA2DtB,eA1DqB;AxBk1GzB;;AwBjyGA;EAWI,eAAe;AxB0xGnB;;AwBryGA;EAcI,YAAY;AxB2xGhB;;AyB51GA;EACE,eAAe;EACf,qBAAqB;EACrB,iBAAiB;EACjB,kBAAkB;AzB+1GpB;;AyB91GE;EACE,eAAe;AzBi2GnB;;AyBh2GE;EACE,cvBF0B;AFq2G9B;;AyBl2GE;;;;;EAGE,cvBJ0B;EuBK1B,mBAAmB;AzBu2GvB;;AyBl2GA;ExB8HI,kBwB3HqC;AzBm2GzC;;A0Bt3GA;EACE,qBAAqB;EACrB,eAAe;EACf,kBAAkB;EAClB,mBAAmB;A1By3GrB;;A0B73GA;EAMI,avBHkB;AH83GtB;;A0Bj4GA;EAUM,qBxBU4B;EDkI9B,cyB3I+B;EAC7B,UAAU;A1B23GhB;;A0Bv4GA;EAeM,uBxBsDmB;EDyErB,iByB9HsC;A1B43G1C;;A0B54GA;EAmBI,eAAe;EACf,cAAc;EACd,cAAc;EACd,eAAe;EACf,aAAa;A1B63GjB;;A0Bp5GA;EAyBM,aAAa;A1B+3GnB;;A0Bx5GA;;EA4BM,wBxBjBwB;AFk5G9B;;A0B75GA;EzB8II,oByBhHwC;A1Bm4G5C;;A0Bj6GA;EAgCM,YAAY;EACZ,UAAU;A1Bq4GhB;;A0Bt6GA;EAmCQ,kBAAkB;A1Bu4G1B;;A0B16GA;EAuCM,qBxBnCwB;AF06G9B;;A0B96GA;EA6CQ,mBxBhCuB;AFq6G/B;;A0Bl7GA;EA+CQ,mBxBlCuB;AFy6G/B;;A0Bt7GA;EAkDU,qBfyDuB;AX+0GjC;;A0B17GA;EAuDU,mDxB1CqB;AFi7G/B;;A0B97GA;EA6CQ,qBxB7CqB;AFk8G7B;;A0Bl8GA;EA+CQ,qBxB/CqB;AFs8G7B;;A0Bt8GA;EAkDU,mBfyDuB;AX+1GjC;;A0B18GA;EAuDU,gDxBvDmB;AF88G7B;;A0B98GA;EA6CQ,wBxBlCsB;AFu8G9B;;A0Bl9GA;EA+CQ,wBxBpCsB;AF28G9B;;A0Bt9GA;EAkDU,qBfyDuB;AX+2GjC;;A0B19GA;EAuDU,mDxB5CoB;AFm9G9B;;A0B99GA;EA6CQ,qBxBzCsB;AF89G9B;;A0Bl+GA;EA+CQ,qBxB3CsB;AFk+G9B;;A0Bt+GA;EAkDU,qBfyDuB;AX+3GjC;;A0B1+GA;EAuDU,gDxBnDoB;AF0+G9B;;A0B9+GA;EA6CQ,qBxB3B0B;AFg+GlC;;A0Bl/GA;EA+CQ,qBxB7B0B;AFo+GlC;;A0Bt/GA;EAkDU,qBfyDuB;AX+4GjC;;A0B1/GA;EAuDU,iDxBrCwB;AF4+GlC;;A0B9/GA;EA6CQ,qBxBzB0B;AF8+GlC;;A0BlgHA;EA+CQ,qBxB3B0B;AFk/GlC;;A0BtgHA;EAkDU,qBfyDuB;AX+5GjC;;A0B1gHA;EAuDU,kDxBnCwB;AF0/GlC;;A0B9gHA;EA6CQ,qBxB1B0B;AF+/GlC;;A0BlhHA;EA+CQ,qBxB5B0B;AFmgHlC;;A0BthHA;EAkDU,qBfyDuB;AX+6GjC;;A0B1hHA;EAuDU,kDxBpCwB;AF2gHlC;;A0B9hHA;EA6CQ,qBxB5B0B;AFihHlC;;A0BliHA;EA+CQ,qBxB9B0B;AFqhHlC;;A0BtiHA;EAkDU,qBfyDuB;AX+7GjC;;A0B1iHA;EAuDU,kDxBtCwB;AF6hHlC;;A0B9iHA;EA6CQ,qBxB7B0B;AFkiHlC;;A0BljHA;EA+CQ,qBxB/B0B;AFsiHlC;;A0BtjHA;EAkDU,qBfyDuB;AX+8GjC;;A0B1jHA;EAuDU,kDxBvCwB;AF8iHlC;;A0B9jHA;EA6CQ,qBxBvByB;AF4iHjC;;A0BlkHA;EA+CQ,qBxBzByB;AFgjHjC;;A0BtkHA;EAkDU,qBfyDuB;AX+9GjC;;A0B1kHA;EAuDU,kDxBjCuB;AFwjHjC;;A0B9kHA;EvB0CE,kBDwBgB;ECvBhB,kBDPc;AF+iHhB;;A0BnlHA;EvB6CE,kBDXc;AFqjHhB;;A0BvlHA;EvB+CE,iBDda;AF0jHf;;A0B3lHA;EAkEM,qBxB5DwB;AFylH9B;;A0B/lHA;EAoEI,WAAW;A1B+hHf;;A0BnmHA;EAsEM,WAAW;A1BiiHjB;;A0BvmHA;EA0EM,aAAa;EACb,kBAAkB;EzB2EpB,cyB1E+B;EAC7B,YAAY;EACZ,eAAe;A1BiiHrB;;A0B/mHA;EAgFM,kBxB5CU;AF+kHhB;;A0BnnHA;EAkFM,kBxBhDU;AFqlHhB;;A0BvnHA;EAoFM,iBxBnDS;AF0lHf;;A2B9mHA;EAEE,oBAAoB;EACpB,aAAa;EACb,2BAA2B;EAC3B,kBAAkB;A3BgnHpB;;A2BrnHA;EAYQ,uBzBZuB;EyBavB,yBAAyB;EACzB,czB3BqB;AFwoH7B;;A2B3nHA;EAkBU,yBhB4EuB;EgB3EvB,yBAAyB;EACzB,czBjCmB;AF8oH7B;;A2BjoHA;EAwBU,yBAAyB;EACzB,+CzBzBqB;EyB0BrB,czBvCmB;AFopH7B;;A2BvoHA;EA8BU,yBhBgEuB;EgB/DvB,yBAAyB;EACzB,czB7CmB;AF0pH7B;;A2B7oHA;EAYQ,yBzBzBqB;EyB0BrB,yBAAyB;EACzB,YzBduB;AFmpH/B;;A2BnpHA;EAkBU,yBhB4EuB;EgB3EvB,yBAAyB;EACzB,YzBpBqB;AFypH/B;;A2BzpHA;EAwBU,yBAAyB;EACzB,4CzBtCmB;EyBuCnB,YzB1BqB;AF+pH/B;;A2B/pHA;EA8BU,uBhBgEuB;EgB/DvB,yBAAyB;EACzB,YzBhCqB;AFqqH/B;;A2BrqHA;EAYQ,4BzBdsB;EyBetB,yBAAyB;EACzB,yBhBmDa;AX0mHrB;;A2B3qHA;EAkBU,yBhB4EuB;EgB3EvB,yBAAyB;EACzB,yBhB6CW;AXgnHrB;;A2BjrHA;EAwBU,yBAAyB;EACzB,+CzB3BoB;EyB4BpB,yBhBuCW;AXsnHrB;;A2BvrHA;EA8BU,yBhBgEuB;EgB/DvB,yBAAyB;EACzB,yBhBiCW;AX4nHrB;;A2B7rHA;EAYQ,yBzBrBsB;EyBsBtB,yBAAyB;EACzB,WhBqDQ;AXgoHhB;;A2BnsHA;EAkBU,yBhB4EuB;EgB3EvB,yBAAyB;EACzB,WhB+CM;AXsoHhB;;A2BzsHA;EAwBU,yBAAyB;EACzB,4CzBlCoB;EyBmCpB,WhByCM;AX4oHhB;;A2B/sHA;EA8BU,yBhBgEuB;EgB/DvB,yBAAyB;EACzB,WhBmCM;AXkpHhB;;A2BrtHA;EAYQ,yBzBP0B;EyBQ1B,yBAAyB;EACzB,WhBqDQ;AXwpHhB;;A2B3tHA;EAkBU,yBhB4EuB;EgB3EvB,yBAAyB;EACzB,WhB+CM;AX8pHhB;;A2BjuHA;EAwBU,yBAAyB;EACzB,6CzBpBwB;EyBqBxB,WhByCM;AXoqHhB;;A2BvuHA;EA8BU,yBhBgEuB;EgB/DvB,yBAAyB;EACzB,WhBmCM;AX0qHhB;;A2B7uHA;EAYQ,yBzBL0B;EyBM1B,yBAAyB;EACzB,WhBqDQ;AXgrHhB;;A2BnvHA;EAkBU,yBhB4EuB;EgB3EvB,yBAAyB;EACzB,WhB+CM;AXsrHhB;;A2BzvHA;EAwBU,yBAAyB;EACzB,8CzBlBwB;EyBmBxB,WhByCM;AX4rHhB;;A2B/vHA;EA8BU,yBhBgEuB;EgB/DvB,yBAAyB;EACzB,WhBmCM;AXksHhB;;A2BrwHA;EAYQ,yBzBN0B;EyBO1B,yBAAyB;EACzB,WhBqDQ;AXwsHhB;;A2B3wHA;EAkBU,yBhB4EuB;EgB3EvB,yBAAyB;EACzB,WhB+CM;AX8sHhB;;A2BjxHA;EAwBU,yBAAyB;EACzB,8CzBnBwB;EyBoBxB,WhByCM;AXotHhB;;A2BvxHA;EA8BU,yBhBgEuB;EgB/DvB,yBAAyB;EACzB,WhBmCM;AX0tHhB;;A2B7xHA;EAYQ,yBzBR0B;EyBS1B,yBAAyB;EACzB,WhBqDQ;AXguHhB;;A2BnyHA;EAkBU,yBhB4EuB;EgB3EvB,yBAAyB;EACzB,WhB+CM;AXsuHhB;;A2BzyHA;EAwBU,yBAAyB;EACzB,8CzBrBwB;EyBsBxB,WhByCM;AX4uHhB;;A2B/yHA;EA8BU,yBhBgEuB;EgB/DvB,yBAAyB;EACzB,WhBmCM;AXkvHhB;;A2BrzHA;EAYQ,yBzBT0B;EyBU1B,yBAAyB;EACzB,yBhBmDa;AX0vHrB;;A2B3zHA;EAkBU,yBhB4EuB;EgB3EvB,yBAAyB;EACzB,yBhB6CW;AXgwHrB;;A2Bj0HA;EAwBU,yBAAyB;EACzB,8CzBtBwB;EyBuBxB,yBhBuCW;AXswHrB;;A2Bv0HA;EA8BU,yBhBgEuB;EgB/DvB,yBAAyB;EACzB,yBhBiCW;AX4wHrB;;A2B70HA;EAYQ,yBzBHyB;EyBIzB,yBAAyB;EACzB,WhBqDQ;AXgxHhB;;A2Bn1HA;EAkBU,yBhB4EuB;EgB3EvB,yBAAyB;EACzB,WhB+CM;AXsxHhB;;A2Bz1HA;EAwBU,yBAAyB;EACzB,8CzBhBuB;EyBiBvB,WhByCM;AX4xHhB;;A2B/1HA;EA8BU,yBhBgEuB;EgB/DvB,yBAAyB;EACzB,WhBmCM;AXkyHhB;;A2Br2HA;EAmCI,kBzBZY;AFk1HhB;;A2Bz2HA;EAqCI,kBzBhBY;AFw1HhB;;A2B72HA;EAwCQ,eAAe;A3By0HvB;;A2Bj3HA;EA0CI,iBzBtBW;AFi2Hf;;A2Br3HA;EA6CQ,eAAe;A3B40HvB;;A2Bz3HA;EAiDM,6BAA6B;EAC7B,0BAA0B;A3B40HhC;;A2B93HA;EAoDM,4BAA4B;EAC5B,yBAAyB;A3B80H/B;;A2Bn4HA;EAwDQ,kBzBFI;AFi1HZ;;A2Bv4HA;EA0DQ,aAAa;A3Bi1HrB;;A2B34HA;EA6DM,sBAAsB;A3Bk1H5B;;A2B/4HA;EA+DM,sBAAsB;EACtB,YAAY;EACZ,gBAAgB;A3Bo1HtB;;A2Br5HA;EAmEM,uBAAuB;A3Bs1H7B;;A2Bz5HA;EAqEM,aAAa;EACb,YAAY;A3Bw1HlB;;A2B95HA;EAwEQ,eAAe;A3B01HvB;;A2Bl6HA;EA2EQ,eAAe;A3B21HvB;;A2Bt6HA;EA8EQ,eAAe;A3B41HvB;;A2B16HA;EAiFQ,eAAe;A3B61HvB;;A2B96HA;EAoFQ,0BAA4C;A3B81HpD;;A2Bl7HA;EAsFQ,0BzBhCI;EyBiCJ,uBAAuB;A3Bg2H/B;;A2Bv7HA;EAyFI,uBAAuB;A3Bk2H3B;;A2B37HA;EA4FM,WAAW;A3Bm2HjB;;A2B/7HA;EA8FM,YAAY;EACZ,eAAe;A3Bq2HrB;;A2Bp8HA;EAiGI,yBAAyB;A3Bu2H7B;;A2Bx8HA;EAmGM,0BAA4C;A3By2HlD;;A2B58HA;EAqGM,0BzB/CM;EyBgDN,2BAA2B;EAC3B,SAAS;A3B22Hf;;A2Bz2HA;EACE,oBAAoB;EACpB,aAAa;EACb,eAAe;EACf,2BAA2B;EAC3B,gBAAgB;EAChB,kBAAkB;A3B42HpB;;A2Bl3HA;EASM,yBhBpB2B;EgBqB3B,czB5HwB;AFy+H9B;;A2Bv3HA;EAYM,qBhBvB2B;AXs4HjC;;A2B33HA;EAeM,yBhB1B2B;EgB2B3B,czBlIwB;AFk/H9B;;A2Bh4HA;EAkBM,qBhB7B2B;AX+4HjC;;A2Bh3HA;EACE,YAAY;EACZ,OAAO;EACP,UAAU;EACV,aAAa;EACb,kBAAkB;EAClB,MAAM;EACN,WAAW;A3Bm3Hb;;A2Bj3HA;;EAGE,qBzB9I4B;EyB+I5B,kBzBpFU;EyBqFV,cAAc;EACd,iBAAiB;EACjB,kBAAkB;EAClB,mBAAmB;A3Bm3HrB;;A2Bj3HA;EACE,4BzBnJ4B;EyBoJ5B,czB1J4B;AF8gI9B;;A2Bl3HA;EACE,qBzB1J4B;EyB2J5B,mBA5J4B;EA6J5B,2BA5JoC;EA6JpC,cAAc;EACd,eA7JwB;EA8JxB,gBAAgB;EAChB,mBAAmB;EACnB,uBAAuB;A3Bq3HzB;;A2Bn3HA;EACE,mBAAmB;EACnB,aAAa;EACb,WAAW;EACX,uBAAuB;E1BjCrB,mB0BkCmC;EACrC,UAAU;A3Bs3HZ;;A2B53HA;EAQI,eAAe;A3Bw3HnB;;A4BtiIA;EACE,c1BF4B;E0BG5B,cAAc;EACd,e1B2BW;E0B1BX,gB1BiCe;AFwgIjB;;A4B7iIA;EAMI,oBAAoB;A5B2iIxB;;A4BjjIA;EASI,kB1BsBY;AFshIhB;;A4BrjIA;EAWI,kB1BkBY;AF4hIhB;;A4BzjIA;EAaI,iB1BeW;AFiiIf;;A4B9iIA;EACE,cAAc;EACd,kB1Bcc;E0Bbd,mBAAmB;A5BijIrB;;A4BpjIA;EAOM,Y1BdyB;AF+jI/B;;A4BxjIA;EAOM,c1B3BuB;AFglI7B;;A4B5jIA;EAOM,iB1BhBwB;AFykI9B;;A4BhkIA;EAOM,c1BvBwB;AFolI9B;;A4BpkIA;EAOM,c1BT4B;AF0kIlC;;A4BxkIA;EAOM,c1BP4B;AF4kIlC;;A4B5kIA;EAOM,c1BR4B;AFilIlC;;A4BhlIA;EAOM,c1BV4B;AFulIlC;;A4BplIA;EAOM,c1BX4B;AF4lIlC;;A4BxlIA;EAOM,c1BL2B;AF0lIjC;;A4BjlIA;EAEI,sBAAsB;A5BmlI1B;;A4BrlIA;EAKI,aAAa;EACb,2BAA2B;A5BolI/B;;A4B1lIA;E3B+GI,kB2BtGwC;A5BqlI5C;;A4B9lIA;;;EAcU,gBAAgB;A5BslI1B;;A4BpmIA;;;EAoBY,6BAA6B;EAC7B,0BAA0B;A5BslItC;;A4B3mIA;;;EA8BY,4BAA4B;EAC5B,yBAAyB;A5BmlIrC;;A4BlnIA;;;;;EAyCY,UAAU;A5BilItB;;A4B1nIA;;;;;;;;;EA8CY,UAAU;A5BwlItB;;A4BtoIA;;;;;;;;;EAgDc,UAAU;A5BkmIxB;;A4BlpIA;EAkDQ,YAAY;EACZ,cAAc;A5BomItB;;A4BvpIA;EAqDM,uBAAuB;A5BsmI7B;;A4B3pIA;EAuDM,yBAAyB;A5BwmI/B;;A4B/pIA;EA0DQ,YAAY;EACZ,cAAc;A5BymItB;;A4BpqIA;EA6DI,aAAa;EACb,2BAA2B;A5B2mI/B;;A4BzqIA;EAgEM,cAAc;A5B6mIpB;;A4B7qIA;EAkEQ,gBAAgB;E3B6CpB,qB2B5C2C;A5B+mI/C;;A4BlrIA;EAqEQ,YAAY;EACZ,cAAc;A5BinItB;;A4BvrIA;EAwEM,uBAAuB;A5BmnI7B;;A4B3rIA;EA0EM,yBAAyB;A5BqnI/B;;A4B/rIA;EA4EM,eAAe;A5BunIrB;;A4BnsIA;EAgFU,sBAAsB;A5BunIhC;;A4BvsIA;EAkFQ,uBAAuB;A5BynI/B;;A4B3sIA;EAoFQ,gBAAgB;A5B2nIxB;;AC3pIE;E2BpDF;IAuFM,aAAa;E5B6nIjB;AACF;;A4B5nIA;EAEI,kBAAkB;A5B8nItB;;ACzqIE;E2ByCF;IAII,qBAAqB;E5BioIvB;AACF;;AC3qIE;E2BqCF;IAMI,aAAa;IACb,YAAY;IACZ,cAAc;I3Bcd,oB2BbsC;IACtC,iBAAiB;E5BqoInB;E4B/oIF;IAYM,kB1BhGU;I0BiGV,oBAAoB;E5BsoIxB;E4BnpIF;IAeM,oBAAoB;E5BuoIxB;E4BtpIF;IAiBM,kB1BvGU;I0BwGV,oBAAoB;E5BwoIxB;E4B1pIF;IAoBM,iB1B3GS;I0B4GT,oBAAoB;E5ByoIxB;AACF;;A4BxoIA;EAEI,gBAAgB;A5B0oIpB;;ACxsIE;E2B4DF;IAII,aAAa;IACb,aAAa;IACb,YAAY;IACZ,cAAc;E5B6oIhB;E4BppIF;IASM,gBAAgB;E5B8oIpB;E4BvpIF;IAWM,cAAc;E5B+oIlB;E4B1pIF;IAaQ,YAAY;E5BgpIlB;E4B7pIF;I3BDI,qB2BgB2C;E5BipI7C;AACF;;A4BhpIA;EACE,sBAAsB;EACtB,WAAW;EACX,e1BhIW;E0BiIX,kBAAkB;EAClB,mBAAmB;A5BmpIrB;;A4BxpIA;;;EAaU,c1BxKoB;AFyzI9B;;A4B9pIA;;;EAeQ,kB1B3IQ;AFgyIhB;;A4BpqIA;;;EAiBQ,kB1B/IQ;AFwyIhB;;A4B1qIA;;;EAmBQ,iB1BlJO;AF+yIf;;A4BhrIA;EAqBM,c1B7KwB;E0B8KxB,azBnLgB;EyBoLhB,oBAAoB;EACpB,kBAAkB;EAClB,MAAM;EACN,YzBvLgB;EyBwLhB,UAAU;A5B+pIhB;;A4B1rIA;;EA+BM,mBzB5LgB;AH41ItB;;A4B/rIA;EAiCM,OAAO;A5BkqIb;;A4BnsIA;;EAqCM,oBzBlMgB;AHq2ItB;;A4BxsIA;EAuCM,QAAQ;A5BqqId;;A4B5sIA;EA2CM,6BAA6B;E3BrD/B,c2BsD+B;EAC7B,YAAY;EACZ,UAAU;A5BqqIhB;;A4BntIA;EAgDM,kB1B5KU;AFm1IhB;;A4BvtIA;EAkDM,kB1BhLU;AFy1IhB;;A4B3tIA;EAoDM,iB1BnLS;AF81If;;A6Bj4IA,qBAAA;ACSA;EAGE,e5ByBW;E4BxBX,mBAAmB;A9B03IrB;;A8B93IA;EAMI,mBAAmB;EACnB,c5BM8B;E4BL9B,aAAa;EACb,uBAAuB;EACvB,iBAduC;A9B04I3C;;A8Bt4IA;EAYM,c5BfwB;AF64I9B;;A8B14IA;EAcI,mBAAmB;EACnB,aAAa;A9Bg4IjB;;A8B/4IA;E7BuII,e6BtHoC;A9Bk4IxC;;A8Bn5IA;EAoBQ,c5BvBsB;E4BwBtB,eAAe;EACf,oBAAoB;A9Bm4I5B;;A8Bz5IA;EAwBM,c5BxBwB;E4ByBxB,iBAAiB;A9Bq4IvB;;A8B95IA;;EA4BI,uBAAuB;EACvB,aAAa;EACb,eAAe;EACf,2BAA2B;A9Bu4I/B;;A8Bt6IA;E7BuII,mB6BrGuC;A9Bw4I3C;;A8B16IA;E7BuII,kB6BnGuC;A9B04I3C;;A8B96IA;;EAyCM,uBAAuB;A9B04I7B;;A8Bn7IA;;EA6CM,yBAAyB;A9B24I/B;;A8Bx7IA;EAgDI,kB5BnBY;AF+5IhB;;A8B57IA;EAkDI,kB5BvBY;AFq6IhB;;A8Bh8IA;EAoDI,iB5B1BW;AF06If;;A8Bp8IA;EAwDM,iBAAiB;A9Bg5IvB;;A8Bx8IA;EA2DM,iBAAiB;A9Bi5IvB;;A8B58IA;EA8DM,iBAAiB;A9Bk5IvB;;A8Bh9IA;EAiEM,iBAAiB;A9Bm5IvB;;A+Bx8IA;EACE,uB7BP6B;E6BQ7B,sBApBmB;EAqBnB,0F7BtB2B;E6BuB3B,c7BlB4B;E6BmB5B,eAAe;EACf,gBAvBoB;EAwBpB,kBAAkB;A/B28IpB;;A+Bz8IA;EACE,6BAzBwC;EA0BxC,oBAAoB;EACpB,kD7B/B2B;E6BgC3B,aAAa;A/B48If;;A+B18IA;EACE,mBAAmB;EACnB,c7BhC4B;E6BiC5B,aAAa;EACb,YAAY;EACZ,gB7BGe;E6BFf,qBAlCgC;A/B++IlC;;A+Bn9IA;EAQI,uBAAuB;A/B+8I3B;;A+B78IA;EACE,mBAAmB;EACnB,eAAe;EACf,aAAa;EACb,uBAAuB;EACvB,qBA3CgC;A/B2/IlC;;A+B98IA;EACE,cAAc;EACd,kBAAkB;A/Bi9IpB;;A+B/8IA;EACE,6BA9CyC;EA+CzC,eA9C2B;A/BggJ7B;;A+Bh9IA;EACE,6BA/CwC;EAgDxC,6B7BpD6B;E6BqD7B,oBAAoB;EACpB,aAAa;A/Bm9If;;A+Bj9IA;EACE,mBAAmB;EACnB,aAAa;EACb,aAAa;EACb,YAAY;EACZ,cAAc;EACd,uBAAuB;EACvB,gBAzD2B;A/B6gJ7B;;A+B39IA;E9B6EI,+BCrI2B;AFuhJ/B;;A+Bl9IA;EAEI,qB7BlCkB;AFs/ItB;;AgCnhJA;EACE,oBAAoB;EACpB,kBAAkB;EAClB,mBAAmB;AhCshJrB;;AgCzhJA;EAOM,cAAc;AhCshJpB;;AgC7hJA;EAUM,UAAU;EACV,QAAQ;AhCuhJd;;AgCliJA;EAcM,YAAY;EACZ,mBA9BuB;EA+BvB,oBAAoB;EACpB,SAAS;AhCwhJf;;AgCthJA;EACE,aAAa;E/BiHX,O+BhHqB;EACvB,gBAzC6B;EA0C7B,gBAtC2B;EAuC3B,kBAAkB;EAClB,SAAS;EACT,WApCqB;AhC6jJvB;;AgCvhJA;EACE,uB9BjC6B;E8BkC7B,kB9BoBU;E8BnBV,0F9BhD2B;E8BiD3B,sBA9CsC;EA+CtC,mBA9CmC;AhCwkJrC;;AgB5jJgB;EgBqCd,c9BhD4B;E8BiD5B,cAAc;EACd,mBAAmB;EACnB,gBAAgB;EAChB,sBAAsB;EACtB,kBAAkB;AhC2hJpB;;AgCzhJA;;E/BkFI,mB+BhFmC;EACrC,mBAAmB;EACnB,mBAAmB;EACnB,WAAW;AhC4hJb;;AgCjiJA;;EAOI,4B9BxD0B;E8ByD1B,c9BpEyB;AFmmJ7B;;AgCviJA;;EAUI,yB9BlD8B;E8BmD9B,WrBSY;AXyhJhB;;AgChiJA;EACE,yB9BjE6B;E8BkE7B,YAAY;EACZ,cAAc;EACd,WAAW;EACX,gBAAgB;AhCmiJlB;;AiCjnJA;EAEE,mBAAmB;EACnB,8BAA8B;AjCmnJhC;;AiCtnJA;EAKI,kB/B8DQ;AFujJZ;;AiC1nJA;EAOI,qBAAqB;EACrB,mBAAmB;AjCunJvB;;AiC/nJA;EAWI,aAAa;AjCwnJjB;;AiCnoJA;;EAcM,aAAa;AjC0nJnB;;AiCxoJA;EAgBM,aAAa;AjC4nJnB;;AiC5oJA;EAmBQ,gBAAgB;EhC2HpB,qBgChJqC;AjCmpJzC;;AiCjpJA;EAsBQ,YAAY;AjC+nJpB;;AClkJE;EgCnFF;IAyBI,aAAa;EjCioJf;EiC1pJF;IA4BQ,YAAY;EjCioJlB;AACF;;AiChoJA;EACE,mBAAmB;EACnB,aAAa;EACb,gBAAgB;EAChB,YAAY;EACZ,cAAc;EACd,uBAAuB;AjCmoJzB;;AiCzoJA;;EASI,gBAAgB;AjCqoJpB;;AC7lJE;EgCjDF;IAaM,sBA7CmC;EjCmrJvC;AACF;;AiCroJA;;EAEE,gBAAgB;EAChB,YAAY;EACZ,cAAc;AjCwoJhB;;AiC5oJA;;EAQM,YAAY;AjCyoJlB;;AC3mJE;EgCtCF;;IhCiGI,qBgChJqC;EjCssJvC;AACF;;AiC1oJA;EACE,mBAAmB;EACnB,2BAA2B;AjC6oJ7B;;AC3nJE;EgCpBF;IAMM,kBAAkB;EjC8oJtB;AACF;;AC7nJE;EgCxBF;IAQI,aAAa;EjCkpJf;AACF;;AiCjpJA;EACE,mBAAmB;EACnB,yBAAyB;AjCopJ3B;;ACxoJE;EgCdF;IAKI,aAAa;EjCspJf;AACF;;AkC/tJA;EACE,uBAAuB;EACvB,aAAa;EACb,mBAAmB;AlCkuJrB;;AkCruJA;EAKI,sBAAsB;AlCouJ1B;;AkCzuJA;EAOI,8ChCD0B;EgCE1B,aAAa;EACb,oBAAoB;AlCsuJxB;;AkC/uJA;;EAYM,qBAAqB;AlCwuJ3B;;AkCpvJA;EAcM,mBAAmB;AlC0uJzB;;AkCxvJA;EAgBQ,kBAAkB;AlC4uJ1B;;AkC5vJA;EAkBI,8ChCZ0B;EgCa1B,gBAtBgB;EAuBhB,iBAvBgB;AlCqwJpB;;AkClwJA;EAwBM,kBA1BsB;EA2BtB,mBA3BsB;AlCywJ5B;;AkC5uJA;;EAEE,gBAAgB;EAChB,YAAY;EACZ,cAAc;AlC+uJhB;;AkC7uJA;EjC2GI,kBiC/IgB;AlCqxJpB;;AkC9uJA;EjCwGI,iBiC/IgB;AlCyxJpB;;AkC/uJA;EACE,gBAAgB;EAChB,YAAY;EACZ,cAAc;EACd,mBAAmB;AlCkvJrB;;AChtJE;EiCtCF;IAQI,gBAAgB;ElCmvJlB;AACF;;AmCrxJA;EACE,ejCkBW;AFswJb;;AmCzxJA;EAII,kBjCgBY;AFywJhB;;AmC7xJA;EAMI,kBjCYY;AF+wJhB;;AmCjyJA;EAQI,iBjCSW;AFoxJf;;AmC3xJA;EACE,iBArB0B;AnCmzJ5B;;AmC/xJA;EAGI,kBjCqCc;EiCpCd,cjCzB0B;EiC0B1B,cAAc;EACd,qBAzBiC;AnCyzJrC;;AmCtyJA;EAQM,4BjCvBwB;EiCwBxB,cjC/BwB;AFi0J9B;;AmC3yJA;EAYM,yBjClB4B;EiCmB5B,WxByCU;AX0vJhB;;AmChzJA;ElCoHI,8BCtI0B;EiCmCxB,cAnC0B;ElCsI5B,oBkCrIkC;AnCu0JtC;;AmClyJA;EACE,cjCzC4B;EiC0C5B,iBApC2B;EAqC3B,qBApC+B;EAqC/B,yBAAyB;AnCqyJ3B;;AmCzyJA;EAMI,eAtCoB;AnC60JxB;;AmC7yJA;EAQI,kBAxCoB;AnCi1JxB;;AoC50JA;EAEE,4BlCV4B;EkCW5B,kBlC6CU;EkC5CV,elCYW;AFk0Jb;;AoCl1JA;EAMI,mBAAmB;ApCg1JvB;;AoCt1JA;EAQI,mBAAmB;EACnB,0BAA0B;ApCk1J9B;;AoC31JA;EAYI,kBlCKY;AF80JhB;;AoC/1JA;EAcI,kBlCCY;AFo1JhB;;AoCn2JA;EAgBI,iBlCFW;AFy1Jf;;AoCv2JA;EAsCM,uBAH+C;ApCw0JrD;;AoC32JA;EAwCQ,uBlC9CuB;EkC+CvB,clC5DqB;AFm4J7B;;AoCh3JA;EA2CQ,mBlCjDuB;AF03J/B;;AoCp3JA;EAsCM,yBAH+C;ApCq1JrD;;AoCx3JA;EAwCQ,yBlC3DqB;EkC4DrB,YlC/CuB;AFm4J/B;;AoC73JA;EA2CQ,qBlC9DqB;AFo5J7B;;AoCj4JA;EAsCM,yBAH+C;ApCk2JrD;;AoCr4JA;EAwCQ,4BlChDsB;EkCiDtB,yBzBkBa;AX+0JrB;;AoC14JA;EA2CQ,wBlCnDsB;AFs5J9B;;AoC94JA;EAsCM,yBAH+C;ApC+2JrD;;AoCl5JA;EAwCQ,yBlCvDsB;EkCwDtB,WzBoBQ;AX01JhB;;AoCv5JA;EA2CQ,qBlC1DsB;AF06J9B;;AoC35JA;EAsCM,yBzB8B0C;AX21JhD;;AoC/5JA;EAwCQ,yBlCzC0B;EkC0C1B,WzBoBQ;AXu2JhB;;AoCp6JA;EA2CQ,qBlC5C0B;EkC6C1B,czBiC6D;AX41JrE;;AoCz6JA;EAsCM,yBzB8B0C;AXy2JhD;;AoC76JA;EAwCQ,yBlCvC0B;EkCwC1B,WzBoBQ;AXq3JhB;;AoCl7JA;EA2CQ,qBlC1C0B;EkC2C1B,czBiC6D;AX02JrE;;AoCv7JA;EAsCM,yBzB8B0C;AXu3JhD;;AoC37JA;EAwCQ,yBlCxC0B;EkCyC1B,WzBoBQ;AXm4JhB;;AoCh8JA;EA2CQ,qBlC3C0B;EkC4C1B,czBiC6D;AXw3JrE;;AoCr8JA;EAsCM,yBzB8B0C;AXq4JhD;;AoCz8JA;EAwCQ,yBlC1C0B;EkC2C1B,WzBoBQ;AXi5JhB;;AoC98JA;EA2CQ,qBlC7C0B;EkC8C1B,czBiC6D;AXs4JrE;;AoCn9JA;EAsCM,yBzB8B0C;AXm5JhD;;AoCv9JA;EAwCQ,yBlC3C0B;EkC4C1B,yBzBkBa;AXi6JrB;;AoC59JA;EA2CQ,qBlC9C0B;EkC+C1B,czBiC6D;AXo5JrE;;AoCj+JA;EAsCM,yBzB8B0C;AXi6JhD;;AoCr+JA;EAwCQ,yBlCrCyB;EkCsCzB,WzBoBQ;AX66JhB;;AoC1+JA;EA2CQ,qBlCxCyB;EkCyCzB,czBiC6D;AXk6JrE;;AoCj8JA;EACE,mBAAmB;EACnB,yBlC9D4B;EkC+D5B,0BAAgE;EAChE,WzBWc;EyBVd,aAAa;EACb,gBlC7Be;EkC8Bf,8BAA8B;EAC9B,iBAAiB;EACjB,mBAtEiC;EAuEjC,kBAAkB;ApCo8JpB;;AoC98JA;EAYI,YAAY;EACZ,cAAc;EnCgEd,mBmC/DsC;ApCs8J1C;;AoCp9JA;EAgBI,eAjEgC;EAkEhC,yBAAyB;EACzB,0BAA0B;ApCw8J9B;;AoCt8JA;EACE,qBlC9E4B;EkC+E5B,kBlCpBU;EkCqBV,mBAAmB;EACnB,uBAjFmC;EAkFnC,clCrF4B;EkCsF5B,qBAjFiC;ApC0hKnC;;AoC/8JA;;EASI,uBlCjF2B;AF4hK/B;;AoCp9JA;EAWI,6BAlFgD;ApC+hKpD;;AqC/gKA;EAEE,mBAAmB;EACnB,aAAa;EACb,sBAAsB;EACtB,uBAAuB;EACvB,gBAAgB;EAChB,eAAe;EACf,WAxCU;ArCyjKZ;;AqCzhKA;EAWI,aAAa;ArCkhKjB;;AqChhKA;EAEE,wCnC7C2B;AF+jK7B;;AqChhKA;;EAEE,cA9CgC;EA+ChC,+BAA0D;EAC1D,cAAc;EACd,kBAAkB;EAClB,WAAW;ArCmhKb;;ACjgKE;EoCxBF;;IASI,cAAc;IACd,8BAA0D;IAC1D,YAxDuB;ErC8kKzB;AACF;;AqCrhKA;EAEE,gBAAgB;EAChB,YAxD2B;EAyD3B,eAAe;EpCsFb,WoC9IoB;EA0DtB,SAzDoB;EA0DpB,WA5D2B;ArCmlK7B;;AqCrhKA;EACE,aAAa;EACb,sBAAsB;EACtB,8BAAgD;EAChD,gBAAgB;EAChB,uBAAuB;ArCwhKzB;;AqCthKA;;EAEE,mBAAmB;EACnB,4BnCpE4B;EmCqE5B,aAAa;EACb,cAAc;EACd,2BAA2B;EAC3B,aApE4B;EAqE5B,kBAAkB;ArCyhKpB;;AqCvhKA;EACE,gCnC/E4B;EmCgF5B,2BnCpBgB;EmCqBhB,4BnCrBgB;AF+iKlB;;AqCxhKA;EACE,cnCxF4B;EmCyF5B,YAAY;EACZ,cAAc;EACd,iBnC9Da;EmC+Db,cA7E8B;ArCwmKhC;;AqCzhKA;EACE,8BnC/BgB;EmCgChB,+BnChCgB;EmCiChB,6BnC7F4B;AFynK9B;;AqC/hKA;EpC4CI,mBoCtCuC;ArC6hK3C;;AqC3hKA;EpC9CE,iCAAiC;EoCgDjC,uBnC/F6B;EmCgG7B,YAAY;EACZ,cAAc;EACd,cAAc;EACd,aAtF4B;ArConK9B;;AsCxlKA;EACE,uBpC1C6B;EoC2C7B,mBAvDqB;EAwDrB,kBAAkB;EAClB,WAtDW;AtCipKb;;AsC/lKA;EASM,uBpClDyB;EoCmDzB,cpChEuB;AF0pK7B;;AsCpmKA;;EAcU,cpCpEmB;AF+pK7B;;AsCzmKA;;;;EAoBY,yB3BiCqB;E2BhCrB,cpC3EiB;AFuqK7B;;AsCjnKA;EAwBY,qBpC9EiB;AF2qK7B;;AsCrnKA;EA0BQ,cpChFqB;AF+qK7B;;ACxmKE;EqCjBF;;;;IAgCY,cpCtFiB;EFurK3B;EsCjoKF;;;;;;;;;;IAsCc,yB3BemB;I2BdnB,cpC7Fe;EFosK3B;EsC9oKF;;IA0Cc,qBpChGe;EFwsK3B;EsClpKF;;;IA8CU,yB3BOuB;I2BNvB,cpCrGmB;EF8sK3B;EsCxpKF;IAmDc,uBpC5FiB;IoC6FjB,cpC1Ge;EFktK3B;AACF;;AsC7pKA;EASM,yBpC/DuB;EoCgEvB,YpCnDyB;AF2sK/B;;AsClqKA;;EAcU,YpCvDqB;AFgtK/B;;AsCvqKA;;;;EAoBY,uB3BiCqB;E2BhCrB,YpC9DmB;AFwtK/B;;AsC/qKA;EAwBY,mBpCjEmB;AF4tK/B;;AsCnrKA;EA0BQ,YpCnEuB;AFguK/B;;ACtqKE;EqCjBF;;;;IAgCY,YpCzEmB;EFwuK7B;EsC/rKF;;;;;;;;;;IAsCc,uB3BemB;I2BdnB,YpChFiB;EFqvK7B;EsC5sKF;;IA0Cc,mBpCnFiB;EFyvK7B;EsChtKF;;;IA8CU,uB3BOuB;I2BNvB,YpCxFqB;EF+vK7B;EsCttKF;IAmDc,yBpCzGe;IoC0Gf,YpC7FiB;EFmwK7B;AACF;;AsC3tKA;EASM,4BpCpDwB;EoCqDxB,yB3Bce;AXwsKrB;;AsChuKA;;EAcU,yB3BUW;AX6sKrB;;AsCruKA;;;;EAoBY,yB3BiCqB;E2BhCrB,yB3BGS;AXqtKrB;;AsC7uKA;EAwBY,gC3BAS;AXytKrB;;AsCjvKA;EA0BQ,yB3BFa;AX6tKrB;;ACpuKE;EqCjBF;;;;IAgCY,yB3BRS;EXquKnB;EsC7vKF;;;;;;;;;;IAsCc,yB3BemB;I2BdnB,yB3BfO;EXkvKnB;EsC1wKF;;IA0Cc,gC3BlBO;EXsvKnB;EsC9wKF;;;IA8CU,yB3BOuB;I2BNvB,yB3BvBW;EX4vKnB;EsCpxKF;IAmDc,4BpC9FgB;IoC+FhB,yB3B5BO;EXgwKnB;AACF;;AsCzxKA;EASM,yBpC3DwB;EoC4DxB,W3BgBU;AXowKhB;;AsC9xKA;;EAcU,W3BYM;AXywKhB;;AsCnyKA;;;;EAoBY,yB3BiCqB;E2BhCrB,W3BKI;AXixKhB;;AsC3yKA;EAwBY,kB3BEI;AXqxKhB;;AsC/yKA;EA0BQ,W3BAQ;AXyxKhB;;AClyKE;EqCjBF;;;;IAgCY,W3BNI;EXiyKd;EsC3zKF;;;;;;;;;;IAsCc,yB3BemB;I2BdnB,W3BbE;EX8yKd;EsCx0KF;;IA0Cc,kB3BhBE;EXkzKd;EsC50KF;;;IA8CU,yB3BOuB;I2BNvB,W3BrBM;EXwzKd;EsCl1KF;IAmDc,yBpCrGgB;IoCsGhB,W3B1BE;EX4zKd;AACF;;AsCv1KA;EASM,yBpC7C4B;EoC8C5B,W3BgBU;AXk0KhB;;AsC51KA;;EAcU,W3BYM;AXu0KhB;;AsCj2KA;;;;EAoBY,yB3BiCqB;E2BhCrB,W3BKI;AX+0KhB;;AsCz2KA;EAwBY,kB3BEI;AXm1KhB;;AsC72KA;EA0BQ,W3BAQ;AXu1KhB;;ACh2KE;EqCjBF;;;;IAgCY,W3BNI;EX+1Kd;EsCz3KF;;;;;;;;;;IAsCc,yB3BemB;I2BdnB,W3BbE;EX42Kd;EsCt4KF;;IA0Cc,kB3BhBE;EXg3Kd;EsC14KF;;;IA8CU,yB3BOuB;I2BNvB,W3BrBM;EXs3Kd;EsCh5KF;IAmDc,yBpCvFoB;IoCwFpB,W3B1BE;EX03Kd;AACF;;AsCr5KA;EASM,yBpC3C4B;EoC4C5B,W3BgBU;AXg4KhB;;AsC15KA;;EAcU,W3BYM;AXq4KhB;;AsC/5KA;;;;EAoBY,yB3BiCqB;E2BhCrB,W3BKI;AX64KhB;;AsCv6KA;EAwBY,kB3BEI;AXi5KhB;;AsC36KA;EA0BQ,W3BAQ;AXq5KhB;;AC95KE;EqCjBF;;;;IAgCY,W3BNI;EX65Kd;EsCv7KF;;;;;;;;;;IAsCc,yB3BemB;I2BdnB,W3BbE;EX06Kd;EsCp8KF;;IA0Cc,kB3BhBE;EX86Kd;EsCx8KF;;;IA8CU,yB3BOuB;I2BNvB,W3BrBM;EXo7Kd;EsC98KF;IAmDc,yBpCrFoB;IoCsFpB,W3B1BE;EXw7Kd;AACF;;AsCn9KA;EASM,yBpC5C4B;EoC6C5B,W3BgBU;AX87KhB;;AsCx9KA;;EAcU,W3BYM;AXm8KhB;;AsC79KA;;;;EAoBY,yB3BiCqB;E2BhCrB,W3BKI;AX28KhB;;AsCr+KA;EAwBY,kB3BEI;AX+8KhB;;AsCz+KA;EA0BQ,W3BAQ;AXm9KhB;;AC59KE;EqCjBF;;;;IAgCY,W3BNI;EX29Kd;EsCr/KF;;;;;;;;;;IAsCc,yB3BemB;I2BdnB,W3BbE;EXw+Kd;EsClgLF;;IA0Cc,kB3BhBE;EX4+Kd;EsCtgLF;;;IA8CU,yB3BOuB;I2BNvB,W3BrBM;EXk/Kd;EsC5gLF;IAmDc,yBpCtFoB;IoCuFpB,W3B1BE;EXs/Kd;AACF;;AsCjhLA;EASM,yBpC9C4B;EoC+C5B,W3BgBU;AX4/KhB;;AsCthLA;;EAcU,W3BYM;AXigLhB;;AsC3hLA;;;;EAoBY,yB3BiCqB;E2BhCrB,W3BKI;AXygLhB;;AsCniLA;EAwBY,kB3BEI;AX6gLhB;;AsCviLA;EA0BQ,W3BAQ;AXihLhB;;AC1hLE;EqCjBF;;;;IAgCY,W3BNI;EXyhLd;EsCnjLF;;;;;;;;;;IAsCc,yB3BemB;I2BdnB,W3BbE;EXsiLd;EsChkLF;;IA0Cc,kB3BhBE;EX0iLd;EsCpkLF;;;IA8CU,yB3BOuB;I2BNvB,W3BrBM;EXgjLd;EsC1kLF;IAmDc,yBpCxFoB;IoCyFpB,W3B1BE;EXojLd;AACF;;AsC/kLA;EASM,yBpC/C4B;EoCgD5B,yB3Bce;AX4jLrB;;AsCplLA;;EAcU,yB3BUW;AXikLrB;;AsCzlLA;;;;EAoBY,yB3BiCqB;E2BhCrB,yB3BGS;AXykLrB;;AsCjmLA;EAwBY,gC3BAS;AX6kLrB;;AsCrmLA;EA0BQ,yB3BFa;AXilLrB;;ACxlLE;EqCjBF;;;;IAgCY,yB3BRS;EXylLnB;EsCjnLF;;;;;;;;;;IAsCc,yB3BemB;I2BdnB,yB3BfO;EXsmLnB;EsC9nLF;;IA0Cc,gC3BlBO;EX0mLnB;EsCloLF;;;IA8CU,yB3BOuB;I2BNvB,yB3BvBW;EXgnLnB;EsCxoLF;IAmDc,yBpCzFoB;IoC0FpB,yB3B5BO;EXonLnB;AACF;;AsC7oLA;EASM,yBpCzC2B;EoC0C3B,W3BgBU;AXwnLhB;;AsClpLA;;EAcU,W3BYM;AX6nLhB;;AsCvpLA;;;;EAoBY,yB3BiCqB;E2BhCrB,W3BKI;AXqoLhB;;AsC/pLA;EAwBY,kB3BEI;AXyoLhB;;AsCnqLA;EA0BQ,W3BAQ;AX6oLhB;;ACtpLE;EqCjBF;;;;IAgCY,W3BNI;EXqpLd;EsC/qLF;;;;;;;;;;IAsCc,yB3BemB;I2BdnB,W3BbE;EXkqLd;EsC5rLF;;IA0Cc,kB3BhBE;EXsqLd;EsChsLF;;;IA8CU,yB3BOuB;I2BNvB,W3BrBM;EX4qLd;EsCtsLF;IAmDc,yBpCnFmB;IoCoFnB,W3B1BE;EXgrLd;AACF;;AsC3sLA;EAsDI,oBAAoB;EACpB,aAAa;EACb,mBA7GmB;EA8GnB,WAAW;AtCypLf;;AsCltLA;EA2DI,gCpCtG0B;AFiwL9B;;AsCttLA;EALE,OAAO;EACP,eAAe;EACf,QAAQ;EACR,WA/CiB;AtC8wLnB;;AsC7tLA;EAgEI,SAAS;AtCiqLb;;AsCjuLA;EAkEM,iCpC7GwB;AFgxL9B;;AsCruLA;EAoEI,MAAM;AtCqqLV;;AsCnqLA;;EAGI,oBA9HmB;AtCmyLvB;;AsCxqLA;;EAKI,uBAhImB;AtCwyLvB;;AsCtqLA;;EAEE,oBAAoB;EACpB,aAAa;EACb,cAAc;EACd,mBAvIqB;AtCgzLvB;;AsCvqLA;EAIM,6BAA6B;AtCuqLnC;;AsCrqLA;ErCpFE,iCAAiC;EqCsFjC,gBAAgB;EAChB,gBAAgB;EAChB,kBAAkB;AtCwqLpB;;AsCtqLA;EACE,cpClJ4B;EDoB5B,eAAe;EACf,cAAc;EACd,eqC1BqB;ErC2BrB,kBAAkB;EAClB,cqC5BqB;ErC6InB,iBqCWkC;AtC6qLtC;;ACxyLE;EACE,8BAA8B;EAC9B,cAAc;EACd,WAAW;EACX,qBAAqB;EACrB,kBAAkB;EAClB,wBAAwB;EACxB,yBCiCQ;EDhCR,yDAAyD;EACzD,oCC0Ba;EDzBb,WAAW;AD2yLf;;AC1yLI;EACE,oBAAoB;AD6yL1B;;AC5yLI;EACE,oBAAoB;AD+yL1B;;AC9yLI;EACE,oBAAoB;ADizL1B;;AChzLE;EACE,qCAAiC;ADmzLrC;;AC/yLM;EACE,wCAAwC;ADkzLhD;;ACjzLM;EACE,UAAU;ADozLlB;;ACnzLM;EACE,0CAA0C;ADszLlD;;AsCptLA;EACE,aAAa;AtCutLf;;AsCrtLA;;EAEE,cpC3J4B;EoC4J5B,cAAc;EACd,gBAAgB;EAChB,uBAAuB;EACvB,kBAAkB;AtCwtLpB;;AsC9tLA;;EASM,qBAAqB;EACrB,sBAAsB;AtC0tL5B;;AsCxtLA;;EAEE,eAAe;AtC2tLjB;;AsC7tLA;;;;;EAOI,yBpCrK0B;EoCsK1B,cpC9J8B;AF43LlC;;AsC5tLA;EACE,YAAY;EACZ,cAAc;AtC+tLhB;;AsCjuLA;EAII,mBA5KgC;AtC64LpC;;AsCruLA;EAMI,UAAU;AtCmuLd;;AsCzuLA;EAQI,YAAY;EACZ,cAAc;AtCquLlB;;AsC9uLA;EAWI,oCAAoC;EACpC,mBA/LmB;EAgMnB,kCAAkC;AtCuuLtC;;AsCpvLA;EAgBM,6BApLyC;EAqLzC,4BpCjL4B;AFy5LlC;;AsCzvLA;EAmBM,6BApL0C;EAqL1C,4BpCpL4B;EoCqL5B,0BApLuC;EAqLvC,wBApLqC;EAqLrC,cpCvL4B;EoCwL5B,kCAAwE;AtC0uL9E;;AsCxuLA;EACE,YAAY;EACZ,cAAc;AtC2uLhB;;AsCzuLA;ErCpEI,oBqCqEoC;AtC4uLxC;;AsC7uLA;EAII,qBpClM8B;EoCmM9B,oBAAoB;ErCjEpB,cqCkE6B;AtC6uLjC;;AsC3uLA;EACE,mBAAmB;EACnB,sBAAsB;EACtB,mBAAmB;AtC8uLrB;;AsCjvLA;EAKI,oBAAoB;EACpB,qBAAqB;AtCgvLzB;;AsC9uLA;EACE,4BpCxN4B;EoCyN5B,YAAY;EACZ,aAAa;EACb,WA9LyB;EA+LzB,gBAAgB;AtCivLlB;;AC74LE;EqCrBF;IAqLI,cAAc;EtCkvLhB;EsCjvLA;;IAGI,mBAAmB;IACnB,aAAa;EtCkvLjB;EsCjvLA;IAEI,aAAa;EtCkvLjB;EsC10LF;IA0FI,uBpCxO2B;IoCyO3B,4CpCtPyB;IoCuPzB,iBAAiB;EtCmvLnB;EsCtvLA;IAKI,cAAc;EtCovLlB;EsClvLA;IA1MA,OAAO;IACP,eAAe;IACf,QAAQ;IACR,WA/CiB;EtC8+LjB;EsCxvLA;IAKI,SAAS;EtCsvLb;EsC3vLA;IAOM,4CpClQqB;EFy/L3B;EsC9vLA;IASI,MAAM;EtCwvLV;EsCjwLA;IrC/LA,iCAAiC;IqC6M3B,iCAA2C;IAC3C,cAAc;EtCuvLpB;EsCtvLA;;IAGI,oBA7QiB;EtCogMrB;EsC1vLA;;IAKI,uBA/QiB;EtCwgMrB;AACF;;ACn8LE;EqC4MA;;;;IAIE,oBAAoB;IACpB,aAAa;EtC2vLf;EsC79LF;IAoOI,mBAzRmB;EtCqhMrB;EsC7vLA;IAGI,kBAzR0B;EtCshM9B;EsChwLA;;IAMM,mBAAmB;EtC8vLzB;EsCpwLA;;IASM,kBpC/NI;EF89LV;EsCxwLA;;;;IAgBQ,wCAAwC;EtC8vLhD;EsC9wLA;IAuBU,wCAAwC;EtC0vLlD;EsCjxLA;IA4BU,4BpC1SkB;IoC2SlB,cpCtTiB;EF8iM3B;EsCrxLA;IA+BU,4BpC7SkB;IoC8SlB,cpCrSsB;EF8hMhC;EsC55LF;IAqKI,aAAa;EtC0vLf;EsCv5LF;;IAgKI,mBAAmB;IACnB,aAAa;EtC2vLf;EsCt4LF;IA8IM,oBAAoB;EtC2vLxB;EsC7vLA;IAKM,oDAAoD;EtC2vL1D;EsChwLA;IAOM,gCpC/TsB;IoCgUtB,0BAAkE;IAClE,gBAAgB;IAChB,YAAY;IACZ,4CpC3UqB;IoC4UrB,SAAS;EtC4vLf;EsCxwLA;IAkBM,cAAc;EtCyvLpB;EsCxvLM;IAEE,UAAU;IACV,oBAAoB;IACpB,wBAAwB;EtCyvLhC;EsCr7LF;IA8LI,YAAY;IACZ,cAAc;EtC0vLhB;EsCzvLA;IACE,2BAA2B;IrC9M3B,kBqC+MoC;EtC2vLtC;EsC1vLA;IACE,yBAAyB;IrCjNzB,iBqCkNoC;EtC4vLtC;EsCl4LF;IAwII,uBpCrV2B;IoCsV3B,8BpC/Rc;IoCgSd,+BpChSc;IoCiSd,6BpC7V0B;IoC8V1B,2CpCtWyB;IoCuWzB,aAAa;IACb,mBAAmB;IrClNnB,OqCmNuB;IACvB,eAAe;IACf,kBAAkB;IAClB,SAAS;IACT,WAhVkB;EtC6kMpB;EsCh5LF;IAqJM,sBAAsB;IACtB,mBAAmB;EtC8vLvB;EsC7wLA;IrCnNE,mBqCoOuC;EtC+vLzC;EsChxLA;IAoBM,4BpC1WsB;IoC2WtB,cpCtXqB;EFqnM3B;EsCpxLA;IAuBM,4BpC7WsB;IoC8WtB,cpCrW0B;EFqmMhC;EsC/vLE;IAEE,kBpCxTY;IoCyTZ,gBAAgB;IAChB,4EpC9XuB;IoC+XvB,cAAc;IACd,UAAU;IACV,oBAAoB;IACpB,wBAA8C;IAC9C,2BAA2B;IAC3B,yBpC9TM;IoC+TN,uCAAuC;EtCgwL3C;EsCpyLA;IAsCI,UAAU;IACV,QAAQ;EtCiwLZ;EsCv6LF;IAwKI,cAAc;EtCkwLhB;EsCjwLA;;IrC7PE,qBqCgQyC;EtCkwL3C;EsCrwLA;;IrC7PE,sBqCkQyC;EtCowL3C;EsClwLA;IAjWA,OAAO;IACP,eAAe;IACf,QAAQ;IACR,WA/CiB;EtCqpMjB;EsCxwLA;IAKI,SAAS;EtCswLb;EsC3wLA;IAOM,4CpCzZqB;EFgqM3B;EsC9wLA;IASI,MAAM;EtCwwLV;EsCvwLA;;IAGI,oBA9ZiB;EtCsqMrB;EsC3wLA;;IAKI,uBAhaiB;EtC0qMrB;EsC/wLA;;IAOI,oBAA4D;EtC4wLhE;EsCnxLA;;IASI,uBAA+D;EtC8wLnE;EsC5wLA;;IAGI,cpC1auB;EFurM3B;EsChxLA;;IAKI,6BAja2C;EtCgrM/C;EsC9wLA;IAKM,yBpCtasB;EFkrM5B;AACF;;AsCzwLA;EAEI,iCAA2C;AtC2wL/C;;AuCtqMA;EAEE,erCIW;EqCHX,gBAhC0B;AvCwsM5B;;AuC3qMA;EAMI,kBrCCY;AFwqMhB;;AuC/qMA;EAQI,kBrCHY;AF8qMhB;;AuCnrMA;EAUI,iBrCNW;AFmrMf;;AuCvrMA;;EAcM,iBAAiB;EACjB,kBAAkB;EAClB,uBrCwBmB;AFspMzB;;AuC9rMA;EAkBM,uBrCsBmB;AF0pMzB;;AuC9qMA;;EAEE,mBAAmB;EACnB,aAAa;EACb,uBAAuB;EACvB,kBAAkB;AvCirMpB;;AuC/qMA;;;;EAME,cA3D6B;EA4D7B,uBAAuB;EACvB,eA5D8B;EA6D9B,mBA5DkC;EA6DlC,oBA5DmC;EA6DnC,kBAAkB;AvCgrMpB;;AuC9qMA;;;EAGE,qBrChE4B;EqCiE5B,crCrE4B;EqCsE5B,gBpCvEoB;AHwvMtB;;AuCtrMA;;;EAOI,qBrCrE0B;EqCsE1B,crCzE0B;AF8vM9B;;AuC7rMA;;;EAUI,qBrC3D8B;AFovMlC;;AuCnsMA;;;EAYI,iDrCjFyB;AF8wM7B;;AuCzsMA;;;EAcI,yBrC3E0B;EqC4E1B,qBrC5E0B;EqC6E1B,gBAAgB;EAChB,crChF0B;EqCiF1B,YAAY;AvCisMhB;;AuC/rMA;;EAEE,oBAAoB;EACpB,qBAAqB;EACrB,mBAAmB;AvCksMrB;;AuChsMA;EAEI,yBrC7E8B;EqC8E9B,qBrC9E8B;EqC+E9B,W5BnBY;AXqtMhB;;AuChsMA;EACE,crC/F4B;EqCgG5B,oBAAoB;AvCmsMtB;;AuCjsMA;EACE,eAAe;AvCosMjB;;AC/tME;EsClDF;IAiFI,eAAe;EvCqsMjB;EuC1tMF;;IAwBI,YAAY;IACZ,cAAc;EvCssMhB;EuCrsMA;IAEI,YAAY;IACZ,cAAc;EvCssMlB;AACF;;AC1uME;EsCsBF;IAiBI,YAAY;IACZ,cAAc;IACd,2BAA2B;IAC3B,QAAQ;EvCwsMV;EuCvsMA;IACE,QAAQ;EvCysMV;EuCxsMA;IACE,QAAQ;EvC0sMV;EuC9yMF;IAsGI,8BAA8B;EvC2sMhC;EuC5sMA;IAIM,QAAQ;EvC2sMd;EuC/sMA;IAMM,uBAAuB;IACvB,QAAQ;EvC4sMd;EuCntMA;IASM,QAAQ;EvC6sMd;EuCttMA;IAYM,QAAQ;EvC6sMd;EuCztMA;IAcM,QAAQ;EvC8sMd;EuC5tMA;IAgBM,yBAAyB;IACzB,QAAQ;EvC+sMd;AACF;;AwCv0MA;EACE,kBtCuCgB;EsCtChB,0FtC9B2B;EsC+B3B,etCIW;AFs0Mb;;AwC70MA;EAKI,qBtCakB;AF+zMtB;;AwCj1MA;EAYQ,uBtC3BuB;EsC4BvB,ctCzCqB;AFk3M7B;;AwCt1MA;EAeQ,0BtC9BuB;AFy2M/B;;AwC11MA;EAiBQ,YtChCuB;AF62M/B;;AwC91MA;EAYQ,yBtCxCqB;EsCyCrB,YtC5BuB;AFk3M/B;;AwCn2MA;EAeQ,4BtC3CqB;AFm4M7B;;AwCv2MA;EAiBQ,ctC7CqB;AFu4M7B;;AwC32MA;EAYQ,4BtC7BsB;EsC8BtB,yB7BqCa;AX8zMrB;;AwCh3MA;EAeQ,+BtChCsB;AFq4M9B;;AwCp3MA;EAiBQ,iBtClCsB;AFy4M9B;;AwCx3MA;EAYQ,yBtCpCsB;EsCqCtB,W7BuCQ;AXy0MhB;;AwC73MA;EAeQ,4BtCvCsB;AFy5M9B;;AwCj4MA;EAiBQ,ctCzCsB;AF65M9B;;AwCr4MA;EAYQ,yBtCtB0B;EsCuB1B,W7BuCQ;AXs1MhB;;AwC14MA;EAeQ,4BtCzB0B;AFw5MlC;;AwC94MA;EAiBQ,ctC3B0B;AF45MlC;;AwCl5MA;EAYQ,yBtCpB0B;EsCqB1B,W7BuCQ;AXm2MhB;;AwCv5MA;EAeQ,4BtCvB0B;AFm6MlC;;AwC35MA;EAiBQ,ctCzB0B;AFu6MlC;;AwC/5MA;EAYQ,yBtCrB0B;EsCsB1B,W7BuCQ;AXg3MhB;;AwCp6MA;EAeQ,4BtCxB0B;AFi7MlC;;AwCx6MA;EAiBQ,ctC1B0B;AFq7MlC;;AwC56MA;EAYQ,yBtCvB0B;EsCwB1B,W7BuCQ;AX63MhB;;AwCj7MA;EAeQ,4BtC1B0B;AFg8MlC;;AwCr7MA;EAiBQ,ctC5B0B;AFo8MlC;;AwCz7MA;EAYQ,yBtCxB0B;EsCyB1B,yB7BqCa;AX44MrB;;AwC97MA;EAeQ,4BtC3B0B;AF88MlC;;AwCl8MA;EAiBQ,ctC7B0B;AFk9MlC;;AwCt8MA;EAYQ,yBtClByB;EsCmBzB,W7BuCQ;AXu5MhB;;AwC38MA;EAeQ,4BtCrByB;AFq9MjC;;AwC/8MA;EAiBQ,ctCvByB;AFy9MjC;;AwCh8MA;;EAGI,gCtCzC2B;AF2+M/B;;AwCh8MA;EACE,yBtC5C6B;EsC6C7B,0BAA8C;EAC9C,ctCnD4B;EsCoD5B,iBAhDyB;EAiDzB,gBtCfe;EsCgBf,iBArD8B;EAsD9B,mBArDgC;AxCw/MlC;;AwCj8MA;EACE,qBAAqB;EACrB,aAAa;EACb,kBArD4B;EAsD5B,uBAAuB;AxCo8MzB;;AwCx8MA;EAMI,gCtC3D0B;EsC4D1B,mBAAmB;EACnB,cAAc;AxCs8MlB;;AwC98MA;EAWM,4BtCnEwB;EsCoExB,ctCrEwB;AF4gN9B;;AwCr8MA;EAEI,ctCxE0B;AF+gN9B;;AwCz8MA;EAIM,ctC3D4B;AFogNlC;;AwCv8MA;EACE,mBAAmB;EACnB,ctC/E4B;EsCgF5B,aAAa;EACb,2BAA2B;EAC3B,qBAAqB;AxC08MvB;;AwC/8MA;EvC6DI,oBuCtDsC;AxC48M1C;;AwCn9MA;EASI,YAAY;EACZ,cAAc;EACd,WAAW;AxC88Mf;;AwCz9MA;EAaI,eAAe;AxCg9MnB;;AwC79MA;EAeI,0BtC5E8B;EsC6E9B,ctC7F0B;AF+iN9B;;AwCl+MA;EAkBM,ctC/E4B;AFmiNlC;;AwCt+MA;EAoBI,8BtCjCc;EsCkCd,+BtClCc;AFw/MlB;;AwCp9MA;;EAEE,eAAe;AxCu9MjB;;AwCz9MA;;EAII,4BtCjG0B;AF2jN9B;;AwCx9MA;EvC9FE,qBAAqB;EACrB,euC8FgB;EvC7FhB,WuC6FqB;EvC5FrB,gBuC4FqB;EvC3FrB,kBAAkB;EAClB,mBAAmB;EACnB,UuCyFqB;EACrB,ctC1G4B;EDwI1B,oBuC7BoC;AxCi+MxC;;AwCp+MA;EAKI,kBAAkB;EAClB,oBAAoB;AxCm+MxB;;AyC7jNA;ExCkCE,iCAAiC;EwC9BjC,oBAAoB;EACpB,aAAa;EACb,evCGW;EuCFX,8BAA8B;EAC9B,gBAAgB;EAChB,gBAAgB;EAChB,mBAAmB;AzC8jNrB;;AyCxkNA;EAYI,mBAAmB;EACnB,4BvC/B0B;EuCgC1B,0BAzC4B;EA0C5B,wBAzC0B;EA0C1B,cvCrC0B;EuCsC1B,aAAa;EACb,uBAAuB;EACvB,mBAA6C;EAC7C,kBAxCyB;EAyCzB,mBAAmB;AzCgkNvB;;AyCrlNA;EAuBM,4BvC7CwB;EuC8CxB,cvC9CwB;AFgnN9B;;AyC1lNA;EA0BI,cAAc;AzCokNlB;;AyC9lNA;EA6BQ,4BvCnC0B;EuCoC1B,cvCpC0B;AFymNlC;;AyCnmNA;EAgCI,mBAAmB;EACnB,4BvCnD0B;EuCoD1B,0BA7D4B;EA8D5B,wBA7D0B;EA8D1B,aAAa;EACb,YAAY;EACZ,cAAc;EACd,2BAA2B;AzCukN/B;;AyC9mNA;EAyCM,qBAAqB;AzCykN3B;;AyClnNA;EA2CM,UAAU;EACV,uBAAuB;EACvB,oBAAoB;EACpB,qBAAqB;AzC2kN3B;;AyCznNA;EAgDM,yBAAyB;EACzB,oBAAoB;AzC6kN1B;;AyC9nNA;ExCoHI,mBwChEuC;AzC8kN3C;;AyCloNA;ExCoHI,kBwC9DuC;AzCglN3C;;AyCtoNA;EA0DM,uBAAuB;AzCglN7B;;AyC1oNA;EA6DM,yBAAyB;AzCilN/B;;AyC9oNA;EAiEM,6BAA6B;EAE3B,0BAAkE;AzCglN1E;;AyCnpNA;EAuEQ,4BvCtFsB;EuCuFtB,4BvC1FsB;AF0qN9B;;AyCxpNA;EA4EU,uBvCzFqB;EuC0FrB,qBvC/FoB;EuCgGpB,2CAA2E;AzCglNrF;;AyC9pNA;EAiFM,YAAY;EACZ,cAAc;AzCilNpB;;AyCnqNA;EAqFM,qBvCvGwB;EuCwGxB,mBA/F+B;EAgG/B,iBA/F6B;EAgG7B,gBAAgB;EAChB,kBAAkB;AzCklNxB;;AyC3qNA;EA2FQ,4BvC1GsB;EuC2GtB,qBvC/GsB;EuCgHtB,UAAU;AzColNlB;;AyCjrNA;ExCoHI,iBwCpBuE;AzCqlN3E;;AyCrrNA;EAmGU,2BvC1DE;EuC2DF,8BvC3DE;AFipNZ;;AyC1rNA;EA0GU,4BvCjEE;EuCkEF,+BvClEE;AFspNZ;;AyC/rNA;EAiHU,yBvCvHwB;EuCwHxB,qBvCxHwB;EuCyHxB,W9B7DM;E8B8DN,UAAU;AzCklNpB;;AyCtsNA;EAsHM,mBAAmB;AzColNzB;;AyC1sNA;EA2HY,mCvChFa;EuCiFb,gCvCjFa;EuCkFb,oBAAoB;AzCmlNhC;;AyChtNA;EAoIY,oCvCzFa;EuC0Fb,iCvC1Fa;EuC2Fb,qBAAqB;AzCglNjC;;AyCttNA;EA6II,kBvCnIY;AFgtNhB;;AyC1tNA;EA+II,kBvCvIY;AFstNhB;;AyC9tNA;EAiJI,iBvC1IW;AF2tNf;;A0C9vNA,eAAA;ACEA;EACE,cAAc;EACd,aAAa;EACb,YAAY;EACZ,cAAc;EACd,gBAPkB;A3CuwNpB;;A2C/vNE;EACE,UAAU;A3CkwNd;;A2CjwNE;EACE,UAAU;EACV,WAAW;A3CowNf;;A2CnwNE;EACE,UAAU;EACV,UAAU;A3CswNd;;A2CrwNE;EACE,UAAU;EACV,eAAe;A3CwwNnB;;A2CvwNE;EACE,UAAU;EACV,UAAU;A3C0wNd;;A2CzwNE;EACE,UAAU;EACV,eAAe;A3C4wNnB;;A2C3wNE;EACE,UAAU;EACV,UAAU;A3C8wNd;;A2C7wNE;EACE,UAAU;EACV,UAAU;A3CgxNd;;A2C/wNE;EACE,UAAU;EACV,UAAU;A3CkxNd;;A2CjxNE;EACE,UAAU;EACV,UAAU;A3CoxNd;;A2CnxNE;EACE,UAAU;EACV,UAAU;A3CsxNd;;A2CrxNE;E1CwGE,gB0CvGmC;A3CwxNvC;;A2CvxNE;E1CsGE,qB0CrGwC;A3C0xN5C;;A2CzxNE;E1CoGE,gB0CnGmC;A3C4xNvC;;A2C3xNE;E1CkGE,qB0CjGwC;A3C8xN5C;;A2C7xNE;E1CgGE,gB0C/FmC;A3CgyNvC;;A2C/xNE;E1C8FE,gB0C7FmC;A3CkyNvC;;A2CjyNE;E1C4FE,gB0C3FmC;A3CoyNvC;;A2CnyNE;E1C0FE,gB0CzFmC;A3CsyNvC;;A2CryNE;E1CwFE,gB0CvFmC;A3CwyNvC;;A2CtyNI;EACE,UAAU;EACV,SAA0B;A3CyyNhC;;A2CxyNI;E1CkFA,e0CjFqD;A3C2yNzD;;A2C/yNI;EACE,UAAU;EACV,eAA0B;A3CkzNhC;;A2CjzNI;E1CkFA,qB0CjFqD;A3CozNzD;;A2CxzNI;EACE,UAAU;EACV,gBAA0B;A3C2zNhC;;A2C1zNI;E1CkFA,sB0CjFqD;A3C6zNzD;;A2Cj0NI;EACE,UAAU;EACV,UAA0B;A3Co0NhC;;A2Cn0NI;E1CkFA,gB0CjFqD;A3Cs0NzD;;A2C10NI;EACE,UAAU;EACV,gBAA0B;A3C60NhC;;A2C50NI;E1CkFA,sB0CjFqD;A3C+0NzD;;A2Cn1NI;EACE,UAAU;EACV,gBAA0B;A3Cs1NhC;;A2Cr1NI;E1CkFA,sB0CjFqD;A3Cw1NzD;;A2C51NI;EACE,UAAU;EACV,UAA0B;A3C+1NhC;;A2C91NI;E1CkFA,gB0CjFqD;A3Ci2NzD;;A2Cr2NI;EACE,UAAU;EACV,gBAA0B;A3Cw2NhC;;A2Cv2NI;E1CkFA,sB0CjFqD;A3C02NzD;;A2C92NI;EACE,UAAU;EACV,gBAA0B;A3Ci3NhC;;A2Ch3NI;E1CkFA,sB0CjFqD;A3Cm3NzD;;A2Cv3NI;EACE,UAAU;EACV,UAA0B;A3C03NhC;;A2Cz3NI;E1CkFA,gB0CjFqD;A3C43NzD;;A2Ch4NI;EACE,UAAU;EACV,gBAA0B;A3Cm4NhC;;A2Cl4NI;E1CkFA,sB0CjFqD;A3Cq4NzD;;A2Cz4NI;EACE,UAAU;EACV,gBAA0B;A3C44NhC;;A2C34NI;E1CkFA,sB0CjFqD;A3C84NzD;;A2Cl5NI;EACE,UAAU;EACV,WAA0B;A3Cq5NhC;;A2Cp5NI;E1CkFA,iB0CjFqD;A3Cu5NzD;;ACr4NE;E0C/EF;IAgEM,UAAU;E3Cy5Nd;E2Cz9NF;IAkEM,UAAU;IACV,WAAW;E3C05Nf;E2C79NF;IAqEM,UAAU;IACV,UAAU;E3C25Nd;E2Cj+NF;IAwEM,UAAU;IACV,eAAe;E3C45NnB;E2Cr+NF;IA2EM,UAAU;IACV,UAAU;E3C65Nd;E2Cz+NF;IA8EM,UAAU;IACV,eAAe;E3C85NnB;E2C7+NF;IAiFM,UAAU;IACV,UAAU;E3C+5Nd;E2Cj/NF;IAoFM,UAAU;IACV,UAAU;E3Cg6Nd;E2Cr/NF;IAuFM,UAAU;IACV,UAAU;E3Ci6Nd;E2Cz/NF;IA0FM,UAAU;IACV,UAAU;E3Ck6Nd;E2C7/NF;IA6FM,UAAU;IACV,UAAU;E3Cm6Nd;E2CjgOF;I1C8II,gB0C9CqC;E3Co6NvC;E2CpgOF;I1C8II,qB0C5C0C;E3Cq6N5C;E2CvgOF;I1C8II,gB0C1CqC;E3Cs6NvC;E2C1gOF;I1C8II,qB0CxC0C;E3Cu6N5C;E2C7gOF;I1C8II,gB0CtCqC;E3Cw6NvC;E2ChhOF;I1C8II,gB0CpCqC;E3Cy6NvC;E2CnhOF;I1C8II,gB0ClCqC;E3C06NvC;E2CthOF;I1C8II,gB0ChCqC;E3C26NvC;E2CzhOF;I1C8II,gB0C9BqC;E3C46NvC;E2C5hOF;IAmHQ,UAAU;IACV,SAA0B;E3C46NhC;E2ChiOF;I1C8II,e0CxBuD;E3C66NzD;E2CniOF;IAmHQ,UAAU;IACV,eAA0B;E3Cm7NhC;E2CviOF;I1C8II,qB0CxBuD;E3Co7NzD;E2C1iOF;IAmHQ,UAAU;IACV,gBAA0B;E3C07NhC;E2C9iOF;I1C8II,sB0CxBuD;E3C27NzD;E2CjjOF;IAmHQ,UAAU;IACV,UAA0B;E3Ci8NhC;E2CrjOF;I1C8II,gB0CxBuD;E3Ck8NzD;E2CxjOF;IAmHQ,UAAU;IACV,gBAA0B;E3Cw8NhC;E2C5jOF;I1C8II,sB0CxBuD;E3Cy8NzD;E2C/jOF;IAmHQ,UAAU;IACV,gBAA0B;E3C+8NhC;E2CnkOF;I1C8II,sB0CxBuD;E3Cg9NzD;E2CtkOF;IAmHQ,UAAU;IACV,UAA0B;E3Cs9NhC;E2C1kOF;I1C8II,gB0CxBuD;E3Cu9NzD;E2C7kOF;IAmHQ,UAAU;IACV,gBAA0B;E3C69NhC;E2CjlOF;I1C8II,sB0CxBuD;E3C89NzD;E2CplOF;IAmHQ,UAAU;IACV,gBAA0B;E3Co+NhC;E2CxlOF;I1C8II,sB0CxBuD;E3Cq+NzD;E2C3lOF;IAmHQ,UAAU;IACV,UAA0B;E3C2+NhC;E2C/lOF;I1C8II,gB0CxBuD;E3C4+NzD;E2ClmOF;IAmHQ,UAAU;IACV,gBAA0B;E3Ck/NhC;E2CtmOF;I1C8II,sB0CxBuD;E3Cm/NzD;E2CzmOF;IAmHQ,UAAU;IACV,gBAA0B;E3Cy/NhC;E2C7mOF;I1C8II,sB0CxBuD;E3C0/NzD;E2ChnOF;IAmHQ,UAAU;IACV,WAA0B;E3CggOhC;E2CpnOF;I1C8II,iB0CxBuD;E3CigOzD;AACF;;ACriOE;E0CnFF;IA0HM,UAAU;E3CmgOd;E2C7nOF;IA6HM,UAAU;IACV,WAAW;E3CmgOf;E2CjoOF;IAiIM,UAAU;IACV,UAAU;E3CmgOd;E2CroOF;IAqIM,UAAU;IACV,eAAe;E3CmgOnB;E2CzoOF;IAyIM,UAAU;IACV,UAAU;E3CmgOd;E2C7oOF;IA6IM,UAAU;IACV,eAAe;E3CmgOnB;E2CjpOF;IAiJM,UAAU;IACV,UAAU;E3CmgOd;E2CrpOF;IAqJM,UAAU;IACV,UAAU;E3CmgOd;E2CzpOF;IAyJM,UAAU;IACV,UAAU;E3CmgOd;E2C7pOF;IA6JM,UAAU;IACV,UAAU;E3CmgOd;E2CjqOF;IAiKM,UAAU;IACV,UAAU;E3CmgOd;E2CrqOF;I1C8II,gB0CuBqC;E3CmgOvC;E2CxqOF;I1C8II,qB0C0B0C;E3CmgO5C;E2C3qOF;I1C8II,gB0C6BqC;E3CmgOvC;E2C9qOF;I1C8II,qB0CgC0C;E3CmgO5C;E2CjrOF;I1C8II,gB0CmCqC;E3CmgOvC;E2CprOF;I1C8II,gB0CsCqC;E3CmgOvC;E2CvrOF;I1C8II,gB0CyCqC;E3CmgOvC;E2C1rOF;I1C8II,gB0C4CqC;E3CmgOvC;E2C7rOF;I1C8II,gB0C+CqC;E3CmgOvC;E2ChsOF;IAiMQ,UAAU;IACV,SAA0B;E3CkgOhC;E2CpsOF;I1C8II,e0CuDuD;E3CkgOzD;E2CvsOF;IAiMQ,UAAU;IACV,eAA0B;E3CygOhC;E2C3sOF;I1C8II,qB0CuDuD;E3CygOzD;E2C9sOF;IAiMQ,UAAU;IACV,gBAA0B;E3CghOhC;E2CltOF;I1C8II,sB0CuDuD;E3CghOzD;E2CrtOF;IAiMQ,UAAU;IACV,UAA0B;E3CuhOhC;E2CztOF;I1C8II,gB0CuDuD;E3CuhOzD;E2C5tOF;IAiMQ,UAAU;IACV,gBAA0B;E3C8hOhC;E2ChuOF;I1C8II,sB0CuDuD;E3C8hOzD;E2CnuOF;IAiMQ,UAAU;IACV,gBAA0B;E3CqiOhC;E2CvuOF;I1C8II,sB0CuDuD;E3CqiOzD;E2C1uOF;IAiMQ,UAAU;IACV,UAA0B;E3C4iOhC;E2C9uOF;I1C8II,gB0CuDuD;E3C4iOzD;E2CjvOF;IAiMQ,UAAU;IACV,gBAA0B;E3CmjOhC;E2CrvOF;I1C8II,sB0CuDuD;E3CmjOzD;E2CxvOF;IAiMQ,UAAU;IACV,gBAA0B;E3C0jOhC;E2C5vOF;I1C8II,sB0CuDuD;E3C0jOzD;E2C/vOF;IAiMQ,UAAU;IACV,UAA0B;E3CikOhC;E2CnwOF;I1C8II,gB0CuDuD;E3CikOzD;E2CtwOF;IAiMQ,UAAU;IACV,gBAA0B;E3CwkOhC;E2C1wOF;I1C8II,sB0CuDuD;E3CwkOzD;E2C7wOF;IAiMQ,UAAU;IACV,gBAA0B;E3C+kOhC;E2CjxOF;I1C8II,sB0CuDuD;E3C+kOzD;E2CpxOF;IAiMQ,UAAU;IACV,WAA0B;E3CslOhC;E2CxxOF;I1C8II,iB0CuDuD;E3CslOzD;AACF;;ACjsOE;E0C3FF;IAwMM,UAAU;E3CylOd;E2CjyOF;IA0MM,UAAU;IACV,WAAW;E3C0lOf;E2CryOF;IA6MM,UAAU;IACV,UAAU;E3C2lOd;E2CzyOF;IAgNM,UAAU;IACV,eAAe;E3C4lOnB;E2C7yOF;IAmNM,UAAU;IACV,UAAU;E3C6lOd;E2CjzOF;IAsNM,UAAU;IACV,eAAe;E3C8lOnB;E2CrzOF;IAyNM,UAAU;IACV,UAAU;E3C+lOd;E2CzzOF;IA4NM,UAAU;IACV,UAAU;E3CgmOd;E2C7zOF;IA+NM,UAAU;IACV,UAAU;E3CimOd;E2Cj0OF;IAkOM,UAAU;IACV,UAAU;E3CkmOd;E2Cr0OF;IAqOM,UAAU;IACV,UAAU;E3CmmOd;E2Cz0OF;I1C8II,gB0C0FqC;E3ComOvC;E2C50OF;I1C8II,qB0C4F0C;E3CqmO5C;E2C/0OF;I1C8II,gB0C8FqC;E3CsmOvC;E2Cl1OF;I1C8II,qB0CgG0C;E3CumO5C;E2Cr1OF;I1C8II,gB0CkGqC;E3CwmOvC;E2Cx1OF;I1C8II,gB0CoGqC;E3CymOvC;E2C31OF;I1C8II,gB0CsGqC;E3C0mOvC;E2C91OF;I1C8II,gB0CwGqC;E3C2mOvC;E2Cj2OF;I1C8II,gB0C0GqC;E3C4mOvC;E2Cp2OF;IA2PQ,UAAU;IACV,SAA0B;E3C4mOhC;E2Cx2OF;I1C8II,e0CgHuD;E3C6mOzD;E2C32OF;IA2PQ,UAAU;IACV,eAA0B;E3CmnOhC;E2C/2OF;I1C8II,qB0CgHuD;E3ConOzD;E2Cl3OF;IA2PQ,UAAU;IACV,gBAA0B;E3C0nOhC;E2Ct3OF;I1C8II,sB0CgHuD;E3C2nOzD;E2Cz3OF;IA2PQ,UAAU;IACV,UAA0B;E3CioOhC;E2C73OF;I1C8II,gB0CgHuD;E3CkoOzD;E2Ch4OF;IA2PQ,UAAU;IACV,gBAA0B;E3CwoOhC;E2Cp4OF;I1C8II,sB0CgHuD;E3CyoOzD;E2Cv4OF;IA2PQ,UAAU;IACV,gBAA0B;E3C+oOhC;E2C34OF;I1C8II,sB0CgHuD;E3CgpOzD;E2C94OF;IA2PQ,UAAU;IACV,UAA0B;E3CspOhC;E2Cl5OF;I1C8II,gB0CgHuD;E3CupOzD;E2Cr5OF;IA2PQ,UAAU;IACV,gBAA0B;E3C6pOhC;E2Cz5OF;I1C8II,sB0CgHuD;E3C8pOzD;E2C55OF;IA2PQ,UAAU;IACV,gBAA0B;E3CoqOhC;E2Ch6OF;I1C8II,sB0CgHuD;E3CqqOzD;E2Cn6OF;IA2PQ,UAAU;IACV,UAA0B;E3C2qOhC;E2Cv6OF;I1C8II,gB0CgHuD;E3C4qOzD;E2C16OF;IA2PQ,UAAU;IACV,gBAA0B;E3CkrOhC;E2C96OF;I1C8II,sB0CgHuD;E3CmrOzD;E2Cj7OF;IA2PQ,UAAU;IACV,gBAA0B;E3CyrOhC;E2Cr7OF;I1C8II,sB0CgHuD;E3C0rOzD;E2Cx7OF;IA2PQ,UAAU;IACV,WAA0B;E3CgsOhC;E2C57OF;I1C8II,iB0CgHuD;E3CisOzD;AACF;;ACj2OE;E0C/FF;IAiQM,UAAU;E3CosOd;E2Cr8OF;IAmQM,UAAU;IACV,WAAW;E3CqsOf;E2Cz8OF;IAsQM,UAAU;IACV,UAAU;E3CssOd;E2C78OF;IAyQM,UAAU;IACV,eAAe;E3CusOnB;E2Cj9OF;IA4QM,UAAU;IACV,UAAU;E3CwsOd;E2Cr9OF;IA+QM,UAAU;IACV,eAAe;E3CysOnB;E2Cz9OF;IAkRM,UAAU;IACV,UAAU;E3C0sOd;E2C79OF;IAqRM,UAAU;IACV,UAAU;E3C2sOd;E2Cj+OF;IAwRM,UAAU;IACV,UAAU;E3C4sOd;E2Cr+OF;IA2RM,UAAU;IACV,UAAU;E3C6sOd;E2Cz+OF;IA8RM,UAAU;IACV,UAAU;E3C8sOd;E2C7+OF;I1C8II,gB0CmJqC;E3C+sOvC;E2Ch/OF;I1C8II,qB0CqJ0C;E3CgtO5C;E2Cn/OF;I1C8II,gB0CuJqC;E3CitOvC;E2Ct/OF;I1C8II,qB0CyJ0C;E3CktO5C;E2Cz/OF;I1C8II,gB0C2JqC;E3CmtOvC;E2C5/OF;I1C8II,gB0C6JqC;E3CotOvC;E2C//OF;I1C8II,gB0C+JqC;E3CqtOvC;E2ClgPF;I1C8II,gB0CiKqC;E3CstOvC;E2CrgPF;I1C8II,gB0CmKqC;E3CutOvC;E2CxgPF;IAoTQ,UAAU;IACV,SAA0B;E3CutOhC;E2C5gPF;I1C8II,e0CyKuD;E3CwtOzD;E2C/gPF;IAoTQ,UAAU;IACV,eAA0B;E3C8tOhC;E2CnhPF;I1C8II,qB0CyKuD;E3C+tOzD;E2CthPF;IAoTQ,UAAU;IACV,gBAA0B;E3CquOhC;E2C1hPF;I1C8II,sB0CyKuD;E3CsuOzD;E2C7hPF;IAoTQ,UAAU;IACV,UAA0B;E3C4uOhC;E2CjiPF;I1C8II,gB0CyKuD;E3C6uOzD;E2CpiPF;IAoTQ,UAAU;IACV,gBAA0B;E3CmvOhC;E2CxiPF;I1C8II,sB0CyKuD;E3CovOzD;E2C3iPF;IAoTQ,UAAU;IACV,gBAA0B;E3C0vOhC;E2C/iPF;I1C8II,sB0CyKuD;E3C2vOzD;E2CljPF;IAoTQ,UAAU;IACV,UAA0B;E3CiwOhC;E2CtjPF;I1C8II,gB0CyKuD;E3CkwOzD;E2CzjPF;IAoTQ,UAAU;IACV,gBAA0B;E3CwwOhC;E2C7jPF;I1C8II,sB0CyKuD;E3CywOzD;E2ChkPF;IAoTQ,UAAU;IACV,gBAA0B;E3C+wOhC;E2CpkPF;I1C8II,sB0CyKuD;E3CgxOzD;E2CvkPF;IAoTQ,UAAU;IACV,UAA0B;E3CsxOhC;E2C3kPF;I1C8II,gB0CyKuD;E3CuxOzD;E2C9kPF;IAoTQ,UAAU;IACV,gBAA0B;E3C6xOhC;E2CllPF;I1C8II,sB0CyKuD;E3C8xOzD;E2CrlPF;IAoTQ,UAAU;IACV,gBAA0B;E3CoyOhC;E2CzlPF;I1C8II,sB0CyKuD;E3CqyOzD;E2C5lPF;IAoTQ,UAAU;IACV,WAA0B;E3C2yOhC;E2ChmPF;I1C8II,iB0CyKuD;E3C4yOzD;AACF;;ACt/OI;E0C9GJ;IA0TM,UAAU;E3C+yOd;E2CzmPF;IA4TM,UAAU;IACV,WAAW;E3CgzOf;E2C7mPF;IA+TM,UAAU;IACV,UAAU;E3CizOd;E2CjnPF;IAkUM,UAAU;IACV,eAAe;E3CkzOnB;E2CrnPF;IAqUM,UAAU;IACV,UAAU;E3CmzOd;E2CznPF;IAwUM,UAAU;IACV,eAAe;E3CozOnB;E2C7nPF;IA2UM,UAAU;IACV,UAAU;E3CqzOd;E2CjoPF;IA8UM,UAAU;IACV,UAAU;E3CszOd;E2CroPF;IAiVM,UAAU;IACV,UAAU;E3CuzOd;E2CzoPF;IAoVM,UAAU;IACV,UAAU;E3CwzOd;E2C7oPF;IAuVM,UAAU;IACV,UAAU;E3CyzOd;E2CjpPF;I1C8II,gB0C4MqC;E3C0zOvC;E2CppPF;I1C8II,qB0C8M0C;E3C2zO5C;E2CvpPF;I1C8II,gB0CgNqC;E3C4zOvC;E2C1pPF;I1C8II,qB0CkN0C;E3C6zO5C;E2C7pPF;I1C8II,gB0CoNqC;E3C8zOvC;E2ChqPF;I1C8II,gB0CsNqC;E3C+zOvC;E2CnqPF;I1C8II,gB0CwNqC;E3Cg0OvC;E2CtqPF;I1C8II,gB0C0NqC;E3Ci0OvC;E2CzqPF;I1C8II,gB0C4NqC;E3Ck0OvC;E2C5qPF;IA6WQ,UAAU;IACV,SAA0B;E3Ck0OhC;E2ChrPF;I1C8II,e0CkOuD;E3Cm0OzD;E2CnrPF;IA6WQ,UAAU;IACV,eAA0B;E3Cy0OhC;E2CvrPF;I1C8II,qB0CkOuD;E3C00OzD;E2C1rPF;IA6WQ,UAAU;IACV,gBAA0B;E3Cg1OhC;E2C9rPF;I1C8II,sB0CkOuD;E3Ci1OzD;E2CjsPF;IA6WQ,UAAU;IACV,UAA0B;E3Cu1OhC;E2CrsPF;I1C8II,gB0CkOuD;E3Cw1OzD;E2CxsPF;IA6WQ,UAAU;IACV,gBAA0B;E3C81OhC;E2C5sPF;I1C8II,sB0CkOuD;E3C+1OzD;E2C/sPF;IA6WQ,UAAU;IACV,gBAA0B;E3Cq2OhC;E2CntPF;I1C8II,sB0CkOuD;E3Cs2OzD;E2CttPF;IA6WQ,UAAU;IACV,UAA0B;E3C42OhC;E2C1tPF;I1C8II,gB0CkOuD;E3C62OzD;E2C7tPF;IA6WQ,UAAU;IACV,gBAA0B;E3Cm3OhC;E2CjuPF;I1C8II,sB0CkOuD;E3Co3OzD;E2CpuPF;IA6WQ,UAAU;IACV,gBAA0B;E3C03OhC;E2CxuPF;I1C8II,sB0CkOuD;E3C23OzD;E2C3uPF;IA6WQ,UAAU;IACV,UAA0B;E3Ci4OhC;E2C/uPF;I1C8II,gB0CkOuD;E3Ck4OzD;E2ClvPF;IA6WQ,UAAU;IACV,gBAA0B;E3Cw4OhC;E2CtvPF;I1C8II,sB0CkOuD;E3Cy4OzD;E2CzvPF;IA6WQ,UAAU;IACV,gBAA0B;E3C+4OhC;E2C7vPF;I1C8II,sB0CkOuD;E3Cg5OzD;E2ChwPF;IA6WQ,UAAU;IACV,WAA0B;E3Cs5OhC;E2CpwPF;I1C8II,iB0CkOuD;E3Cu5OzD;AACF;;AC3oPI;E0C7HJ;IAmXM,UAAU;E3C05Od;E2C7wPF;IAqXM,UAAU;IACV,WAAW;E3C25Of;E2CjxPF;IAwXM,UAAU;IACV,UAAU;E3C45Od;E2CrxPF;IA2XM,UAAU;IACV,eAAe;E3C65OnB;E2CzxPF;IA8XM,UAAU;IACV,UAAU;E3C85Od;E2C7xPF;IAiYM,UAAU;IACV,eAAe;E3C+5OnB;E2CjyPF;IAoYM,UAAU;IACV,UAAU;E3Cg6Od;E2CryPF;IAuYM,UAAU;IACV,UAAU;E3Ci6Od;E2CzyPF;IA0YM,UAAU;IACV,UAAU;E3Ck6Od;E2C7yPF;IA6YM,UAAU;IACV,UAAU;E3Cm6Od;E2CjzPF;IAgZM,UAAU;IACV,UAAU;E3Co6Od;E2CrzPF;I1C8II,gB0CqQqC;E3Cq6OvC;E2CxzPF;I1C8II,qB0CuQ0C;E3Cs6O5C;E2C3zPF;I1C8II,gB0CyQqC;E3Cu6OvC;E2C9zPF;I1C8II,qB0C2Q0C;E3Cw6O5C;E2Cj0PF;I1C8II,gB0C6QqC;E3Cy6OvC;E2Cp0PF;I1C8II,gB0C+QqC;E3C06OvC;E2Cv0PF;I1C8II,gB0CiRqC;E3C26OvC;E2C10PF;I1C8II,gB0CmRqC;E3C46OvC;E2C70PF;I1C8II,gB0CqRqC;E3C66OvC;E2Ch1PF;IAsaQ,UAAU;IACV,SAA0B;E3C66OhC;E2Cp1PF;I1C8II,e0C2RuD;E3C86OzD;E2Cv1PF;IAsaQ,UAAU;IACV,eAA0B;E3Co7OhC;E2C31PF;I1C8II,qB0C2RuD;E3Cq7OzD;E2C91PF;IAsaQ,UAAU;IACV,gBAA0B;E3C27OhC;E2Cl2PF;I1C8II,sB0C2RuD;E3C47OzD;E2Cr2PF;IAsaQ,UAAU;IACV,UAA0B;E3Ck8OhC;E2Cz2PF;I1C8II,gB0C2RuD;E3Cm8OzD;E2C52PF;IAsaQ,UAAU;IACV,gBAA0B;E3Cy8OhC;E2Ch3PF;I1C8II,sB0C2RuD;E3C08OzD;E2Cn3PF;IAsaQ,UAAU;IACV,gBAA0B;E3Cg9OhC;E2Cv3PF;I1C8II,sB0C2RuD;E3Ci9OzD;E2C13PF;IAsaQ,UAAU;IACV,UAA0B;E3Cu9OhC;E2C93PF;I1C8II,gB0C2RuD;E3Cw9OzD;E2Cj4PF;IAsaQ,UAAU;IACV,gBAA0B;E3C89OhC;E2Cr4PF;I1C8II,sB0C2RuD;E3C+9OzD;E2Cx4PF;IAsaQ,UAAU;IACV,gBAA0B;E3Cq+OhC;E2C54PF;I1C8II,sB0C2RuD;E3Cs+OzD;E2C/4PF;IAsaQ,UAAU;IACV,UAA0B;E3C4+OhC;E2Cn5PF;I1C8II,gB0C2RuD;E3C6+OzD;E2Ct5PF;IAsaQ,UAAU;IACV,gBAA0B;E3Cm/OhC;E2C15PF;I1C8II,sB0C2RuD;E3Co/OzD;E2C75PF;IAsaQ,UAAU;IACV,gBAA0B;E3C0/OhC;E2Cj6PF;I1C8II,sB0C2RuD;E3C2/OzD;E2Cp6PF;IAsaQ,UAAU;IACV,WAA0B;E3CigPhC;E2Cx6PF;I1C8II,iB0C2RuD;E3CkgPzD;AACF;;A2CjgPA;E1C7RI,qB0ChJgB;E1CgJhB,sB0ChJgB;EAgblB,oBAhbkB;A3Co7PpB;;A2CvgPA;EAKI,uBAlbgB;A3Cw7PpB;;A2C3gPA;EAOI,qCAA4C;A3CwgPhD;;A2C/gPA;EAUI,uBAAuB;A3CygP3B;;A2CnhPA;E1C7RI,c0CySiC;E1CzSjC,e0C0SiC;EACjC,aAAa;A3C2gPjB;;A2CzhPA;EAgBM,SAAS;EACT,qBAAqB;A3C6gP3B;;A2C9hPA;EAmBM,qBAAqB;A3C+gP3B;;A2CliPA;EAqBM,gBAAgB;A3CihPtB;;A2CtiPA;EAuBI,aAAa;A3CmhPjB;;A2C1iPA;EAyBI,eAAe;A3CqhPnB;;A2C9iPA;EA2BI,mBAAmB;A3CuhPvB;;AC14PE;E0CwVF;IA+BM,aAAa;E3CwhPjB;AACF;;ACp4PE;E0C4UF;IAmCM,aAAa;E3C0hPjB;AACF;;A2CxhPE;EACE,oBAAY;E1CpUZ,wC0CqU2D;E1CrU3D,yC0CsU2D;A3C2hP/D;;A2C9hPE;EAKI,8BAA8B;EAC9B,+BAA+B;A3C6hPrC;;A2CniPE;EASM,iBAAY;A3C8hPpB;;ACz6PE;E0CkYA;IAYQ,iBAAY;E3CgiPpB;AACF;;AC36PE;E0C8XA;IAeQ,iBAAY;E3CmiPpB;AACF;;AC76PE;E0C0XA;IAkBQ,iBAAY;E3CsiPpB;AACF;;AC/6PE;E0CsXA;IAqBQ,iBAAY;E3CyiPpB;AACF;;ACj7PE;E0CkXA;IAwBQ,iBAAY;E3C4iPpB;AACF;;ACl7PI;E0C6WF;IA2BQ,iBAAY;E3C+iPpB;AACF;;AC96PI;E0CmWF;IA8BQ,iBAAY;E3CkjPpB;AACF;;AC/6PI;E0C8VF;IAiCQ,iBAAY;E3CqjPpB;AACF;;AC36PI;E0CoVF;IAoCQ,iBAAY;E3CwjPpB;AACF;;A2C7lPE;EASM,oBAAY;A3CwlPpB;;ACn+PE;E0CkYA;IAYQ,oBAAY;E3C0lPpB;AACF;;ACr+PE;E0C8XA;IAeQ,oBAAY;E3C6lPpB;AACF;;ACv+PE;E0C0XA;IAkBQ,oBAAY;E3CgmPpB;AACF;;ACz+PE;E0CsXA;IAqBQ,oBAAY;E3CmmPpB;AACF;;AC3+PE;E0CkXA;IAwBQ,oBAAY;E3CsmPpB;AACF;;AC5+PI;E0C6WF;IA2BQ,oBAAY;E3CymPpB;AACF;;ACx+PI;E0CmWF;IA8BQ,oBAAY;E3C4mPpB;AACF;;ACz+PI;E0C8VF;IAiCQ,oBAAY;E3C+mPpB;AACF;;ACr+PI;E0CoVF;IAoCQ,oBAAY;E3CknPpB;AACF;;A2CvpPE;EASM,mBAAY;A3CkpPpB;;AC7hQE;E0CkYA;IAYQ,mBAAY;E3CopPpB;AACF;;AC/hQE;E0C8XA;IAeQ,mBAAY;E3CupPpB;AACF;;ACjiQE;E0C0XA;IAkBQ,mBAAY;E3C0pPpB;AACF;;ACniQE;E0CsXA;IAqBQ,mBAAY;E3C6pPpB;AACF;;ACriQE;E0CkXA;IAwBQ,mBAAY;E3CgqPpB;AACF;;ACtiQI;E0C6WF;IA2BQ,mBAAY;E3CmqPpB;AACF;;ACliQI;E0CmWF;IA8BQ,mBAAY;E3CsqPpB;AACF;;ACniQI;E0C8VF;IAiCQ,mBAAY;E3CyqPpB;AACF;;AC/hQI;E0CoVF;IAoCQ,mBAAY;E3C4qPpB;AACF;;A2CjtPE;EASM,oBAAY;A3C4sPpB;;ACvlQE;E0CkYA;IAYQ,oBAAY;E3C8sPpB;AACF;;ACzlQE;E0C8XA;IAeQ,oBAAY;E3CitPpB;AACF;;AC3lQE;E0C0XA;IAkBQ,oBAAY;E3CotPpB;AACF;;AC7lQE;E0CsXA;IAqBQ,oBAAY;E3CutPpB;AACF;;AC/lQE;E0CkXA;IAwBQ,oBAAY;E3C0tPpB;AACF;;AChmQI;E0C6WF;IA2BQ,oBAAY;E3C6tPpB;AACF;;AC5lQI;E0CmWF;IA8BQ,oBAAY;E3CguPpB;AACF;;AC7lQI;E0C8VF;IAiCQ,oBAAY;E3CmuPpB;AACF;;ACzlQI;E0CoVF;IAoCQ,oBAAY;E3CsuPpB;AACF;;A2C3wPE;EASM,iBAAY;A3CswPpB;;ACjpQE;E0CkYA;IAYQ,iBAAY;E3CwwPpB;AACF;;ACnpQE;E0C8XA;IAeQ,iBAAY;E3C2wPpB;AACF;;ACrpQE;E0C0XA;IAkBQ,iBAAY;E3C8wPpB;AACF;;ACvpQE;E0CsXA;IAqBQ,iBAAY;E3CixPpB;AACF;;ACzpQE;E0CkXA;IAwBQ,iBAAY;E3CoxPpB;AACF;;AC1pQI;E0C6WF;IA2BQ,iBAAY;E3CuxPpB;AACF;;ACtpQI;E0CmWF;IA8BQ,iBAAY;E3C0xPpB;AACF;;ACvpQI;E0C8VF;IAiCQ,iBAAY;E3C6xPpB;AACF;;ACnpQI;E0CoVF;IAoCQ,iBAAY;E3CgyPpB;AACF;;A2Cr0PE;EASM,oBAAY;A3Cg0PpB;;AC3sQE;E0CkYA;IAYQ,oBAAY;E3Ck0PpB;AACF;;AC7sQE;E0C8XA;IAeQ,oBAAY;E3Cq0PpB;AACF;;AC/sQE;E0C0XA;IAkBQ,oBAAY;E3Cw0PpB;AACF;;ACjtQE;E0CsXA;IAqBQ,oBAAY;E3C20PpB;AACF;;ACntQE;E0CkXA;IAwBQ,oBAAY;E3C80PpB;AACF;;ACptQI;E0C6WF;IA2BQ,oBAAY;E3Ci1PpB;AACF;;AChtQI;E0CmWF;IA8BQ,oBAAY;E3Co1PpB;AACF;;ACjtQI;E0C8VF;IAiCQ,oBAAY;E3Cu1PpB;AACF;;AC7sQI;E0CoVF;IAoCQ,oBAAY;E3C01PpB;AACF;;A2C/3PE;EASM,mBAAY;A3C03PpB;;ACrwQE;E0CkYA;IAYQ,mBAAY;E3C43PpB;AACF;;ACvwQE;E0C8XA;IAeQ,mBAAY;E3C+3PpB;AACF;;ACzwQE;E0C0XA;IAkBQ,mBAAY;E3Ck4PpB;AACF;;AC3wQE;E0CsXA;IAqBQ,mBAAY;E3Cq4PpB;AACF;;AC7wQE;E0CkXA;IAwBQ,mBAAY;E3Cw4PpB;AACF;;AC9wQI;E0C6WF;IA2BQ,mBAAY;E3C24PpB;AACF;;AC1wQI;E0CmWF;IA8BQ,mBAAY;E3C84PpB;AACF;;AC3wQI;E0C8VF;IAiCQ,mBAAY;E3Ci5PpB;AACF;;ACvwQI;E0CoVF;IAoCQ,mBAAY;E3Co5PpB;AACF;;A2Cz7PE;EASM,oBAAY;A3Co7PpB;;AC/zQE;E0CkYA;IAYQ,oBAAY;E3Cs7PpB;AACF;;ACj0QE;E0C8XA;IAeQ,oBAAY;E3Cy7PpB;AACF;;ACn0QE;E0C0XA;IAkBQ,oBAAY;E3C47PpB;AACF;;ACr0QE;E0CsXA;IAqBQ,oBAAY;E3C+7PpB;AACF;;ACv0QE;E0CkXA;IAwBQ,oBAAY;E3Ck8PpB;AACF;;ACx0QI;E0C6WF;IA2BQ,oBAAY;E3Cq8PpB;AACF;;ACp0QI;E0CmWF;IA8BQ,oBAAY;E3Cw8PpB;AACF;;ACr0QI;E0C8VF;IAiCQ,oBAAY;E3C28PpB;AACF;;ACj0QI;E0CoVF;IAoCQ,oBAAY;E3C88PpB;AACF;;A2Cn/PE;EASM,iBAAY;A3C8+PpB;;ACz3QE;E0CkYA;IAYQ,iBAAY;E3Cg/PpB;AACF;;AC33QE;E0C8XA;IAeQ,iBAAY;E3Cm/PpB;AACF;;AC73QE;E0C0XA;IAkBQ,iBAAY;E3Cs/PpB;AACF;;AC/3QE;E0CsXA;IAqBQ,iBAAY;E3Cy/PpB;AACF;;ACj4QE;E0CkXA;IAwBQ,iBAAY;E3C4/PpB;AACF;;ACl4QI;E0C6WF;IA2BQ,iBAAY;E3C+/PpB;AACF;;AC93QI;E0CmWF;IA8BQ,iBAAY;E3CkgQpB;AACF;;AC/3QI;E0C8VF;IAiCQ,iBAAY;E3CqgQpB;AACF;;AC33QI;E0CoVF;IAoCQ,iBAAY;E3CwgQpB;AACF;;A4C9/QA;EACE,oBAAoB;EACpB,cAAc;EACd,aAAa;EACb,YAAY;EACZ,cAAc;EACd,+BAAuB;EAAvB,4BAAuB;EAAvB,uBAAuB;A5CigRzB;;A4CvgRA;EASI,qBAA+B;EAC/B,sBAAgC;EAChC,oBAA8B;A5CkgRlC;;A4C7gRA;EAaM,uBAAiC;A5CogRvC;;A4CjhRA;EAeM,sBAjBgB;A5CuhRtB;;A4CrhRA;EAiBI,oBAAoB;A5CwgRxB;;A4CzhRA;EAmBI,gBArBkB;A5C+hRtB;;A4C7hRA;EAqBI,sBAAsB;A5C4gR1B;;A4CjiRA;EAuBM,gCAAgC;A5C8gRtC;;ACl9QE;E2CnFF;IA2BM,aAAa;E5C+gRjB;E4C1iRF;IA8BQ,UAAU;IACV,eAAuB;E5C+gR7B;E4C9iRF;IA8BQ,UAAU;IACV,gBAAuB;E5CmhR7B;E4CljRF;IA8BQ,UAAU;IACV,UAAuB;E5CuhR7B;E4CtjRF;IA8BQ,UAAU;IACV,gBAAuB;E5C2hR7B;E4C1jRF;IA8BQ,UAAU;IACV,gBAAuB;E5C+hR7B;E4C9jRF;IA8BQ,UAAU;IACV,UAAuB;E5CmiR7B;E4ClkRF;IA8BQ,UAAU;IACV,gBAAuB;E5CuiR7B;E4CtkRF;IA8BQ,UAAU;IACV,gBAAuB;E5C2iR7B;E4C1kRF;IA8BQ,UAAU;IACV,UAAuB;E5C+iR7B;E4C9kRF;IA8BQ,UAAU;IACV,gBAAuB;E5CmjR7B;E4CllRF;IA8BQ,UAAU;IACV,gBAAuB;E5CujR7B;E4CtlRF;IA8BQ,UAAU;IACV,WAAuB;E5C2jR7B;AACF;;A6C7lRA,kBAAA;ACEE;EACE,uBAAwB;A9C+lR5B;;A8C9lRE;EAGI,yBAA0C;A9C+lRhD;;A8C9lRE;EACE,kCAAmC;A9CimRvC;;A8CxmRE;EACE,yBAAwB;A9C2mR5B;;A8C1mRE;EAGI,uBAA0C;A9C2mRhD;;A8C1mRE;EACE,oCAAmC;A9C6mRvC;;A8CpnRE;EACE,4BAAwB;A9CunR5B;;A8CtnRE;EAGI,yBAA0C;A9CunRhD;;A8CtnRE;EACE,uCAAmC;A9CynRvC;;A8ChoRE;EACE,yBAAwB;A9CmoR5B;;A8CloRE;EAGI,yBAA0C;A9CmoRhD;;A8CloRE;EACE,oCAAmC;A9CqoRvC;;A8C5oRE;EACE,yBAAwB;A9C+oR5B;;A8C9oRE;EAGI,yBAA0C;A9C+oRhD;;A8C9oRE;EACE,oCAAmC;A9CipRvC;;A8C5oRI;EACE,yBAA8B;A9C+oRpC;;A8C9oRI;EAGI,yBAAgD;A9C+oRxD;;A8C9oRI;EACE,oCAAyC;A9CipR/C;;A8C/oRI;EACE,yBAA6B;A9CkpRnC;;A8CjpRI;EAGI,yBAAgD;A9CkpRxD;;A8CjpRI;EACE,oCAAwC;A9CopR9C;;A8ChrRE;EACE,yBAAwB;A9CmrR5B;;A8ClrRE;EAGI,yBAA0C;A9CmrRhD;;A8ClrRE;EACE,oCAAmC;A9CqrRvC;;A8ChrRI;EACE,yBAA8B;A9CmrRpC;;A8ClrRI;EAGI,yBAAgD;A9CmrRxD;;A8ClrRI;EACE,oCAAyC;A9CqrR/C;;A8CnrRI;EACE,yBAA6B;A9CsrRnC;;A8CrrRI;EAGI,yBAAgD;A9CsrRxD;;A8CrrRI;EACE,oCAAwC;A9CwrR9C;;A8CptRE;EACE,yBAAwB;A9CutR5B;;A8CttRE;EAGI,yBAA0C;A9CutRhD;;A8CttRE;EACE,oCAAmC;A9CytRvC;;A8CptRI;EACE,yBAA8B;A9CutRpC;;A8CttRI;EAGI,yBAAgD;A9CutRxD;;A8CttRI;EACE,oCAAyC;A9CytR/C;;A8CvtRI;EACE,yBAA6B;A9C0tRnC;;A8CztRI;EAGI,yBAAgD;A9C0tRxD;;A8CztRI;EACE,oCAAwC;A9C4tR9C;;A8CxvRE;EACE,yBAAwB;A9C2vR5B;;A8C1vRE;EAGI,yBAA0C;A9C2vRhD;;A8C1vRE;EACE,oCAAmC;A9C6vRvC;;A8CxvRI;EACE,yBAA8B;A9C2vRpC;;A8C1vRI;EAGI,yBAAgD;A9C2vRxD;;A8C1vRI;EACE,oCAAyC;A9C6vR/C;;A8C3vRI;EACE,yBAA6B;A9C8vRnC;;A8C7vRI;EAGI,yBAAgD;A9C8vRxD;;A8C7vRI;EACE,oCAAwC;A9CgwR9C;;A8C5xRE;EACE,yBAAwB;A9C+xR5B;;A8C9xRE;EAGI,yBAA0C;A9C+xRhD;;A8C9xRE;EACE,oCAAmC;A9CiyRvC;;A8C5xRI;EACE,yBAA8B;A9C+xRpC;;A8C9xRI;EAGI,yBAAgD;A9C+xRxD;;A8C9xRI;EACE,oCAAyC;A9CiyR/C;;A8C/xRI;EACE,yBAA6B;A9CkyRnC;;A8CjyRI;EAGI,yBAAgD;A9CkyRxD;;A8CjyRI;EACE,oCAAwC;A9CoyR9C;;A8Ch0RE;EACE,yBAAwB;A9Cm0R5B;;A8Cl0RE;EAGI,yBAA0C;A9Cm0RhD;;A8Cl0RE;EACE,oCAAmC;A9Cq0RvC;;A8Ch0RI;EACE,yBAA8B;A9Cm0RpC;;A8Cl0RI;EAGI,yBAAgD;A9Cm0RxD;;A8Cl0RI;EACE,oCAAyC;A9Cq0R/C;;A8Cn0RI;EACE,yBAA6B;A9Cs0RnC;;A8Cr0RI;EAGI,yBAAgD;A9Cs0RxD;;A8Cr0RI;EACE,oCAAwC;A9Cw0R9C;;A8Cr0RE;EACE,yBAAwB;A9Cw0R5B;;A8Cv0RE;EACE,oCAAmC;A9C00RvC;;A8C70RE;EACE,yBAAwB;A9Cg1R5B;;A8C/0RE;EACE,oCAAmC;A9Ck1RvC;;A8Cr1RE;EACE,yBAAwB;A9Cw1R5B;;A8Cv1RE;EACE,oCAAmC;A9C01RvC;;A8C71RE;EACE,yBAAwB;A9Cg2R5B;;A8C/1RE;EACE,oCAAmC;A9Ck2RvC;;A8Cr2RE;EACE,yBAAwB;A9Cw2R5B;;A8Cv2RE;EACE,oCAAmC;A9C02RvC;;A8C72RE;EACE,yBAAwB;A9Cg3R5B;;A8C/2RE;EACE,oCAAmC;A9Ck3RvC;;A8Cr3RE;EACE,yBAAwB;A9Cw3R5B;;A8Cv3RE;EACE,oCAAmC;A9C03RvC;;A8C73RE;EACE,4BAAwB;A9Cg4R5B;;A8C/3RE;EACE,uCAAmC;A9Ck4RvC;;A8Cr4RE;EACE,yBAAwB;A9Cw4R5B;;A8Cv4RE;EACE,oCAAmC;A9C04RvC;;A+C56RE;EACE,8BAAiC;A/C+6RrC;;A+Ch7RE;EACE,sCAAiC;A/Cm7RrC;;A+Cp7RE;EACE,iCAAiC;A/Cu7RrC;;A+Cx7RE;EACE,yCAAiC;A/C27RrC;;A+Cv7RE;EACE,4BAA4B;A/C07RhC;;A+C37RE;EACE,0BAA4B;A/C87RhC;;A+C/7RE;EACE,kCAA4B;A/Ck8RhC;;A+C97RE;EACE,sCAAkC;A/Ci8RtC;;A+Cl8RE;EACE,oCAAkC;A/Cq8RtC;;A+Ct8RE;EACE,kCAAkC;A/Cy8RtC;;A+C18RE;EACE,yCAAkC;A/C68RtC;;A+C98RE;EACE,wCAAkC;A/Ci9RtC;;A+Cl9RE;EACE,wCAAkC;A/Cq9RtC;;A+Ct9RE;EACE,iCAAkC;A/Cy9RtC;;A+C19RE;EACE,+BAAkC;A/C69RtC;;A+C99RE;EACE,gCAAkC;A/Ci+RtC;;A+Cl+RE;EACE,iCAAkC;A/Cq+RtC;;A+Cj+RE;EACE,oCAAgC;A/Co+RpC;;A+Cr+RE;EACE,kCAAgC;A/Cw+RpC;;A+Cz+RE;EACE,gCAAgC;A/C4+RpC;;A+C7+RE;EACE,uCAAgC;A/Cg/RpC;;A+Cj/RE;EACE,sCAAgC;A/Co/RpC;;A+Cr/RE;EACE,sCAAgC;A/Cw/RpC;;A+Cz/RE;EACE,iCAAgC;A/C4/RpC;;A+C7/RE;EACE,+BAAgC;A/CggSpC;;A+CjgSE;EACE,6BAAgC;A/CogSpC;;A+CrgSE;EACE,kCAAgC;A/CwgSpC;;A+CpgSE;EACE,+BAA8B;A/CugSlC;;A+CxgSE;EACE,kCAA8B;A/C2gSlC;;A+C5gSE;EACE,gCAA8B;A/C+gSlC;;A+ChhSE;EACE,8BAA8B;A/CmhSlC;;A+CphSE;EACE,gCAA8B;A/CuhSlC;;A+CxhSE;EACE,6BAA8B;A/C2hSlC;;A+C5hSE;EACE,2BAA8B;A/C+hSlC;;A+ChiSE;EACE,kCAA8B;A/CmiSlC;;A+CpiSE;EACE,gCAA8B;A/CuiSlC;;A+CniSE;EACE,2BAA6B;A/CsiSjC;;A+CviSE;EACE,iCAA6B;A/C0iSjC;;A+C3iSE;EACE,+BAA6B;A/C8iSjC;;A+C/iSE;EACE,6BAA6B;A/CkjSjC;;A+CnjSE;EACE,+BAA6B;A/CsjSjC;;A+CvjSE;EACE,8BAA6B;A/C0jSjC;;A+CrjSI;EACE,uBAAqC;A/CwjS3C;;A+CzjSI;EACE,uBAAqC;A/C4jS3C;;A+C7jSI;EACE,uBAAqC;A/CgkS3C;;A+CjkSI;EACE,uBAAqC;A/CokS3C;;A+CrkSI;EACE,uBAAqC;A/CwkS3C;;A+CzkSI;EACE,uBAAqC;A/C4kS3C;;A+C7kSI;EACE,yBAAqC;A/CglS3C;;A+CjlSI;EACE,yBAAqC;A/ColS3C;;A+CrlSI;EACE,yBAAqC;A/CwlS3C;;A+CzlSI;EACE,yBAAqC;A/C4lS3C;;A+C7lSI;EACE,yBAAqC;A/CgmS3C;;A+CjmSI;EACE,yBAAqC;A/ComS3C;;ACnoSE;EACE,WAAW;EACX,YAAY;EACZ,cAAc;ADsoSlB;;AgDzoSA;EACE,sBAAsB;AhD4oSxB;;AgD1oSA;EACE,uBAAuB;AhD6oSzB;;AiDppSA;EACE,2BAA2B;AjDupS7B;;AiDrpSA;EACE,2BAA2B;AjDwpS7B;;AiDtpSA;EACE,0BAA0B;AjDypS5B;;AkDhqSA;EACE,2BAA2B;AlDmqS7B;;AmDjqSA;EACE,6BAA6B;AnDoqS/B;;AoDxqSA;EACE,oBAAoB;ApD2qStB;;AoDzqSA;EACE,qBAAqB;ApD4qSvB;;AoDjqSI;EACE,oBAA+B;ApDoqSrC;;AoDjqSM;EACE,wBAA8C;ApDoqStD;;AoDrqSM;EACE,0BAA8C;ApDwqStD;;AoDzqSM;EACE,2BAA8C;ApD4qStD;;AoD7qSM;EACE,yBAA8C;ApDgrStD;;AoD7qSM;EACE,yBAAyC;EACzC,0BAA2C;ApDgrSnD;;AoD7qSM;EACE,wBAAuC;EACvC,2BAA6C;ApDgrSrD;;AoD/rSI;EACE,0BAA+B;ApDksSrC;;AoD/rSM;EACE,8BAA8C;ApDksStD;;AoDnsSM;EACE,gCAA8C;ApDssStD;;AoDvsSM;EACE,iCAA8C;ApD0sStD;;AoD3sSM;EACE,+BAA8C;ApD8sStD;;AoD3sSM;EACE,+BAAyC;EACzC,gCAA2C;ApD8sSnD;;AoD3sSM;EACE,8BAAuC;EACvC,iCAA6C;ApD8sSrD;;AoD7tSI;EACE,yBAA+B;ApDguSrC;;AoD7tSM;EACE,6BAA8C;ApDguStD;;AoDjuSM;EACE,+BAA8C;ApDouStD;;AoDruSM;EACE,gCAA8C;ApDwuStD;;AoDzuSM;EACE,8BAA8C;ApD4uStD;;AoDzuSM;EACE,8BAAyC;EACzC,+BAA2C;ApD4uSnD;;AoDzuSM;EACE,6BAAuC;EACvC,gCAA6C;ApD4uSrD;;AoD3vSI;EACE,0BAA+B;ApD8vSrC;;AoD3vSM;EACE,8BAA8C;ApD8vStD;;AoD/vSM;EACE,gCAA8C;ApDkwStD;;AoDnwSM;EACE,iCAA8C;ApDswStD;;AoDvwSM;EACE,+BAA8C;ApD0wStD;;AoDvwSM;EACE,+BAAyC;EACzC,gCAA2C;ApD0wSnD;;AoDvwSM;EACE,8BAAuC;EACvC,iCAA6C;ApD0wSrD;;AoDzxSI;EACE,uBAA+B;ApD4xSrC;;AoDzxSM;EACE,2BAA8C;ApD4xStD;;AoD7xSM;EACE,6BAA8C;ApDgyStD;;AoDjySM;EACE,8BAA8C;ApDoyStD;;AoDrySM;EACE,4BAA8C;ApDwyStD;;AoDrySM;EACE,4BAAyC;EACzC,6BAA2C;ApDwySnD;;AoDrySM;EACE,2BAAuC;EACvC,8BAA6C;ApDwySrD;;AoDvzSI;EACE,yBAA+B;ApD0zSrC;;AoDvzSM;EACE,6BAA8C;ApD0zStD;;AoD3zSM;EACE,+BAA8C;ApD8zStD;;AoD/zSM;EACE,gCAA8C;ApDk0StD;;AoDn0SM;EACE,8BAA8C;ApDs0StD;;AoDn0SM;EACE,8BAAyC;EACzC,+BAA2C;ApDs0SnD;;AoDn0SM;EACE,6BAAuC;EACvC,gCAA6C;ApDs0SrD;;AoDr1SI;EACE,uBAA+B;ApDw1SrC;;AoDr1SM;EACE,2BAA8C;ApDw1StD;;AoDz1SM;EACE,6BAA8C;ApD41StD;;AoD71SM;EACE,8BAA8C;ApDg2StD;;AoDj2SM;EACE,4BAA8C;ApDo2StD;;AoDj2SM;EACE,4BAAyC;EACzC,6BAA2C;ApDo2SnD;;AoDj2SM;EACE,2BAAuC;EACvC,8BAA6C;ApDo2SrD;;AoDn3SI;EACE,qBAA+B;ApDs3SrC;;AoDn3SM;EACE,yBAA8C;ApDs3StD;;AoDv3SM;EACE,2BAA8C;ApD03StD;;AoD33SM;EACE,4BAA8C;ApD83StD;;AoD/3SM;EACE,0BAA8C;ApDk4StD;;AoD/3SM;EACE,0BAAyC;EACzC,2BAA2C;ApDk4SnD;;AoD/3SM;EACE,yBAAuC;EACvC,4BAA6C;ApDk4SrD;;AoDj5SI;EACE,2BAA+B;ApDo5SrC;;AoDj5SM;EACE,+BAA8C;ApDo5StD;;AoDr5SM;EACE,iCAA8C;ApDw5StD;;AoDz5SM;EACE,kCAA8C;ApD45StD;;AoD75SM;EACE,gCAA8C;ApDg6StD;;AoD75SM;EACE,gCAAyC;EACzC,iCAA2C;ApDg6SnD;;AoD75SM;EACE,+BAAuC;EACvC,kCAA6C;ApDg6SrD;;AoD/6SI;EACE,0BAA+B;ApDk7SrC;;AoD/6SM;EACE,8BAA8C;ApDk7StD;;AoDn7SM;EACE,gCAA8C;ApDs7StD;;AoDv7SM;EACE,iCAA8C;ApD07StD;;AoD37SM;EACE,+BAA8C;ApD87StD;;AoD37SM;EACE,+BAAyC;EACzC,gCAA2C;ApD87SnD;;AoD37SM;EACE,8BAAuC;EACvC,iCAA6C;ApD87SrD;;AoD78SI;EACE,2BAA+B;ApDg9SrC;;AoD78SM;EACE,+BAA8C;ApDg9StD;;AoDj9SM;EACE,iCAA8C;ApDo9StD;;AoDr9SM;EACE,kCAA8C;ApDw9StD;;AoDz9SM;EACE,gCAA8C;ApD49StD;;AoDz9SM;EACE,gCAAyC;EACzC,iCAA2C;ApD49SnD;;AoDz9SM;EACE,+BAAuC;EACvC,kCAA6C;ApD49SrD;;AoD3+SI;EACE,wBAA+B;ApD8+SrC;;AoD3+SM;EACE,4BAA8C;ApD8+StD;;AoD/+SM;EACE,8BAA8C;ApDk/StD;;AoDn/SM;EACE,+BAA8C;ApDs/StD;;AoDv/SM;EACE,6BAA8C;ApD0/StD;;AoDv/SM;EACE,6BAAyC;EACzC,8BAA2C;ApD0/SnD;;AoDv/SM;EACE,4BAAuC;EACvC,+BAA6C;ApD0/SrD;;AoDzgTI;EACE,0BAA+B;ApD4gTrC;;AoDzgTM;EACE,8BAA8C;ApD4gTtD;;AoD7gTM;EACE,gCAA8C;ApDghTtD;;AoDjhTM;EACE,iCAA8C;ApDohTtD;;AoDrhTM;EACE,+BAA8C;ApDwhTtD;;AoDrhTM;EACE,+BAAyC;EACzC,gCAA2C;ApDwhTnD;;AoDrhTM;EACE,8BAAuC;EACvC,iCAA6C;ApDwhTrD;;AoDviTI;EACE,wBAA+B;ApD0iTrC;;AoDviTM;EACE,4BAA8C;ApD0iTtD;;AoD3iTM;EACE,8BAA8C;ApD8iTtD;;AoD/iTM;EACE,+BAA8C;ApDkjTtD;;AoDnjTM;EACE,6BAA8C;ApDsjTtD;;AoDnjTM;EACE,6BAAyC;EACzC,8BAA2C;ApDsjTnD;;AoDnjTM;EACE,4BAAuC;EACvC,+BAA6C;ApDsjTrD;;AqDjlTI;EACE,0BAA2B;ArDolTjC;;AqDrlTI;EACE,4BAA2B;ArDwlTjC;;AqDzlTI;EACE,0BAA2B;ArD4lTjC;;AqD7lTI;EACE,4BAA2B;ArDgmTjC;;AqDjmTI;EACE,6BAA2B;ArDomTjC;;AqDrmTI;EACE,0BAA2B;ArDwmTjC;;AqDzmTI;EACE,6BAA2B;ArD4mTjC;;AC/hTE;EoD9EE;IACE,0BAA2B;ErDinT/B;EqDlnTE;IACE,4BAA2B;ErDonT/B;EqDrnTE;IACE,0BAA2B;ErDunT/B;EqDxnTE;IACE,4BAA2B;ErD0nT/B;EqD3nTE;IACE,6BAA2B;ErD6nT/B;EqD9nTE;IACE,0BAA2B;ErDgoT/B;EqDjoTE;IACE,6BAA2B;ErDmoT/B;AACF;;ACnjTE;EoDlFE;IACE,0BAA2B;ErDyoT/B;EqD1oTE;IACE,4BAA2B;ErD4oT/B;EqD7oTE;IACE,0BAA2B;ErD+oT/B;EqDhpTE;IACE,4BAA2B;ErDkpT/B;EqDnpTE;IACE,6BAA2B;ErDqpT/B;EqDtpTE;IACE,0BAA2B;ErDwpT/B;EqDzpTE;IACE,6BAA2B;ErD2pT/B;AACF;;ACnkTE;EoD1FE;IACE,0BAA2B;ErDiqT/B;EqDlqTE;IACE,4BAA2B;ErDoqT/B;EqDrqTE;IACE,0BAA2B;ErDuqT/B;EqDxqTE;IACE,4BAA2B;ErD0qT/B;EqD3qTE;IACE,6BAA2B;ErD6qT/B;EqD9qTE;IACE,0BAA2B;ErDgrT/B;EqDjrTE;IACE,6BAA2B;ErDmrT/B;AACF;;ACvlTE;EoD9FE;IACE,0BAA2B;ErDyrT/B;EqD1rTE;IACE,4BAA2B;ErD4rT/B;EqD7rTE;IACE,0BAA2B;ErD+rT/B;EqDhsTE;IACE,4BAA2B;ErDksT/B;EqDnsTE;IACE,6BAA2B;ErDqsT/B;EqDtsTE;IACE,0BAA2B;ErDwsT/B;EqDzsTE;IACE,6BAA2B;ErD2sT/B;AACF;;AChmTI;EoD7GA;IACE,0BAA2B;ErDitT/B;EqDltTE;IACE,4BAA2B;ErDotT/B;EqDrtTE;IACE,0BAA2B;ErDutT/B;EqDxtTE;IACE,4BAA2B;ErD0tT/B;EqD3tTE;IACE,6BAA2B;ErD6tT/B;EqD9tTE;IACE,0BAA2B;ErDguT/B;EqDjuTE;IACE,6BAA2B;ErDmuT/B;AACF;;ACzmTI;EoD5HA;IACE,0BAA2B;ErDyuT/B;EqD1uTE;IACE,4BAA2B;ErD4uT/B;EqD7uTE;IACE,0BAA2B;ErD+uT/B;EqDhvTE;IACE,4BAA2B;ErDkvT/B;EqDnvTE;IACE,6BAA2B;ErDqvT/B;EqDtvTE;IACE,0BAA2B;ErDwvT/B;EqDzvTE;IACE,6BAA2B;ErD2vT/B;AACF;;AqDnuTE;EACE,6BAAqC;ArDsuTzC;;AqDvuTE;EACE,8BAAqC;ArD0uTzC;;AqD3uTE;EACE,2BAAqC;ArD8uTzC;;AqD/uTE;EACE,4BAAqC;ArDkvTzC;;AC/rTE;EoD/CE;IACE,6BAAqC;ErDkvTzC;AACF;;ACjsTE;EoDhDE;IACE,6BAAqC;ErDqvTzC;AACF;;ACnsTE;EoDjDE;IACE,6BAAqC;ErDwvTzC;AACF;;ACrsTE;EoDlDE;IACE,6BAAqC;ErD2vTzC;AACF;;ACvsTE;EoDnDE;IACE,6BAAqC;ErD8vTzC;AACF;;ACxsTI;EoDrDA;IACE,6BAAqC;ErDiwTzC;AACF;;ACpsTI;EoD5DA;IACE,6BAAqC;ErDowTzC;AACF;;ACrsTI;EoD9DA;IACE,6BAAqC;ErDuwTzC;AACF;;ACjsTI;EoDrEA;IACE,6BAAqC;ErD0wTzC;AACF;;ACrvTE;EoD/CE;IACE,8BAAqC;ErDwyTzC;AACF;;ACvvTE;EoDhDE;IACE,8BAAqC;ErD2yTzC;AACF;;ACzvTE;EoDjDE;IACE,8BAAqC;ErD8yTzC;AACF;;AC3vTE;EoDlDE;IACE,8BAAqC;ErDizTzC;AACF;;AC7vTE;EoDnDE;IACE,8BAAqC;ErDozTzC;AACF;;AC9vTI;EoDrDA;IACE,8BAAqC;ErDuzTzC;AACF;;AC1vTI;EoD5DA;IACE,8BAAqC;ErD0zTzC;AACF;;AC3vTI;EoD9DA;IACE,8BAAqC;ErD6zTzC;AACF;;ACvvTI;EoDrEA;IACE,8BAAqC;ErDg0TzC;AACF;;AC3yTE;EoD/CE;IACE,2BAAqC;ErD81TzC;AACF;;AC7yTE;EoDhDE;IACE,2BAAqC;ErDi2TzC;AACF;;AC/yTE;EoDjDE;IACE,2BAAqC;ErDo2TzC;AACF;;ACjzTE;EoDlDE;IACE,2BAAqC;ErDu2TzC;AACF;;ACnzTE;EoDnDE;IACE,2BAAqC;ErD02TzC;AACF;;ACpzTI;EoDrDA;IACE,2BAAqC;ErD62TzC;AACF;;AChzTI;EoD5DA;IACE,2BAAqC;ErDg3TzC;AACF;;ACjzTI;EoD9DA;IACE,2BAAqC;ErDm3TzC;AACF;;AC7yTI;EoDrEA;IACE,2BAAqC;ErDs3TzC;AACF;;ACj2TE;EoD/CE;IACE,4BAAqC;ErDo5TzC;AACF;;ACn2TE;EoDhDE;IACE,4BAAqC;ErDu5TzC;AACF;;ACr2TE;EoDjDE;IACE,4BAAqC;ErD05TzC;AACF;;ACv2TE;EoDlDE;IACE,4BAAqC;ErD65TzC;AACF;;ACz2TE;EoDnDE;IACE,4BAAqC;ErDg6TzC;AACF;;AC12TI;EoDrDA;IACE,4BAAqC;ErDm6TzC;AACF;;ACt2TI;EoD5DA;IACE,4BAAqC;ErDs6TzC;AACF;;ACv2TI;EoD9DA;IACE,4BAAqC;ErDy6TzC;AACF;;ACn2TI;EoDrEA;IACE,4BAAqC;ErD46TzC;AACF;;AqD36TA;EACE,qCAAqC;ArD86TvC;;AqD56TA;EACE,oCAAoC;ArD+6TtC;;AqD76TA;EACE,oCAAoC;ArDg7TtC;;AqD96TA;EACE,6BAA6B;ArDi7T/B;;AqD/6TA;EACE,2BAAqC;ArDk7TvC;;AqDj7TA;EACE,2BAAsC;ArDo7TxC;;AqDn7TA;EACE,2BAAsC;ArDs7TxC;;AqDr7TA;EACE,2BAAwC;ArDw7T1C;;AqDv7TA;EACE,2BAAoC;ArD07TtC;;AqDx7TA;EACE,+LAAuC;ArD27TzC;;AqDz7TA;EACE,+LAAyC;ArD47T3C;;AqD17TA;EACE,+LAA0C;ArD67T5C;;AqD37TA;EACE,iCAAyC;ArD87T3C;;AqD57TA;EACE,iCAAoC;ArD+7TtC;;AsD3hUE;EACE,yBAA+B;AtD8hUnC;;ACn9TE;EqDzEE;IACE,yBAA+B;EtDgiUnC;AACF;;ACr9TE;EqD1EE;IACE,yBAA+B;EtDmiUnC;AACF;;ACv9TE;EqD3EE;IACE,yBAA+B;EtDsiUnC;AACF;;ACz9TE;EqD5EE;IACE,yBAA+B;EtDyiUnC;AACF;;AC39TE;EqD7EE;IACE,yBAA+B;EtD4iUnC;AACF;;AC59TI;EqD/EA;IACE,yBAA+B;EtD+iUnC;AACF;;ACx9TI;EqDtFA;IACE,yBAA+B;EtDkjUnC;AACF;;ACz9TI;EqDxFA;IACE,yBAA+B;EtDqjUnC;AACF;;ACr9TI;EqD/FA;IACE,yBAA+B;EtDwjUnC;AACF;;AsDrlUE;EACE,wBAA+B;AtDwlUnC;;AC7gUE;EqDzEE;IACE,wBAA+B;EtD0lUnC;AACF;;AC/gUE;EqD1EE;IACE,wBAA+B;EtD6lUnC;AACF;;ACjhUE;EqD3EE;IACE,wBAA+B;EtDgmUnC;AACF;;ACnhUE;EqD5EE;IACE,wBAA+B;EtDmmUnC;AACF;;ACrhUE;EqD7EE;IACE,wBAA+B;EtDsmUnC;AACF;;ACthUI;EqD/EA;IACE,wBAA+B;EtDymUnC;AACF;;AClhUI;EqDtFA;IACE,wBAA+B;EtD4mUnC;AACF;;ACnhUI;EqDxFA;IACE,wBAA+B;EtD+mUnC;AACF;;AC/gUI;EqD/FA;IACE,wBAA+B;EtDknUnC;AACF;;AsD/oUE;EACE,0BAA+B;AtDkpUnC;;ACvkUE;EqDzEE;IACE,0BAA+B;EtDopUnC;AACF;;ACzkUE;EqD1EE;IACE,0BAA+B;EtDupUnC;AACF;;AC3kUE;EqD3EE;IACE,0BAA+B;EtD0pUnC;AACF;;AC7kUE;EqD5EE;IACE,0BAA+B;EtD6pUnC;AACF;;AC/kUE;EqD7EE;IACE,0BAA+B;EtDgqUnC;AACF;;AChlUI;EqD/EA;IACE,0BAA+B;EtDmqUnC;AACF;;AC5kUI;EqDtFA;IACE,0BAA+B;EtDsqUnC;AACF;;AC7kUI;EqDxFA;IACE,0BAA+B;EtDyqUnC;AACF;;ACzkUI;EqD/FA;IACE,0BAA+B;EtD4qUnC;AACF;;AsDzsUE;EACE,gCAA+B;AtD4sUnC;;ACjoUE;EqDzEE;IACE,gCAA+B;EtD8sUnC;AACF;;ACnoUE;EqD1EE;IACE,gCAA+B;EtDitUnC;AACF;;ACroUE;EqD3EE;IACE,gCAA+B;EtDotUnC;AACF;;ACvoUE;EqD5EE;IACE,gCAA+B;EtDutUnC;AACF;;ACzoUE;EqD7EE;IACE,gCAA+B;EtD0tUnC;AACF;;AC1oUI;EqD/EA;IACE,gCAA+B;EtD6tUnC;AACF;;ACtoUI;EqDtFA;IACE,gCAA+B;EtDguUnC;AACF;;ACvoUI;EqDxFA;IACE,gCAA+B;EtDmuUnC;AACF;;ACnoUI;EqD/FA;IACE,gCAA+B;EtDsuUnC;AACF;;AsDnwUE;EACE,+BAA+B;AtDswUnC;;AC3rUE;EqDzEE;IACE,+BAA+B;EtDwwUnC;AACF;;AC7rUE;EqD1EE;IACE,+BAA+B;EtD2wUnC;AACF;;AC/rUE;EqD3EE;IACE,+BAA+B;EtD8wUnC;AACF;;ACjsUE;EqD5EE;IACE,+BAA+B;EtDixUnC;AACF;;ACnsUE;EqD7EE;IACE,+BAA+B;EtDoxUnC;AACF;;ACpsUI;EqD/EA;IACE,+BAA+B;EtDuxUnC;AACF;;AChsUI;EqDtFA;IACE,+BAA+B;EtD0xUnC;AACF;;ACjsUI;EqDxFA;IACE,+BAA+B;EtD6xUnC;AACF;;AC7rUI;EqD/FA;IACE,+BAA+B;EtDgyUnC;AACF;;AsD/xUA;EACE,wBAAwB;AtDkyU1B;;AsDhyUA;EACE,uBAAuB;EACvB,iCAAiC;EACjC,yBAAyB;EACzB,2BAA2B;EAC3B,qBAAqB;EACrB,6BAA6B;EAC7B,8BAA8B;EAC9B,wBAAwB;AtDmyU1B;;AChwUE;EqDhCA;IACE,wBAAwB;EtDoyU1B;AACF;;AClwUE;EqDhCA;IACE,wBAAwB;EtDsyU1B;AACF;;ACpwUE;EqDhCA;IACE,wBAAwB;EtDwyU1B;AACF;;ACtwUE;EqDhCA;IACE,wBAAwB;EtD0yU1B;AACF;;ACxwUE;EqDhCA;IACE,wBAAwB;EtD4yU1B;AACF;;ACzwUI;EqDjCF;IACE,wBAAwB;EtD8yU1B;AACF;;ACrwUI;EqDvCF;IACE,wBAAwB;EtDgzU1B;AACF;;ACtwUI;EqDxCF;IACE,wBAAwB;EtDkzU1B;AACF;;AClwUI;EqD9CF;IACE,wBAAwB;EtDozU1B;AACF;;AsDnzUA;EACE,6BAA6B;AtDszU/B;;AC1zUE;EqDOA;IACE,6BAA6B;EtDuzU/B;AACF;;AC5zUE;EqDOA;IACE,6BAA6B;EtDyzU/B;AACF;;AC9zUE;EqDOA;IACE,6BAA6B;EtD2zU/B;AACF;;ACh0UE;EqDOA;IACE,6BAA6B;EtD6zU/B;AACF;;ACl0UE;EqDOA;IACE,6BAA6B;EtD+zU/B;AACF;;ACn0UI;EqDMF;IACE,6BAA6B;EtDi0U/B;AACF;;AC/zUI;EqDAF;IACE,6BAA6B;EtDm0U/B;AACF;;ACh0UI;EqDDF;IACE,6BAA6B;EtDq0U/B;AACF;;AC5zUI;EqDPF;IACE,6BAA6B;EtDu0U/B;AACF;;AuDj8UA,iBAAA;ACQA;EACE,oBAAoB;EACpB,aAAa;EACb,sBAAsB;EACtB,8BAA8B;AxD67UhC;;AwDj8UA;EAMI,gBAAgB;AxD+7UpB;;AwDr8UA;EASM,mBAAmB;AxDg8UzB;;AwDz8UA;EAeM,uBtDRyB;EsDSzB,ctDtBuB;AFo9U7B;;AwD98UA;;EAmBQ,cAAc;AxDg8UtB;;AwDn9UA;EAqBQ,ctD3BqB;AF69U7B;;AwDv9UA;EAuBQ,4BtD7BqB;AFi+U7B;;AwD39UA;;EA0BU,ctDhCmB;AFs+U7B;;AC34UE;EuDrFF;IA6BU,uBtDtBqB;EF89U7B;AACF;;AwDt+UA;;EAgCQ,4BtDtCqB;AFi/U7B;;AwD3+UA;;;EAqCU,yB7CgEuB;E6C/DvB,ctD5CmB;AFw/U7B;;AwDl/UA;EAyCU,ctD/CmB;EsDgDnB,YAAY;AxD68UtB;;AwDv/UA;EA4CY,UAAU;AxD+8UtB;;AwD3/UA;EA+CY,UAAU;AxDg9UtB;;AwD//UA;EAmDY,ctDzDiB;AFygV7B;;AwDngVA;EAqDc,uCtD3De;AF6gV7B;;AwDvgVA;EAyDc,yBtD/De;EsDgEf,qBtDhEe;EsDiEf,YtDpDiB;AFsgV/B;;AwD7gVA;EAiEU,4EAAyG;AxDg9UnH;;ACx8UE;EuDzEF;IAoEc,4EAAyG;ExDk9UrH;AACF;;AwDvhVA;EAeM,yBtDrBuB;EsDsBvB,YtDTyB;AFqhV/B;;AwD5hVA;;EAmBQ,cAAc;AxD8gVtB;;AwDjiVA;EAqBQ,YtDduB;AF8hV/B;;AwDriVA;EAuBQ,+BtDhBuB;AFkiV/B;;AwDziVA;;EA0BU,YtDnBqB;AFuiV/B;;ACz9UE;EuDrFF;IA6BU,yBtDnCmB;EFyjV3B;AACF;;AwDpjVA;;EAgCQ,+BtDzBuB;AFkjV/B;;AwDzjVA;;;EAqCU,uB7CgEuB;E6C/DvB,YtD/BqB;AFyjV/B;;AwDhkVA;EAyCU,YtDlCqB;EsDmCrB,YAAY;AxD2hVtB;;AwDrkVA;EA4CY,UAAU;AxD6hVtB;;AwDzkVA;EA+CY,UAAU;AxD8hVtB;;AwD7kVA;EAmDY,YtD5CmB;AF0kV/B;;AwDjlVA;EAqDc,uCtD3De;AF2lV7B;;AwDrlVA;EAyDc,uBtDlDiB;EsDmDjB,mBtDnDiB;EsDoDjB,ctDjEe;AFimV7B;;AwD3lVA;EAiEU,8EAAyG;AxD8hVnH;;ACthVE;EuDzEF;IAoEc,8EAAyG;ExDgiVrH;AACF;;AwDrmVA;EAeM,4BtDVwB;EsDWxB,yB7CwDe;AXkiVrB;;AwD1mVA;;EAmBQ,cAAc;AxD4lVtB;;AwD/mVA;EAqBQ,yB7CmDa;AX2iVrB;;AwDnnVA;EAuBQ,yB7CiDa;AX+iVrB;;AwDvnVA;;EA0BU,yB7C8CW;AXojVrB;;ACviVE;EuDrFF;IA6BU,4BtDxBoB;EF4nV5B;AACF;;AwDloVA;;EAgCQ,yB7CwCa;AX+jVrB;;AwDvoVA;;;EAqCU,yB7CgEuB;E6C/DvB,yB7CkCW;AXskVrB;;AwD9oVA;EAyCU,yB7C+BW;E6C9BX,YAAY;AxDymVtB;;AwDnpVA;EA4CY,UAAU;AxD2mVtB;;AwDvpVA;EA+CY,UAAU;AxD4mVtB;;AwD3pVA;EAmDY,yB7CqBS;AXulVrB;;AwD/pVA;EAqDc,uCtD3De;AFyqV7B;;AwDnqVA;EAyDc,oC7CeO;E6CdP,gC7CcO;E6CbP,iBtDtDgB;AFoqV9B;;AwDzqVA;EAiEU,iFAAyG;AxD4mVnH;;ACpmVE;EuDzEF;IAoEc,iFAAyG;ExD8mVrH;AACF;;AwDnrVA;EAeM,yBtDjBwB;EsDkBxB,W7C0DU;AX8mVhB;;AwDxrVA;;EAmBQ,cAAc;AxD0qVtB;;AwD7rVA;EAqBQ,W7CqDQ;AXunVhB;;AwDjsVA;EAuBQ,+B7CmDQ;AX2nVhB;;AwDrsVA;;EA0BU,W7CgDM;AXgoVhB;;ACrnVE;EuDrFF;IA6BU,yBtD/BoB;EFitV5B;AACF;;AwDhtVA;;EAgCQ,+B7C0CQ;AX2oVhB;;AwDrtVA;;;EAqCU,yB7CgEuB;E6C/DvB,W7CoCM;AXkpVhB;;AwD5tVA;EAyCU,W7CiCM;E6ChCN,YAAY;AxDurVtB;;AwDjuVA;EA4CY,UAAU;AxDyrVtB;;AwDruVA;EA+CY,UAAU;AxD0rVtB;;AwDzuVA;EAmDY,W7CuBI;AXmqVhB;;AwD7uVA;EAqDc,uCtD3De;AFuvV7B;;AwDjvVA;EAyDc,sB7CiBE;E6ChBF,kB7CgBE;E6CfF,ctD7DgB;AFyvV9B;;AwDvvVA;EAiEU,gFAAyG;AxD0rVnH;;AClrVE;EuDzEF;IAoEc,gFAAyG;ExD4rVrH;AACF;;AwDjwVA;EAeM,yBtDH4B;EsDI5B,W7C0DU;AX4rVhB;;AwDtwVA;;EAmBQ,cAAc;AxDwvVtB;;AwD3wVA;EAqBQ,W7CqDQ;AXqsVhB;;AwD/wVA;EAuBQ,+B7CmDQ;AXysVhB;;AwDnxVA;;EA0BU,W7CgDM;AX8sVhB;;ACnsVE;EuDrFF;IA6BU,yBtDjBwB;EFixVhC;AACF;;AwD9xVA;;EAgCQ,+B7C0CQ;AXytVhB;;AwDnyVA;;;EAqCU,yB7CgEuB;E6C/DvB,W7CoCM;AXguVhB;;AwD1yVA;EAyCU,W7CiCM;E6ChCN,YAAY;AxDqwVtB;;AwD/yVA;EA4CY,UAAU;AxDuwVtB;;AwDnzVA;EA+CY,UAAU;AxDwwVtB;;AwDvzVA;EAmDY,W7CuBI;AXivVhB;;AwD3zVA;EAqDc,uCtD3De;AFq0V7B;;AwD/zVA;EAyDc,sB7CiBE;E6ChBF,kB7CgBE;E6CfF,ctD/CoB;AFyzVlC;;AwDr0VA;EAiEU,gFAAyG;AxDwwVnH;;AChwVE;EuDzEF;IAoEc,gFAAyG;ExD0wVrH;AACF;;AwD/0VA;EAeM,yBtDD4B;EsDE5B,W7C0DU;AX0wVhB;;AwDp1VA;;EAmBQ,cAAc;AxDs0VtB;;AwDz1VA;EAqBQ,W7CqDQ;AXmxVhB;;AwD71VA;EAuBQ,+B7CmDQ;AXuxVhB;;AwDj2VA;;EA0BU,W7CgDM;AX4xVhB;;ACjxVE;EuDrFF;IA6BU,yBtDfwB;EF61VhC;AACF;;AwD52VA;;EAgCQ,+B7C0CQ;AXuyVhB;;AwDj3VA;;;EAqCU,yB7CgEuB;E6C/DvB,W7CoCM;AX8yVhB;;AwDx3VA;EAyCU,W7CiCM;E6ChCN,YAAY;AxDm1VtB;;AwD73VA;EA4CY,UAAU;AxDq1VtB;;AwDj4VA;EA+CY,UAAU;AxDs1VtB;;AwDr4VA;EAmDY,W7CuBI;AX+zVhB;;AwDz4VA;EAqDc,uCtD3De;AFm5V7B;;AwD74VA;EAyDc,sB7CiBE;E6ChBF,kB7CgBE;E6CfF,ctD7CoB;AFq4VlC;;AwDn5VA;EAiEU,gFAAyG;AxDs1VnH;;AC90VE;EuDzEF;IAoEc,gFAAyG;ExDw1VrH;AACF;;AwD75VA;EAeM,yBtDF4B;EsDG5B,W7C0DU;AXw1VhB;;AwDl6VA;;EAmBQ,cAAc;AxDo5VtB;;AwDv6VA;EAqBQ,W7CqDQ;AXi2VhB;;AwD36VA;EAuBQ,+B7CmDQ;AXq2VhB;;AwD/6VA;;EA0BU,W7CgDM;AX02VhB;;AC/1VE;EuDrFF;IA6BU,yBtDhBwB;EF46VhC;AACF;;AwD17VA;;EAgCQ,+B7C0CQ;AXq3VhB;;AwD/7VA;;;EAqCU,yB7CgEuB;E6C/DvB,W7CoCM;AX43VhB;;AwDt8VA;EAyCU,W7CiCM;E6ChCN,YAAY;AxDi6VtB;;AwD38VA;EA4CY,UAAU;AxDm6VtB;;AwD/8VA;EA+CY,UAAU;AxDo6VtB;;AwDn9VA;EAmDY,W7CuBI;AX64VhB;;AwDv9VA;EAqDc,uCtD3De;AFi+V7B;;AwD39VA;EAyDc,sB7CiBE;E6ChBF,kB7CgBE;E6CfF,ctD9CoB;AFo9VlC;;AwDj+VA;EAiEU,gFAAyG;AxDo6VnH;;AC55VE;EuDzEF;IAoEc,gFAAyG;ExDs6VrH;AACF;;AwD3+VA;EAeM,yBtDJ4B;EsDK5B,W7C0DU;AXs6VhB;;AwDh/VA;;EAmBQ,cAAc;AxDk+VtB;;AwDr/VA;EAqBQ,W7CqDQ;AX+6VhB;;AwDz/VA;EAuBQ,+B7CmDQ;AXm7VhB;;AwD7/VA;;EA0BU,W7CgDM;AXw7VhB;;AC76VE;EuDrFF;IA6BU,yBtDlBwB;EF4/VhC;AACF;;AwDxgWA;;EAgCQ,+B7C0CQ;AXm8VhB;;AwD7gWA;;;EAqCU,yB7CgEuB;E6C/DvB,W7CoCM;AX08VhB;;AwDphWA;EAyCU,W7CiCM;E6ChCN,YAAY;AxD++VtB;;AwDzhWA;EA4CY,UAAU;AxDi/VtB;;AwD7hWA;EA+CY,UAAU;AxDk/VtB;;AwDjiWA;EAmDY,W7CuBI;AX29VhB;;AwDriWA;EAqDc,uCtD3De;AF+iW7B;;AwDziWA;EAyDc,sB7CiBE;E6ChBF,kB7CgBE;E6CfF,ctDhDoB;AFoiWlC;;AwD/iWA;EAiEU,gFAAyG;AxDk/VnH;;AC1+VE;EuDzEF;IAoEc,gFAAyG;ExDo/VrH;AACF;;AwDzjWA;EAeM,yBtDL4B;EsDM5B,yB7CwDe;AXs/VrB;;AwD9jWA;;EAmBQ,cAAc;AxDgjWtB;;AwDnkWA;EAqBQ,yB7CmDa;AX+/VrB;;AwDvkWA;EAuBQ,yB7CiDa;AXmgWrB;;AwD3kWA;;EA0BU,yB7C8CW;AXwgWrB;;AC3/VE;EuDrFF;IA6BU,yBtDnBwB;EF2kWhC;AACF;;AwDtlWA;;EAgCQ,yB7CwCa;AXmhWrB;;AwD3lWA;;;EAqCU,yB7CgEuB;E6C/DvB,yB7CkCW;AX0hWrB;;AwDlmWA;EAyCU,yB7C+BW;E6C9BX,YAAY;AxD6jWtB;;AwDvmWA;EA4CY,UAAU;AxD+jWtB;;AwD3mWA;EA+CY,UAAU;AxDgkWtB;;AwD/mWA;EAmDY,yB7CqBS;AX2iWrB;;AwDnnWA;EAqDc,uCtD3De;AF6nW7B;;AwDvnWA;EAyDc,oC7CeO;E6CdP,gC7CcO;E6CbP,ctDjDoB;AFmnWlC;;AwD7nWA;EAiEU,gFAAyG;AxDgkWnH;;ACxjWE;EuDzEF;IAoEc,gFAAyG;ExDkkWrH;AACF;;AwDvoWA;EAeM,yBtDC2B;EsDA3B,W7C0DU;AXkkWhB;;AwD5oWA;;EAmBQ,cAAc;AxD8nWtB;;AwDjpWA;EAqBQ,W7CqDQ;AX2kWhB;;AwDrpWA;EAuBQ,+B7CmDQ;AX+kWhB;;AwDzpWA;;EA0BU,W7CgDM;AXolWhB;;ACzkWE;EuDrFF;IA6BU,yBtDbuB;EFmpW/B;AACF;;AwDpqWA;;EAgCQ,+B7C0CQ;AX+lWhB;;AwDzqWA;;;EAqCU,yB7CgEuB;E6C/DvB,W7CoCM;AXsmWhB;;AwDhrWA;EAyCU,W7CiCM;E6ChCN,YAAY;AxD2oWtB;;AwDrrWA;EA4CY,UAAU;AxD6oWtB;;AwDzrWA;EA+CY,UAAU;AxD8oWtB;;AwD7rWA;EAmDY,W7CuBI;AXunWhB;;AwDjsWA;EAqDc,uCtD3De;AF2sW7B;;AwDrsWA;EAyDc,sB7CiBE;E6ChBF,kB7CgBE;E6CfF,ctD3CmB;AF2rWjC;;AwD3sWA;EAiEU,gFAAyG;AxD8oWnH;;ACtoWE;EuDzEF;IAoEc,gFAAyG;ExDgpWrH;AACF;;AwDrtWA;EAwEM,eA/E0B;AxDguWhC;;AC5oWE;EuD7EF;IA4EQ,oBAlF8B;ExDouWpC;AACF;;AClpWE;EuD7EF;IAgFQ,qBArF8B;ExDyuWpC;AACF;;AwDruWA;EAqFM,mBAAmB;EACnB,aAAa;AxDopWnB;;AwD1uWA;EAwFQ,YAAY;EACZ,cAAc;AxDspWtB;;AwD/uWA;EA2FI,gBAAgB;AxDwpWpB;;AwDnvWA;EA6FI,iBAAiB;AxD0pWrB;;AwDtpWA;EAEE,gBAAgB;AxDwpWlB;;AwD1pWA;EAII,SAAS;EACT,gBAAgB;EAChB,eAAe;EACf,kBAAkB;EAClB,QAAQ;EACR,qCAAqC;AxD0pWzC;;AwDnqWA;EAYI,YAAY;AxD2pWhB;;AC/rWE;EuDwBF;IAeI,aAAa;ExD6pWf;AACF;;AwD5pWA;EACE,kBAAkB;AxD+pWpB;;ACzsWE;EuDyCF;IAKM,aAAa;ExDgqWjB;EwDrqWF;IAOQ,sBAAsB;ExDiqW5B;AACF;;AC9sWE;EuDqCF;IASI,aAAa;IACb,uBAAuB;ExDqqWzB;EwD/qWF;IvDsBI,oBuDVwC;ExDsqW1C;AACF;;AwDnqWA;;EAEE,YAAY;EACZ,cAAc;AxDsqWhB;;AwDpqWA;EACE,YAAY;EACZ,cAAc;EACd,oBAlJ6B;AxDyzW/B;;AyDrzWA;EACE,oBAL2B;AzD6zW7B;;AC5tWE;EwD7FF;IAMM,oBAT8B;EzDi0WlC;EyD9zWF;IAQM,qBAV8B;EzDm0WlC;AACF;;A0Dl0WA;EACE,yBxDS4B;EwDR5B,yBAJ+B;A1Dy0WjC\",\"file\":\"bulma.css\"}"
  },
  {
    "path": "static/css/index.css",
    "content": "body {\n  font-family: 'Noto Sans', sans-serif;\n}\n\n\n.footer .icon-link {\n    font-size: 25px;\n    color: #000;\n}\n\n.link-block a {\n    margin-top: 5px;\n    margin-bottom: 5px;\n}\n\n.dnerf {\n  font-variant: small-caps;\n}\n\n\n.teaser .hero-body {\n  padding-top: 0;\n  padding-bottom: 3rem;\n}\n\n.teaser {\n  font-family: 'Google Sans', sans-serif;\n}\n\n\n.publication-title {\n}\n\n.publication-banner {\n  max-height: parent;\n\n}\n\n.publication-banner video {\n  position: relative;\n  left: auto;\n  top: auto;\n  transform: none;\n  object-fit: fit;\n}\n\n.publication-header .hero-body {\n}\n\n.publication-title {\n    font-family: 'Google Sans', sans-serif;\n}\n\n.publication-authors {\n    font-family: 'Google Sans', sans-serif;\n}\n\n.publication-venue {\n    color: #555;\n    width: fit-content;\n    font-weight: bold;\n}\n\n.publication-awards {\n    color: #ff3860;\n    width: fit-content;\n    font-weight: bolder;\n}\n\n.publication-authors {\n}\n\n.publication-authors a {\n   color: hsl(204, 86%, 53%) !important;\n}\n\n.publication-authors a:hover {\n    text-decoration: underline;\n}\n\n.author-block {\n  display: inline-block;\n}\n\n.publication-banner img {\n}\n\n.publication-authors {\n  /*color: #4286f4;*/\n}\n\n.publication-video {\n    position: relative;\n    width: 100%;\n    height: 0;\n    padding-bottom: 56.25%;\n\n    overflow: hidden;\n    border-radius: 10px !important;\n}\n\n.publication-video iframe {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n}\n\n.publication-body img {\n}\n\n.results-carousel {\n  overflow: hidden;\n}\n\n.results-carousel .item {\n  margin: 5px;\n  overflow: hidden;\n  border: 1px solid #bbb;\n  border-radius: 10px;\n  padding: 0;\n  font-size: 0;\n}\n\n.results-carousel video {\n  margin: 0;\n}\n\n\n.interpolation-panel {\n  background: #f5f5f5;\n  border-radius: 10px;\n}\n\n.interpolation-panel .interpolation-image {\n  width: 100%;\n  border-radius: 5px;\n}\n\n.interpolation-video-column {\n}\n\n.interpolation-panel .slider {\n  margin: 0 !important;\n}\n\n.interpolation-panel .slider {\n  margin: 0 !important;\n}\n\n#interpolation-image-wrapper {\n  width: 100%;\n}\n#interpolation-image-wrapper img {\n  border-radius: 5px;\n}\n"
  },
  {
    "path": "static/js/bulma-carousel.js",
    "content": "(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"bulmaCarousel\"] = factory();\n\telse\n\t\troot[\"bulmaCarousel\"] = factory();\n})(typeof self !== 'undefined' ? self : this, function() {\nreturn /******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar installedModules = {};\n/******/\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(installedModules[moduleId]) {\n/******/ \t\t\treturn installedModules[moduleId].exports;\n/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = installedModules[moduleId] = {\n/******/ \t\t\ti: moduleId,\n/******/ \t\t\tl: false,\n/******/ \t\t\texports: {}\n/******/ \t\t};\n/******/\n/******/ \t\t// Execute the module function\n/******/ \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n/******/\n/******/ \t\t// Flag the module as loaded\n/******/ \t\tmodule.l = true;\n/******/\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/\n/******/\n/******/ \t// expose the modules object (__webpack_modules__)\n/******/ \t__webpack_require__.m = modules;\n/******/\n/******/ \t// expose the module cache\n/******/ \t__webpack_require__.c = installedModules;\n/******/\n/******/ \t// define getter function for harmony exports\n/******/ \t__webpack_require__.d = function(exports, name, getter) {\n/******/ \t\tif(!__webpack_require__.o(exports, name)) {\n/******/ \t\t\tObject.defineProperty(exports, name, {\n/******/ \t\t\t\tconfigurable: false,\n/******/ \t\t\t\tenumerable: true,\n/******/ \t\t\t\tget: getter\n/******/ \t\t\t});\n/******/ \t\t}\n/******/ \t};\n/******/\n/******/ \t// getDefaultExport function for compatibility with non-harmony modules\n/******/ \t__webpack_require__.n = function(module) {\n/******/ \t\tvar getter = module && module.__esModule ?\n/******/ \t\t\tfunction getDefault() { return module['default']; } :\n/******/ \t\t\tfunction getModuleExports() { return module; };\n/******/ \t\t__webpack_require__.d(getter, 'a', getter);\n/******/ \t\treturn getter;\n/******/ \t};\n/******/\n/******/ \t// Object.prototype.hasOwnProperty.call\n/******/ \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n/******/\n/******/ \t// __webpack_public_path__\n/******/ \t__webpack_require__.p = \"\";\n/******/\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(__webpack_require__.s = 5);\n/******/ })\n/************************************************************************/\n/******/ ([\n/* 0 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* unused harmony export addClasses */\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"d\", function() { return removeClasses; });\n/* unused harmony export show */\n/* unused harmony export hide */\n/* unused harmony export offset */\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"e\", function() { return width; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"b\", function() { return height; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"c\", function() { return outerHeight; });\n/* unused harmony export outerWidth */\n/* unused harmony export position */\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"a\", function() { return css; });\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__type__ = __webpack_require__(2);\n\n\nvar addClasses = function addClasses(element, classes) {\n\tclasses = Array.isArray(classes) ? classes : classes.split(' ');\n\tclasses.forEach(function (cls) {\n\t\telement.classList.add(cls);\n\t});\n};\n\nvar removeClasses = function removeClasses(element, classes) {\n\tclasses = Array.isArray(classes) ? classes : classes.split(' ');\n\tclasses.forEach(function (cls) {\n\t\telement.classList.remove(cls);\n\t});\n};\n\nvar show = function show(elements) {\n\telements = Array.isArray(elements) ? elements : [elements];\n\telements.forEach(function (element) {\n\t\telement.style.display = '';\n\t});\n};\n\nvar hide = function hide(elements) {\n\telements = Array.isArray(elements) ? elements : [elements];\n\telements.forEach(function (element) {\n\t\telement.style.display = 'none';\n\t});\n};\n\nvar offset = function offset(element) {\n\tvar rect = element.getBoundingClientRect();\n\treturn {\n\t\ttop: rect.top + document.body.scrollTop,\n\t\tleft: rect.left + document.body.scrollLeft\n\t};\n};\n\n// returns an element's width\nvar width = function width(element) {\n\treturn element.getBoundingClientRect().width || element.offsetWidth;\n};\n// returns an element's height\nvar height = function height(element) {\n\treturn element.getBoundingClientRect().height || element.offsetHeight;\n};\n\nvar outerHeight = function outerHeight(element) {\n\tvar withMargin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\tvar height = element.offsetHeight;\n\tif (withMargin) {\n\t\tvar style = window.getComputedStyle(element);\n\t\theight += parseInt(style.marginTop) + parseInt(style.marginBottom);\n\t}\n\treturn height;\n};\n\nvar outerWidth = function outerWidth(element) {\n\tvar withMargin = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\tvar width = element.offsetWidth;\n\tif (withMargin) {\n\t\tvar style = window.getComputedStyle(element);\n\t\twidth += parseInt(style.marginLeft) + parseInt(style.marginRight);\n\t}\n\treturn width;\n};\n\nvar position = function position(element) {\n\treturn {\n\t\tleft: element.offsetLeft,\n\t\ttop: element.offsetTop\n\t};\n};\n\nvar css = function css(element, obj) {\n\tif (!obj) {\n\t\treturn window.getComputedStyle(element);\n\t}\n\tif (Object(__WEBPACK_IMPORTED_MODULE_0__type__[\"b\" /* isObject */])(obj)) {\n\t\tvar style = '';\n\t\tObject.keys(obj).forEach(function (key) {\n\t\t\tstyle += key + ': ' + obj[key] + ';';\n\t\t});\n\n\t\telement.style.cssText += style;\n\t}\n};\n\n/***/ }),\n/* 1 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony export (immutable) */ __webpack_exports__[\"a\"] = detectSupportsPassive;\nfunction detectSupportsPassive() {\n\tvar supportsPassive = false;\n\n\ttry {\n\t\tvar opts = Object.defineProperty({}, 'passive', {\n\t\t\tget: function get() {\n\t\t\t\tsupportsPassive = true;\n\t\t\t}\n\t\t});\n\n\t\twindow.addEventListener('testPassive', null, opts);\n\t\twindow.removeEventListener('testPassive', null, opts);\n\t} catch (e) {}\n\n\treturn supportsPassive;\n}\n\n/***/ }),\n/* 2 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"a\", function() { return isFunction; });\n/* unused harmony export isNumber */\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"c\", function() { return isString; });\n/* unused harmony export isDate */\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"b\", function() { return isObject; });\n/* unused harmony export isEmptyObject */\n/* unused harmony export isNode */\n/* unused harmony export isVideo */\n/* unused harmony export isHTML5 */\n/* unused harmony export isIFrame */\n/* unused harmony export isYoutube */\n/* unused harmony export isVimeo */\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nvar isFunction = function isFunction(unknown) {\n\treturn typeof unknown === 'function';\n};\nvar isNumber = function isNumber(unknown) {\n\treturn typeof unknown === \"number\";\n};\nvar isString = function isString(unknown) {\n\treturn typeof unknown === 'string' || !!unknown && (typeof unknown === 'undefined' ? 'undefined' : _typeof(unknown)) === 'object' && Object.prototype.toString.call(unknown) === '[object String]';\n};\nvar isDate = function isDate(unknown) {\n\treturn (Object.prototype.toString.call(unknown) === '[object Date]' || unknown instanceof Date) && !isNaN(unknown.valueOf());\n};\nvar isObject = function isObject(unknown) {\n\treturn (typeof unknown === 'function' || (typeof unknown === 'undefined' ? 'undefined' : _typeof(unknown)) === 'object' && !!unknown) && !Array.isArray(unknown);\n};\nvar isEmptyObject = function isEmptyObject(unknown) {\n\tfor (var name in unknown) {\n\t\tif (unknown.hasOwnProperty(name)) {\n\t\t\treturn false;\n\t\t}\n\t}\n\treturn true;\n};\n\nvar isNode = function isNode(unknown) {\n\treturn !!(unknown && unknown.nodeType === HTMLElement | SVGElement);\n};\nvar isVideo = function isVideo(unknown) {\n\treturn isYoutube(unknown) || isVimeo(unknown) || isHTML5(unknown);\n};\nvar isHTML5 = function isHTML5(unknown) {\n\treturn isNode(unknown) && unknown.tagName === 'VIDEO';\n};\nvar isIFrame = function isIFrame(unknown) {\n\treturn isNode(unknown) && unknown.tagName === 'IFRAME';\n};\nvar isYoutube = function isYoutube(unknown) {\n\treturn isIFrame(unknown) && !!unknown.src.match(/\\/\\/.*?youtube(-nocookie)?\\.[a-z]+\\/(watch\\?v=[^&\\s]+|embed)|youtu\\.be\\/.*/);\n};\nvar isVimeo = function isVimeo(unknown) {\n\treturn isIFrame(unknown) && !!unknown.src.match(/vimeo\\.com\\/video\\/.*/);\n};\n\n/***/ }),\n/* 3 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar EventEmitter = function () {\n  function EventEmitter() {\n    var events = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n\n    _classCallCheck(this, EventEmitter);\n\n    this.events = new Map(events);\n  }\n\n  _createClass(EventEmitter, [{\n    key: \"on\",\n    value: function on(name, cb) {\n      var _this = this;\n\n      this.events.set(name, [].concat(_toConsumableArray(this.events.has(name) ? this.events.get(name) : []), [cb]));\n\n      return function () {\n        return _this.events.set(name, _this.events.get(name).filter(function (fn) {\n          return fn !== cb;\n        }));\n      };\n    }\n  }, {\n    key: \"emit\",\n    value: function emit(name) {\n      for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n        args[_key - 1] = arguments[_key];\n      }\n\n      return this.events.has(name) && this.events.get(name).map(function (fn) {\n        return fn.apply(undefined, args);\n      });\n    }\n  }]);\n\n  return EventEmitter;\n}();\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (EventEmitter);\n\n/***/ }),\n/* 4 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Coordinate = function () {\n\tfunction Coordinate() {\n\t\tvar x = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;\n\t\tvar y = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;\n\n\t\t_classCallCheck(this, Coordinate);\n\n\t\tthis._x = x;\n\t\tthis._y = y;\n\t}\n\n\t_createClass(Coordinate, [{\n\t\tkey: 'add',\n\t\tvalue: function add(coord) {\n\t\t\treturn new Coordinate(this._x + coord._x, this._y + coord._y);\n\t\t}\n\t}, {\n\t\tkey: 'sub',\n\t\tvalue: function sub(coord) {\n\t\t\treturn new Coordinate(this._x - coord._x, this._y - coord._y);\n\t\t}\n\t}, {\n\t\tkey: 'distance',\n\t\tvalue: function distance(coord) {\n\t\t\tvar deltaX = this._x - coord._x;\n\t\t\tvar deltaY = this._y - coord._y;\n\n\t\t\treturn Math.sqrt(Math.pow(deltaX, 2) + Math.pow(deltaY, 2));\n\t\t}\n\t}, {\n\t\tkey: 'max',\n\t\tvalue: function max(coord) {\n\t\t\tvar x = Math.max(this._x, coord._x);\n\t\t\tvar y = Math.max(this._y, coord._y);\n\n\t\t\treturn new Coordinate(x, y);\n\t\t}\n\t}, {\n\t\tkey: 'equals',\n\t\tvalue: function equals(coord) {\n\t\t\tif (this == coord) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tif (!coord || coord == null) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\treturn this._x == coord._x && this._y == coord._y;\n\t\t}\n\t}, {\n\t\tkey: 'inside',\n\t\tvalue: function inside(northwest, southeast) {\n\t\t\tif (this._x >= northwest._x && this._x <= southeast._x && this._y >= northwest._y && this._y <= southeast._y) {\n\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\treturn false;\n\t\t}\n\t}, {\n\t\tkey: 'constrain',\n\t\tvalue: function constrain(min, max) {\n\t\t\tif (min._x > max._x || min._y > max._y) {\n\t\t\t\treturn this;\n\t\t\t}\n\n\t\t\tvar x = this._x,\n\t\t\t    y = this._y;\n\n\t\t\tif (min._x !== null) {\n\t\t\t\tx = Math.max(x, min._x);\n\t\t\t}\n\t\t\tif (max._x !== null) {\n\t\t\t\tx = Math.min(x, max._x);\n\t\t\t}\n\t\t\tif (min._y !== null) {\n\t\t\t\ty = Math.max(y, min._y);\n\t\t\t}\n\t\t\tif (max._y !== null) {\n\t\t\t\ty = Math.min(y, max._y);\n\t\t\t}\n\n\t\t\treturn new Coordinate(x, y);\n\t\t}\n\t}, {\n\t\tkey: 'reposition',\n\t\tvalue: function reposition(element) {\n\t\t\telement.style['top'] = this._y + 'px';\n\t\t\telement.style['left'] = this._x + 'px';\n\t\t}\n\t}, {\n\t\tkey: 'toString',\n\t\tvalue: function toString() {\n\t\t\treturn '(' + this._x + ',' + this._y + ')';\n\t\t}\n\t}, {\n\t\tkey: 'x',\n\t\tget: function get() {\n\t\t\treturn this._x;\n\t\t},\n\t\tset: function set() {\n\t\t\tvar value = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;\n\n\t\t\tthis._x = value;\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: 'y',\n\t\tget: function get() {\n\t\t\treturn this._y;\n\t\t},\n\t\tset: function set() {\n\t\t\tvar value = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;\n\n\t\t\tthis._y = value;\n\t\t\treturn this;\n\t\t}\n\t}]);\n\n\treturn Coordinate;\n}();\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (Coordinate);\n\n/***/ }),\n/* 5 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\nObject.defineProperty(__webpack_exports__, \"__esModule\", { value: true });\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__utils_index__ = __webpack_require__(6);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__utils_css__ = __webpack_require__(0);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__utils_type__ = __webpack_require__(2);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__utils_eventEmitter__ = __webpack_require__(3);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_4__components_autoplay__ = __webpack_require__(7);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_5__components_breakpoint__ = __webpack_require__(9);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_6__components_infinite__ = __webpack_require__(10);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_7__components_loop__ = __webpack_require__(11);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_8__components_navigation__ = __webpack_require__(13);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_9__components_pagination__ = __webpack_require__(15);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_10__components_swipe__ = __webpack_require__(18);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_11__components_transitioner__ = __webpack_require__(19);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_12__defaultOptions__ = __webpack_require__(22);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_13__templates__ = __webpack_require__(23);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_14__templates_item__ = __webpack_require__(24);\nvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nvar bulmaCarousel = function (_EventEmitter) {\n  _inherits(bulmaCarousel, _EventEmitter);\n\n  function bulmaCarousel(selector) {\n    var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n    _classCallCheck(this, bulmaCarousel);\n\n    var _this = _possibleConstructorReturn(this, (bulmaCarousel.__proto__ || Object.getPrototypeOf(bulmaCarousel)).call(this));\n\n    _this.element = Object(__WEBPACK_IMPORTED_MODULE_2__utils_type__[\"c\" /* isString */])(selector) ? document.querySelector(selector) : selector;\n    // An invalid selector or non-DOM node has been provided.\n    if (!_this.element) {\n      throw new Error('An invalid selector or non-DOM node has been provided.');\n    }\n    _this._clickEvents = ['click', 'touch'];\n\n    // Use Element dataset values to override options\n    var elementConfig = _this.element.dataset ? Object.keys(_this.element.dataset).filter(function (key) {\n      return Object.keys(__WEBPACK_IMPORTED_MODULE_12__defaultOptions__[\"a\" /* default */]).includes(key);\n    }).reduce(function (obj, key) {\n      return _extends({}, obj, _defineProperty({}, key, _this.element.dataset[key]));\n    }, {}) : {};\n    // Set default options - dataset attributes are master\n    _this.options = _extends({}, __WEBPACK_IMPORTED_MODULE_12__defaultOptions__[\"a\" /* default */], options, elementConfig);\n\n    _this._id = Object(__WEBPACK_IMPORTED_MODULE_0__utils_index__[\"a\" /* uuid */])('slider');\n\n    _this.onShow = _this.onShow.bind(_this);\n\n    // Initiate plugin\n    _this._init();\n    return _this;\n  }\n\n  /**\n   * Initiate all DOM element containing datePicker class\n   * @method\n   * @return {Array} Array of all datePicker instances\n   */\n\n\n  _createClass(bulmaCarousel, [{\n    key: '_init',\n\n\n    /****************************************************\n     *                                                  *\n     * PRIVATE FUNCTIONS                                *\n     *                                                  *\n     ****************************************************/\n    /**\n     * Initiate plugin instance\n     * @method _init\n     * @return {Slider} Current plugin instance\n     */\n    value: function _init() {\n      this._items = Array.from(this.element.children);\n\n      // Load plugins\n      this._breakpoint = new __WEBPACK_IMPORTED_MODULE_5__components_breakpoint__[\"a\" /* default */](this);\n      this._autoplay = new __WEBPACK_IMPORTED_MODULE_4__components_autoplay__[\"a\" /* default */](this);\n      this._navigation = new __WEBPACK_IMPORTED_MODULE_8__components_navigation__[\"a\" /* default */](this);\n      this._pagination = new __WEBPACK_IMPORTED_MODULE_9__components_pagination__[\"a\" /* default */](this);\n      this._infinite = new __WEBPACK_IMPORTED_MODULE_6__components_infinite__[\"a\" /* default */](this);\n      this._loop = new __WEBPACK_IMPORTED_MODULE_7__components_loop__[\"a\" /* default */](this);\n      this._swipe = new __WEBPACK_IMPORTED_MODULE_10__components_swipe__[\"a\" /* default */](this);\n\n      this._build();\n\n      if (Object(__WEBPACK_IMPORTED_MODULE_2__utils_type__[\"a\" /* isFunction */])(this.options.onReady)) {\n        this.options.onReady(this);\n      }\n\n      return this;\n    }\n\n    /**\n     * Build Slider HTML component and append it to the DOM\n     * @method _build\n     */\n\n  }, {\n    key: '_build',\n    value: function _build() {\n      var _this2 = this;\n\n      // Generate HTML Fragment of template\n      this.node = document.createRange().createContextualFragment(Object(__WEBPACK_IMPORTED_MODULE_13__templates__[\"a\" /* default */])(this.id));\n      // Save pointers to template parts\n      this._ui = {\n        wrapper: this.node.firstChild,\n        container: this.node.querySelector('.slider-container')\n\n        // Add slider to DOM\n      };this.element.appendChild(this.node);\n      this._ui.wrapper.classList.add('is-loading');\n      this._ui.container.style.opacity = 0;\n\n      this._transitioner = new __WEBPACK_IMPORTED_MODULE_11__components_transitioner__[\"a\" /* default */](this);\n\n      // Wrap all items by slide element\n      this._slides = this._items.map(function (item, index) {\n        return _this2._createSlide(item, index);\n      });\n\n      this.reset();\n\n      this._bindEvents();\n\n      this._ui.container.style.opacity = 1;\n      this._ui.wrapper.classList.remove('is-loading');\n    }\n\n    /**\n     * Bind all events\n     * @method _bindEvents\n     * @return {void}\n     */\n\n  }, {\n    key: '_bindEvents',\n    value: function _bindEvents() {\n      this.on('show', this.onShow);\n    }\n  }, {\n    key: '_unbindEvents',\n    value: function _unbindEvents() {\n      this.off('show', this.onShow);\n    }\n  }, {\n    key: '_createSlide',\n    value: function _createSlide(item, index) {\n      var slide = document.createRange().createContextualFragment(Object(__WEBPACK_IMPORTED_MODULE_14__templates_item__[\"a\" /* default */])()).firstChild;\n      slide.dataset.sliderIndex = index;\n      slide.appendChild(item);\n      return slide;\n    }\n\n    /**\n     * Calculate slider dimensions\n     */\n\n  }, {\n    key: '_setDimensions',\n    value: function _setDimensions() {\n      var _this3 = this;\n\n      if (!this.options.vertical) {\n        if (this.options.centerMode) {\n          this._ui.wrapper.style.padding = '0px ' + this.options.centerPadding;\n        }\n      } else {\n        this._ui.wrapper.style.height = Object(__WEBPACK_IMPORTED_MODULE_1__utils_css__[\"c\" /* outerHeight */])(this._slides[0]) * this.slidesToShow;\n        if (this.options.centerMode) {\n          this._ui.wrapper.style.padding = this.options.centerPadding + ' 0px';\n        }\n      }\n\n      this._wrapperWidth = Object(__WEBPACK_IMPORTED_MODULE_1__utils_css__[\"e\" /* width */])(this._ui.wrapper);\n      this._wrapperHeight = Object(__WEBPACK_IMPORTED_MODULE_1__utils_css__[\"c\" /* outerHeight */])(this._ui.wrapper);\n\n      if (!this.options.vertical) {\n        this._slideWidth = Math.ceil(this._wrapperWidth / this.slidesToShow);\n        this._containerWidth = Math.ceil(this._slideWidth * this._slides.length);\n        this._ui.container.style.width = this._containerWidth + 'px';\n      } else {\n        this._slideWidth = Math.ceil(this._wrapperWidth);\n        this._containerHeight = Math.ceil(Object(__WEBPACK_IMPORTED_MODULE_1__utils_css__[\"c\" /* outerHeight */])(this._slides[0]) * this._slides.length);\n        this._ui.container.style.height = this._containerHeight + 'px';\n      }\n\n      this._slides.forEach(function (slide) {\n        slide.style.width = _this3._slideWidth + 'px';\n      });\n    }\n  }, {\n    key: '_setHeight',\n    value: function _setHeight() {\n      if (this.options.effect !== 'translate') {\n        this._ui.container.style.height = Object(__WEBPACK_IMPORTED_MODULE_1__utils_css__[\"c\" /* outerHeight */])(this._slides[this.state.index]) + 'px';\n      }\n    }\n\n    // Update slides classes\n\n  }, {\n    key: '_setClasses',\n    value: function _setClasses() {\n      var _this4 = this;\n\n      this._slides.forEach(function (slide) {\n        Object(__WEBPACK_IMPORTED_MODULE_1__utils_css__[\"d\" /* removeClasses */])(slide, 'is-active is-current is-slide-previous is-slide-next');\n        if (Math.abs((_this4.state.index - 1) % _this4.state.length) === parseInt(slide.dataset.sliderIndex, 10)) {\n          slide.classList.add('is-slide-previous');\n        }\n        if (Math.abs(_this4.state.index % _this4.state.length) === parseInt(slide.dataset.sliderIndex, 10)) {\n          slide.classList.add('is-current');\n        }\n        if (Math.abs((_this4.state.index + 1) % _this4.state.length) === parseInt(slide.dataset.sliderIndex, 10)) {\n          slide.classList.add('is-slide-next');\n        }\n      });\n    }\n\n    /****************************************************\n     *                                                  *\n     * GETTERS and SETTERS                              *\n     *                                                  *\n     ****************************************************/\n\n    /**\n     * Get id of current datePicker\n     */\n\n  }, {\n    key: 'onShow',\n\n\n    /****************************************************\n     *                                                  *\n     * EVENTS FUNCTIONS                                 *\n     *                                                  *\n     ****************************************************/\n    value: function onShow(e) {\n      this._navigation.refresh();\n      this._pagination.refresh();\n      this._setClasses();\n    }\n\n    /****************************************************\n     *                                                  *\n     * PUBLIC FUNCTIONS                                 *\n     *                                                  *\n     ****************************************************/\n\n  }, {\n    key: 'next',\n    value: function next() {\n      if (!this.options.loop && !this.options.infinite && this.state.index + this.slidesToScroll > this.state.length - this.slidesToShow && !this.options.centerMode) {\n        this.state.next = this.state.index;\n      } else {\n        this.state.next = this.state.index + this.slidesToScroll;\n      }\n      this.show();\n    }\n  }, {\n    key: 'previous',\n    value: function previous() {\n      if (!this.options.loop && !this.options.infinite && this.state.index === 0) {\n        this.state.next = this.state.index;\n      } else {\n        this.state.next = this.state.index - this.slidesToScroll;\n      }\n      this.show();\n    }\n  }, {\n    key: 'start',\n    value: function start() {\n      this._autoplay.start();\n    }\n  }, {\n    key: 'pause',\n    value: function pause() {\n      this._autoplay.pause();\n    }\n  }, {\n    key: 'stop',\n    value: function stop() {\n      this._autoplay.stop();\n    }\n  }, {\n    key: 'show',\n    value: function show(index) {\n      var force = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n      // If all slides are already visible then return\n      if (!this.state.length || this.state.length <= this.slidesToShow) {\n        return;\n      }\n\n      if (typeof index === 'Number') {\n        this.state.next = index;\n      }\n\n      if (this.options.loop) {\n        this._loop.apply();\n      }\n      if (this.options.infinite) {\n        this._infinite.apply();\n      }\n\n      // If new slide is already the current one then return\n      if (this.state.index === this.state.next) {\n        return;\n      }\n\n      this.emit('before:show', this.state);\n      this._transitioner.apply(force, this._setHeight.bind(this));\n      this.emit('after:show', this.state);\n\n      this.emit('show', this);\n    }\n  }, {\n    key: 'reset',\n    value: function reset() {\n      var _this5 = this;\n\n      this.state = {\n        length: this._items.length,\n        index: Math.abs(this.options.initialSlide),\n        next: Math.abs(this.options.initialSlide),\n        prev: undefined\n      };\n\n      // Fix options\n      if (this.options.loop && this.options.infinite) {\n        this.options.loop = false;\n      }\n      if (this.options.slidesToScroll > this.options.slidesToShow) {\n        this.options.slidesToScroll = this.slidesToShow;\n      }\n      this._breakpoint.init();\n\n      if (this.state.index >= this.state.length && this.state.index !== 0) {\n        this.state.index = this.state.index - this.slidesToScroll;\n      }\n      if (this.state.length <= this.slidesToShow) {\n        this.state.index = 0;\n      }\n\n      this._ui.wrapper.appendChild(this._navigation.init().render());\n      this._ui.wrapper.appendChild(this._pagination.init().render());\n\n      if (this.options.navigationSwipe) {\n        this._swipe.bindEvents();\n      } else {\n        this._swipe._bindEvents();\n      }\n\n      this._breakpoint.apply();\n      // Move all created slides into slider\n      this._slides.forEach(function (slide) {\n        return _this5._ui.container.appendChild(slide);\n      });\n      this._transitioner.init().apply(true, this._setHeight.bind(this));\n\n      if (this.options.autoplay) {\n        this._autoplay.init().start();\n      }\n    }\n\n    /**\n     * Destroy Slider\n     * @method destroy\n     */\n\n  }, {\n    key: 'destroy',\n    value: function destroy() {\n      var _this6 = this;\n\n      this._unbindEvents();\n      this._items.forEach(function (item) {\n        _this6.element.appendChild(item);\n      });\n      this.node.remove();\n    }\n  }, {\n    key: 'id',\n    get: function get() {\n      return this._id;\n    }\n  }, {\n    key: 'index',\n    set: function set(index) {\n      this._index = index;\n    },\n    get: function get() {\n      return this._index;\n    }\n  }, {\n    key: 'length',\n    set: function set(length) {\n      this._length = length;\n    },\n    get: function get() {\n      return this._length;\n    }\n  }, {\n    key: 'slides',\n    get: function get() {\n      return this._slides;\n    },\n    set: function set(slides) {\n      this._slides = slides;\n    }\n  }, {\n    key: 'slidesToScroll',\n    get: function get() {\n      return this.options.effect === 'translate' ? this._breakpoint.getSlidesToScroll() : 1;\n    }\n  }, {\n    key: 'slidesToShow',\n    get: function get() {\n      return this.options.effect === 'translate' ? this._breakpoint.getSlidesToShow() : 1;\n    }\n  }, {\n    key: 'direction',\n    get: function get() {\n      return this.element.dir.toLowerCase() === 'rtl' || this.element.style.direction === 'rtl' ? 'rtl' : 'ltr';\n    }\n  }, {\n    key: 'wrapper',\n    get: function get() {\n      return this._ui.wrapper;\n    }\n  }, {\n    key: 'wrapperWidth',\n    get: function get() {\n      return this._wrapperWidth || 0;\n    }\n  }, {\n    key: 'container',\n    get: function get() {\n      return this._ui.container;\n    }\n  }, {\n    key: 'containerWidth',\n    get: function get() {\n      return this._containerWidth || 0;\n    }\n  }, {\n    key: 'slideWidth',\n    get: function get() {\n      return this._slideWidth || 0;\n    }\n  }, {\n    key: 'transitioner',\n    get: function get() {\n      return this._transitioner;\n    }\n  }], [{\n    key: 'attach',\n    value: function attach() {\n      var _this7 = this;\n\n      var selector = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '.slider';\n      var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n      var instances = new Array();\n\n      var elements = Object(__WEBPACK_IMPORTED_MODULE_2__utils_type__[\"c\" /* isString */])(selector) ? document.querySelectorAll(selector) : Array.isArray(selector) ? selector : [selector];\n      [].forEach.call(elements, function (element) {\n        if (typeof element[_this7.constructor.name] === 'undefined') {\n          var instance = new bulmaCarousel(element, options);\n          element[_this7.constructor.name] = instance;\n          instances.push(instance);\n        } else {\n          instances.push(element[_this7.constructor.name]);\n        }\n      });\n\n      return instances;\n    }\n  }]);\n\n  return bulmaCarousel;\n}(__WEBPACK_IMPORTED_MODULE_3__utils_eventEmitter__[\"a\" /* default */]);\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (bulmaCarousel);\n\n/***/ }),\n/* 6 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"a\", function() { return uuid; });\n/* unused harmony export isRtl */\n/* unused harmony export defer */\n/* unused harmony export getNodeIndex */\n/* unused harmony export camelize */\nfunction _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }\n\nvar uuid = function uuid() {\n\tvar prefix = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : '';\n\treturn prefix + ([1e7] + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, function (c) {\n\t\treturn (c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16);\n\t});\n};\nvar isRtl = function isRtl() {\n\treturn document.documentElement.getAttribute('dir') === 'rtl';\n};\n\nvar defer = function defer() {\n\tthis.promise = new Promise(function (resolve, reject) {\n\t\tthis.resolve = resolve;\n\t\tthis.reject = reject;\n\t}.bind(this));\n\n\tthis.then = this.promise.then.bind(this.promise);\n\tthis.catch = this.promise.catch.bind(this.promise);\n};\n\nvar getNodeIndex = function getNodeIndex(node) {\n\treturn [].concat(_toConsumableArray(node.parentNode.children)).indexOf(node);\n};\nvar camelize = function camelize(str) {\n\treturn str.replace(/-(\\w)/g, toUpper);\n};\n\n/***/ }),\n/* 7 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__utils_eventEmitter__ = __webpack_require__(3);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__utils_device__ = __webpack_require__(8);\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\n\n\nvar onVisibilityChange = Symbol('onVisibilityChange');\nvar onMouseEnter = Symbol('onMouseEnter');\nvar onMouseLeave = Symbol('onMouseLeave');\n\nvar defaultOptions = {\n\tautoplay: false,\n\tautoplaySpeed: 3000\n};\n\nvar Autoplay = function (_EventEmitter) {\n\t_inherits(Autoplay, _EventEmitter);\n\n\tfunction Autoplay(slider) {\n\t\t_classCallCheck(this, Autoplay);\n\n\t\tvar _this = _possibleConstructorReturn(this, (Autoplay.__proto__ || Object.getPrototypeOf(Autoplay)).call(this));\n\n\t\t_this.slider = slider;\n\n\t\t_this.onVisibilityChange = _this.onVisibilityChange.bind(_this);\n\t\t_this.onMouseEnter = _this.onMouseEnter.bind(_this);\n\t\t_this.onMouseLeave = _this.onMouseLeave.bind(_this);\n\t\treturn _this;\n\t}\n\n\t_createClass(Autoplay, [{\n\t\tkey: 'init',\n\t\tvalue: function init() {\n\t\t\tthis._bindEvents();\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: '_bindEvents',\n\t\tvalue: function _bindEvents() {\n\t\t\tdocument.addEventListener('visibilitychange', this.onVisibilityChange);\n\t\t\tif (this.slider.options.pauseOnHover) {\n\t\t\t\tthis.slider.container.addEventListener(__WEBPACK_IMPORTED_MODULE_1__utils_device__[\"a\" /* pointerEnter */], this.onMouseEnter);\n\t\t\t\tthis.slider.container.addEventListener(__WEBPACK_IMPORTED_MODULE_1__utils_device__[\"b\" /* pointerLeave */], this.onMouseLeave);\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: '_unbindEvents',\n\t\tvalue: function _unbindEvents() {\n\t\t\tdocument.removeEventListener('visibilitychange', this.onVisibilityChange);\n\t\t\tthis.slider.container.removeEventListener(__WEBPACK_IMPORTED_MODULE_1__utils_device__[\"a\" /* pointerEnter */], this.onMouseEnter);\n\t\t\tthis.slider.container.removeEventListener(__WEBPACK_IMPORTED_MODULE_1__utils_device__[\"b\" /* pointerLeave */], this.onMouseLeave);\n\t\t}\n\t}, {\n\t\tkey: 'start',\n\t\tvalue: function start() {\n\t\t\tvar _this2 = this;\n\n\t\t\tthis.stop();\n\t\t\tif (this.slider.options.autoplay) {\n\t\t\t\tthis.emit('start', this);\n\t\t\t\tthis._interval = setInterval(function () {\n\t\t\t\t\tif (!(_this2._hovering && _this2.slider.options.pauseOnHover)) {\n\t\t\t\t\t\tif (!_this2.slider.options.centerMode && _this2.slider.state.next >= _this2.slider.state.length - _this2.slider.slidesToShow && !_this2.slider.options.loop && !_this2.slider.options.infinite) {\n\t\t\t\t\t\t\t_this2.stop();\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t_this2.slider.next();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}, this.slider.options.autoplaySpeed);\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'stop',\n\t\tvalue: function stop() {\n\t\t\tthis._interval = clearInterval(this._interval);\n\t\t\tthis.emit('stop', this);\n\t\t}\n\t}, {\n\t\tkey: 'pause',\n\t\tvalue: function pause() {\n\t\t\tvar _this3 = this;\n\n\t\t\tvar speed = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 0;\n\n\t\t\tif (this.paused) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tif (this.timer) {\n\t\t\t\tthis.stop();\n\t\t\t}\n\t\t\tthis.paused = true;\n\t\t\tif (speed === 0) {\n\t\t\t\tthis.paused = false;\n\t\t\t\tthis.start();\n\t\t\t} else {\n\t\t\t\tthis.slider.on('transition:end', function () {\n\t\t\t\t\tif (!_this3) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\t_this3.paused = false;\n\t\t\t\t\tif (!_this3.run) {\n\t\t\t\t\t\t_this3.stop();\n\t\t\t\t\t} else {\n\t\t\t\t\t\t_this3.start();\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'onVisibilityChange',\n\t\tvalue: function onVisibilityChange(e) {\n\t\t\tif (document.hidden) {\n\t\t\t\tthis.stop();\n\t\t\t} else {\n\t\t\t\tthis.start();\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'onMouseEnter',\n\t\tvalue: function onMouseEnter(e) {\n\t\t\tthis._hovering = true;\n\t\t\tif (this.slider.options.pauseOnHover) {\n\t\t\t\tthis.pause();\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'onMouseLeave',\n\t\tvalue: function onMouseLeave(e) {\n\t\t\tthis._hovering = false;\n\t\t\tif (this.slider.options.pauseOnHover) {\n\t\t\t\tthis.pause();\n\t\t\t}\n\t\t}\n\t}]);\n\n\treturn Autoplay;\n}(__WEBPACK_IMPORTED_MODULE_0__utils_eventEmitter__[\"a\" /* default */]);\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (Autoplay);\n\n/***/ }),\n/* 8 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* unused harmony export isIE */\n/* unused harmony export isIETouch */\n/* unused harmony export isAndroid */\n/* unused harmony export isiPad */\n/* unused harmony export isiPod */\n/* unused harmony export isiPhone */\n/* unused harmony export isSafari */\n/* unused harmony export isUiWebView */\n/* unused harmony export supportsTouchEvents */\n/* unused harmony export supportsPointerEvents */\n/* unused harmony export supportsTouch */\n/* unused harmony export pointerDown */\n/* unused harmony export pointerMove */\n/* unused harmony export pointerUp */\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"a\", function() { return pointerEnter; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"b\", function() { return pointerLeave; });\nvar isIE = window.navigator.pointerEnabled || window.navigator.msPointerEnabled;\nvar isIETouch = window.navigator.msPointerEnabled && window.navigator.msMaxTouchPoints > 1 || window.navigator.pointerEnabled && window.navigator.maxTouchPoints > 1;\nvar isAndroid = navigator.userAgent.match(/(Android);?[\\s\\/]+([\\d.]+)?/);\nvar isiPad = navigator.userAgent.match(/(iPad).*OS\\s([\\d_]+)/);\nvar isiPod = navigator.userAgent.match(/(iPod)(.*OS\\s([\\d_]+))?/);\nvar isiPhone = !navigator.userAgent.match(/(iPad).*OS\\s([\\d_]+)/) && navigator.userAgent.match(/(iPhone\\sOS)\\s([\\d_]+)/);\nvar isSafari = navigator.userAgent.toLowerCase().indexOf('safari') >= 0 && navigator.userAgent.toLowerCase().indexOf('chrome') < 0 && navigator.userAgent.toLowerCase().indexOf('android') < 0;\nvar isUiWebView = /(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(navigator.userAgent);\n\nvar supportsTouchEvents = !!('ontouchstart' in window);\nvar supportsPointerEvents = !!('PointerEvent' in window);\nvar supportsTouch = supportsTouchEvents || window.DocumentTouch && document instanceof DocumentTouch || navigator.maxTouchPoints; // IE >=11\nvar pointerDown = !supportsTouch ? 'mousedown' : 'mousedown ' + (supportsTouchEvents ? 'touchstart' : 'pointerdown');\nvar pointerMove = !supportsTouch ? 'mousemove' : 'mousemove ' + (supportsTouchEvents ? 'touchmove' : 'pointermove');\nvar pointerUp = !supportsTouch ? 'mouseup' : 'mouseup ' + (supportsTouchEvents ? 'touchend' : 'pointerup');\nvar pointerEnter = supportsTouch && supportsPointerEvents ? 'pointerenter' : 'mouseenter';\nvar pointerLeave = supportsTouch && supportsPointerEvents ? 'pointerleave' : 'mouseleave';\n\n/***/ }),\n/* 9 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar onResize = Symbol('onResize');\n\nvar Breakpoints = function () {\n\tfunction Breakpoints(slider) {\n\t\t_classCallCheck(this, Breakpoints);\n\n\t\tthis.slider = slider;\n\t\tthis.options = slider.options;\n\n\t\tthis[onResize] = this[onResize].bind(this);\n\n\t\tthis._bindEvents();\n\t}\n\n\t_createClass(Breakpoints, [{\n\t\tkey: 'init',\n\t\tvalue: function init() {\n\t\t\tthis._defaultBreakpoint = {\n\t\t\t\tslidesToShow: this.options.slidesToShow,\n\t\t\t\tslidesToScroll: this.options.slidesToScroll\n\t\t\t};\n\t\t\tthis.options.breakpoints.sort(function (a, b) {\n\t\t\t\treturn parseInt(a.changePoint, 10) > parseInt(b.changePoint, 10);\n\t\t\t});\n\t\t\tthis._currentBreakpoint = this._getActiveBreakpoint();\n\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: 'destroy',\n\t\tvalue: function destroy() {\n\t\t\tthis._unbindEvents();\n\t\t}\n\t}, {\n\t\tkey: '_bindEvents',\n\t\tvalue: function _bindEvents() {\n\t\t\twindow.addEventListener('resize', this[onResize]);\n\t\t\twindow.addEventListener('orientationchange', this[onResize]);\n\t\t}\n\t}, {\n\t\tkey: '_unbindEvents',\n\t\tvalue: function _unbindEvents() {\n\t\t\twindow.removeEventListener('resize', this[onResize]);\n\t\t\twindow.removeEventListener('orientationchange', this[onResize]);\n\t\t}\n\t}, {\n\t\tkey: '_getActiveBreakpoint',\n\t\tvalue: function _getActiveBreakpoint() {\n\t\t\t//Get breakpoint for window width\n\t\t\tvar _iteratorNormalCompletion = true;\n\t\t\tvar _didIteratorError = false;\n\t\t\tvar _iteratorError = undefined;\n\n\t\t\ttry {\n\t\t\t\tfor (var _iterator = this.options.breakpoints[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {\n\t\t\t\t\tvar point = _step.value;\n\n\t\t\t\t\tif (point.changePoint >= window.innerWidth) {\n\t\t\t\t\t\treturn point;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} catch (err) {\n\t\t\t\t_didIteratorError = true;\n\t\t\t\t_iteratorError = err;\n\t\t\t} finally {\n\t\t\t\ttry {\n\t\t\t\t\tif (!_iteratorNormalCompletion && _iterator.return) {\n\t\t\t\t\t\t_iterator.return();\n\t\t\t\t\t}\n\t\t\t\t} finally {\n\t\t\t\t\tif (_didIteratorError) {\n\t\t\t\t\t\tthrow _iteratorError;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn this._defaultBreakpoint;\n\t\t}\n\t}, {\n\t\tkey: 'getSlidesToShow',\n\t\tvalue: function getSlidesToShow() {\n\t\t\treturn this._currentBreakpoint ? this._currentBreakpoint.slidesToShow : this._defaultBreakpoint.slidesToShow;\n\t\t}\n\t}, {\n\t\tkey: 'getSlidesToScroll',\n\t\tvalue: function getSlidesToScroll() {\n\t\t\treturn this._currentBreakpoint ? this._currentBreakpoint.slidesToScroll : this._defaultBreakpoint.slidesToScroll;\n\t\t}\n\t}, {\n\t\tkey: 'apply',\n\t\tvalue: function apply() {\n\t\t\tif (this.slider.state.index >= this.slider.state.length && this.slider.state.index !== 0) {\n\t\t\t\tthis.slider.state.index = this.slider.state.index - this._currentBreakpoint.slidesToScroll;\n\t\t\t}\n\t\t\tif (this.slider.state.length <= this._currentBreakpoint.slidesToShow) {\n\t\t\t\tthis.slider.state.index = 0;\n\t\t\t}\n\n\t\t\tif (this.options.loop) {\n\t\t\t\tthis.slider._loop.init().apply();\n\t\t\t}\n\n\t\t\tif (this.options.infinite) {\n\t\t\t\tthis.slider._infinite.init().apply();\n\t\t\t}\n\n\t\t\tthis.slider._setDimensions();\n\t\t\tthis.slider._transitioner.init().apply(true, this.slider._setHeight.bind(this.slider));\n\t\t\tthis.slider._setClasses();\n\n\t\t\tthis.slider._navigation.refresh();\n\t\t\tthis.slider._pagination.refresh();\n\t\t}\n\t}, {\n\t\tkey: onResize,\n\t\tvalue: function value(e) {\n\t\t\tvar newBreakPoint = this._getActiveBreakpoint();\n\t\t\tif (newBreakPoint.slidesToShow !== this._currentBreakpoint.slidesToShow) {\n\t\t\t\tthis._currentBreakpoint = newBreakPoint;\n\t\t\t\tthis.apply();\n\t\t\t}\n\t\t}\n\t}]);\n\n\treturn Breakpoints;\n}();\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (Breakpoints);\n\n/***/ }),\n/* 10 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar Infinite = function () {\n\tfunction Infinite(slider) {\n\t\t_classCallCheck(this, Infinite);\n\n\t\tthis.slider = slider;\n\t}\n\n\t_createClass(Infinite, [{\n\t\tkey: 'init',\n\t\tvalue: function init() {\n\t\t\tif (this.slider.options.infinite && this.slider.options.effect === 'translate') {\n\t\t\t\tif (this.slider.options.centerMode) {\n\t\t\t\t\tthis._infiniteCount = Math.ceil(this.slider.slidesToShow + this.slider.slidesToShow / 2);\n\t\t\t\t} else {\n\t\t\t\t\tthis._infiniteCount = this.slider.slidesToShow;\n\t\t\t\t}\n\n\t\t\t\tvar frontClones = [];\n\t\t\t\tvar slideIndex = 0;\n\t\t\t\tfor (var i = this.slider.state.length; i > this.slider.state.length - 1 - this._infiniteCount; i -= 1) {\n\t\t\t\t\tslideIndex = i - 1;\n\t\t\t\t\tfrontClones.unshift(this._cloneSlide(this.slider.slides[slideIndex], slideIndex - this.slider.state.length));\n\t\t\t\t}\n\n\t\t\t\tvar backClones = [];\n\t\t\t\tfor (var _i = 0; _i < this._infiniteCount + this.slider.state.length; _i += 1) {\n\t\t\t\t\tbackClones.push(this._cloneSlide(this.slider.slides[_i % this.slider.state.length], _i + this.slider.state.length));\n\t\t\t\t}\n\n\t\t\t\tthis.slider.slides = [].concat(frontClones, _toConsumableArray(this.slider.slides), backClones);\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: 'apply',\n\t\tvalue: function apply() {}\n\t}, {\n\t\tkey: 'onTransitionEnd',\n\t\tvalue: function onTransitionEnd(e) {\n\t\t\tif (this.slider.options.infinite) {\n\t\t\t\tif (this.slider.state.next >= this.slider.state.length) {\n\t\t\t\t\tthis.slider.state.index = this.slider.state.next = this.slider.state.next - this.slider.state.length;\n\t\t\t\t\tthis.slider.transitioner.apply(true);\n\t\t\t\t} else if (this.slider.state.next < 0) {\n\t\t\t\t\tthis.slider.state.index = this.slider.state.next = this.slider.state.length + this.slider.state.next;\n\t\t\t\t\tthis.slider.transitioner.apply(true);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: '_cloneSlide',\n\t\tvalue: function _cloneSlide(slide, index) {\n\t\t\tvar newSlide = slide.cloneNode(true);\n\t\t\tnewSlide.dataset.sliderIndex = index;\n\t\t\tnewSlide.dataset.cloned = true;\n\t\t\tvar ids = newSlide.querySelectorAll('[id]') || [];\n\t\t\tids.forEach(function (id) {\n\t\t\t\tid.setAttribute('id', '');\n\t\t\t});\n\t\t\treturn newSlide;\n\t\t}\n\t}]);\n\n\treturn Infinite;\n}();\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (Infinite);\n\n/***/ }),\n/* 11 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__utils_dom__ = __webpack_require__(12);\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\n\nvar Loop = function () {\n\tfunction Loop(slider) {\n\t\t_classCallCheck(this, Loop);\n\n\t\tthis.slider = slider;\n\t}\n\n\t_createClass(Loop, [{\n\t\tkey: \"init\",\n\t\tvalue: function init() {\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: \"apply\",\n\t\tvalue: function apply() {\n\t\t\tif (this.slider.options.loop) {\n\t\t\t\tif (this.slider.state.next > 0) {\n\t\t\t\t\tif (this.slider.state.next < this.slider.state.length) {\n\t\t\t\t\t\tif (this.slider.state.next > this.slider.state.length - this.slider.slidesToShow && Object(__WEBPACK_IMPORTED_MODULE_0__utils_dom__[\"a\" /* isInViewport */])(this.slider._slides[this.slider.state.length - 1], this.slider.wrapper)) {\n\t\t\t\t\t\t\tthis.slider.state.next = 0;\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tthis.slider.state.next = Math.min(Math.max(this.slider.state.next, 0), this.slider.state.length - this.slider.slidesToShow);\n\t\t\t\t\t\t}\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.slider.state.next = 0;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tif (this.slider.state.next <= 0 - this.slider.slidesToScroll) {\n\t\t\t\t\t\tthis.slider.state.next = this.slider.state.length - this.slider.slidesToShow;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.slider.state.next = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}]);\n\n\treturn Loop;\n}();\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (Loop);\n\n/***/ }),\n/* 12 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"a\", function() { return isInViewport; });\nvar isInViewport = function isInViewport(element, html) {\n\tvar rect = element.getBoundingClientRect();\n\thtml = html || document.documentElement;\n\treturn rect.top >= 0 && rect.left >= 0 && rect.bottom <= (window.innerHeight || html.clientHeight) && rect.right <= (window.innerWidth || html.clientWidth);\n};\n\n/***/ }),\n/* 13 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__templates_navigation__ = __webpack_require__(14);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__utils_detect_supportsPassive__ = __webpack_require__(1);\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\n\n\nvar Navigation = function () {\n\tfunction Navigation(slider) {\n\t\t_classCallCheck(this, Navigation);\n\n\t\tthis.slider = slider;\n\n\t\tthis._clickEvents = ['click', 'touch'];\n\t\tthis._supportsPassive = Object(__WEBPACK_IMPORTED_MODULE_1__utils_detect_supportsPassive__[\"a\" /* default */])();\n\n\t\tthis.onPreviousClick = this.onPreviousClick.bind(this);\n\t\tthis.onNextClick = this.onNextClick.bind(this);\n\t\tthis.onKeyUp = this.onKeyUp.bind(this);\n\t}\n\n\t_createClass(Navigation, [{\n\t\tkey: 'init',\n\t\tvalue: function init() {\n\t\t\tthis.node = document.createRange().createContextualFragment(Object(__WEBPACK_IMPORTED_MODULE_0__templates_navigation__[\"a\" /* default */])(this.slider.options.icons));\n\t\t\tthis._ui = {\n\t\t\t\tprevious: this.node.querySelector('.slider-navigation-previous'),\n\t\t\t\tnext: this.node.querySelector('.slider-navigation-next')\n\t\t\t};\n\n\t\t\tthis._unbindEvents();\n\t\t\tthis._bindEvents();\n\n\t\t\tthis.refresh();\n\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: 'destroy',\n\t\tvalue: function destroy() {\n\t\t\tthis._unbindEvents();\n\t\t}\n\t}, {\n\t\tkey: '_bindEvents',\n\t\tvalue: function _bindEvents() {\n\t\t\tvar _this = this;\n\n\t\t\tthis.slider.wrapper.addEventListener('keyup', this.onKeyUp);\n\t\t\tthis._clickEvents.forEach(function (clickEvent) {\n\t\t\t\t_this._ui.previous.addEventListener(clickEvent, _this.onPreviousClick);\n\t\t\t\t_this._ui.next.addEventListener(clickEvent, _this.onNextClick);\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: '_unbindEvents',\n\t\tvalue: function _unbindEvents() {\n\t\t\tvar _this2 = this;\n\n\t\t\tthis.slider.wrapper.removeEventListener('keyup', this.onKeyUp);\n\t\t\tthis._clickEvents.forEach(function (clickEvent) {\n\t\t\t\t_this2._ui.previous.removeEventListener(clickEvent, _this2.onPreviousClick);\n\t\t\t\t_this2._ui.next.removeEventListener(clickEvent, _this2.onNextClick);\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: 'onNextClick',\n\t\tvalue: function onNextClick(e) {\n\t\t\tif (!this._supportsPassive) {\n\t\t\t\te.preventDefault();\n\t\t\t}\n\n\t\t\tif (this.slider.options.navigation) {\n\t\t\t\tthis.slider.next();\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'onPreviousClick',\n\t\tvalue: function onPreviousClick(e) {\n\t\t\tif (!this._supportsPassive) {\n\t\t\t\te.preventDefault();\n\t\t\t}\n\n\t\t\tif (this.slider.options.navigation) {\n\t\t\t\tthis.slider.previous();\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'onKeyUp',\n\t\tvalue: function onKeyUp(e) {\n\t\t\tif (this.slider.options.keyNavigation) {\n\t\t\t\tif (e.key === 'ArrowRight' || e.key === 'Right') {\n\t\t\t\t\tthis.slider.next();\n\t\t\t\t} else if (e.key === 'ArrowLeft' || e.key === 'Left') {\n\t\t\t\t\tthis.slider.previous();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'refresh',\n\t\tvalue: function refresh() {\n\t\t\t// let centerOffset = Math.floor(this.options.slidesToShow / 2);\n\t\t\tif (!this.slider.options.loop && !this.slider.options.infinite) {\n\t\t\t\tif (this.slider.options.navigation && this.slider.state.length > this.slider.slidesToShow) {\n\t\t\t\t\tthis._ui.previous.classList.remove('is-hidden');\n\t\t\t\t\tthis._ui.next.classList.remove('is-hidden');\n\t\t\t\t\tif (this.slider.state.next === 0) {\n\t\t\t\t\t\tthis._ui.previous.classList.add('is-hidden');\n\t\t\t\t\t\tthis._ui.next.classList.remove('is-hidden');\n\t\t\t\t\t} else if (this.slider.state.next >= this.slider.state.length - this.slider.slidesToShow && !this.slider.options.centerMode) {\n\t\t\t\t\t\tthis._ui.previous.classList.remove('is-hidden');\n\t\t\t\t\t\tthis._ui.next.classList.add('is-hidden');\n\t\t\t\t\t} else if (this.slider.state.next >= this.slider.state.length - 1 && this.slider.options.centerMode) {\n\t\t\t\t\t\tthis._ui.previous.classList.remove('is-hidden');\n\t\t\t\t\t\tthis._ui.next.classList.add('is-hidden');\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tthis._ui.previous.classList.add('is-hidden');\n\t\t\t\t\tthis._ui.next.classList.add('is-hidden');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'render',\n\t\tvalue: function render() {\n\t\t\treturn this.node;\n\t\t}\n\t}]);\n\n\treturn Navigation;\n}();\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (Navigation);\n\n/***/ }),\n/* 14 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony default export */ __webpack_exports__[\"a\"] = (function (icons) {\n\treturn \"<div class=\\\"slider-navigation-previous\\\">\" + icons.previous + \"</div>\\n<div class=\\\"slider-navigation-next\\\">\" + icons.next + \"</div>\";\n});\n\n/***/ }),\n/* 15 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__templates_pagination__ = __webpack_require__(16);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__templates_pagination_page__ = __webpack_require__(17);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__utils_detect_supportsPassive__ = __webpack_require__(1);\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\n\n\n\nvar Pagination = function () {\n\tfunction Pagination(slider) {\n\t\t_classCallCheck(this, Pagination);\n\n\t\tthis.slider = slider;\n\n\t\tthis._clickEvents = ['click', 'touch'];\n\t\tthis._supportsPassive = Object(__WEBPACK_IMPORTED_MODULE_2__utils_detect_supportsPassive__[\"a\" /* default */])();\n\n\t\tthis.onPageClick = this.onPageClick.bind(this);\n\t\tthis.onResize = this.onResize.bind(this);\n\t}\n\n\t_createClass(Pagination, [{\n\t\tkey: 'init',\n\t\tvalue: function init() {\n\t\t\tthis._pages = [];\n\t\t\tthis.node = document.createRange().createContextualFragment(Object(__WEBPACK_IMPORTED_MODULE_0__templates_pagination__[\"a\" /* default */])());\n\t\t\tthis._ui = {\n\t\t\t\tcontainer: this.node.firstChild\n\t\t\t};\n\n\t\t\tthis._count = Math.ceil((this.slider.state.length - this.slider.slidesToShow) / this.slider.slidesToScroll);\n\n\t\t\tthis._draw();\n\t\t\tthis.refresh();\n\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: 'destroy',\n\t\tvalue: function destroy() {\n\t\t\tthis._unbindEvents();\n\t\t}\n\t}, {\n\t\tkey: '_bindEvents',\n\t\tvalue: function _bindEvents() {\n\t\t\tvar _this = this;\n\n\t\t\twindow.addEventListener('resize', this.onResize);\n\t\t\twindow.addEventListener('orientationchange', this.onResize);\n\n\t\t\tthis._clickEvents.forEach(function (clickEvent) {\n\t\t\t\t_this._pages.forEach(function (page) {\n\t\t\t\t\treturn page.addEventListener(clickEvent, _this.onPageClick);\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: '_unbindEvents',\n\t\tvalue: function _unbindEvents() {\n\t\t\tvar _this2 = this;\n\n\t\t\twindow.removeEventListener('resize', this.onResize);\n\t\t\twindow.removeEventListener('orientationchange', this.onResize);\n\n\t\t\tthis._clickEvents.forEach(function (clickEvent) {\n\t\t\t\t_this2._pages.forEach(function (page) {\n\t\t\t\t\treturn page.removeEventListener(clickEvent, _this2.onPageClick);\n\t\t\t\t});\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: '_draw',\n\t\tvalue: function _draw() {\n\t\t\tthis._ui.container.innerHTML = '';\n\t\t\tif (this.slider.options.pagination && this.slider.state.length > this.slider.slidesToShow) {\n\t\t\t\tfor (var i = 0; i <= this._count; i++) {\n\t\t\t\t\tvar newPageNode = document.createRange().createContextualFragment(Object(__WEBPACK_IMPORTED_MODULE_1__templates_pagination_page__[\"a\" /* default */])()).firstChild;\n\t\t\t\t\tnewPageNode.dataset.index = i * this.slider.slidesToScroll;\n\t\t\t\t\tthis._pages.push(newPageNode);\n\t\t\t\t\tthis._ui.container.appendChild(newPageNode);\n\t\t\t\t}\n\t\t\t\tthis._bindEvents();\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'onPageClick',\n\t\tvalue: function onPageClick(e) {\n\t\t\tif (!this._supportsPassive) {\n\t\t\t\te.preventDefault();\n\t\t\t}\n\n\t\t\tthis.slider.state.next = e.currentTarget.dataset.index;\n\t\t\tthis.slider.show();\n\t\t}\n\t}, {\n\t\tkey: 'onResize',\n\t\tvalue: function onResize() {\n\t\t\tthis._draw();\n\t\t}\n\t}, {\n\t\tkey: 'refresh',\n\t\tvalue: function refresh() {\n\t\t\tvar _this3 = this;\n\n\t\t\tvar newCount = void 0;\n\n\t\t\tif (this.slider.options.infinite) {\n\t\t\t\tnewCount = Math.ceil(this.slider.state.length - 1 / this.slider.slidesToScroll);\n\t\t\t} else {\n\t\t\t\tnewCount = Math.ceil((this.slider.state.length - this.slider.slidesToShow) / this.slider.slidesToScroll);\n\t\t\t}\n\t\t\tif (newCount !== this._count) {\n\t\t\t\tthis._count = newCount;\n\t\t\t\tthis._draw();\n\t\t\t}\n\n\t\t\tthis._pages.forEach(function (page) {\n\t\t\t\tpage.classList.remove('is-active');\n\t\t\t\tif (parseInt(page.dataset.index, 10) === _this3.slider.state.next % _this3.slider.state.length) {\n\t\t\t\t\tpage.classList.add('is-active');\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: 'render',\n\t\tvalue: function render() {\n\t\t\treturn this.node;\n\t\t}\n\t}]);\n\n\treturn Pagination;\n}();\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (Pagination);\n\n/***/ }),\n/* 16 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony default export */ __webpack_exports__[\"a\"] = (function () {\n\treturn \"<div class=\\\"slider-pagination\\\"></div>\";\n});\n\n/***/ }),\n/* 17 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony default export */ __webpack_exports__[\"a\"] = (function () {\n  return \"<div class=\\\"slider-page\\\"></div>\";\n});\n\n/***/ }),\n/* 18 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__utils_coordinate__ = __webpack_require__(4);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__utils_detect_supportsPassive__ = __webpack_require__(1);\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\n\n\nvar Swipe = function () {\n\tfunction Swipe(slider) {\n\t\t_classCallCheck(this, Swipe);\n\n\t\tthis.slider = slider;\n\n\t\tthis._supportsPassive = Object(__WEBPACK_IMPORTED_MODULE_1__utils_detect_supportsPassive__[\"a\" /* default */])();\n\n\t\tthis.onStartDrag = this.onStartDrag.bind(this);\n\t\tthis.onMoveDrag = this.onMoveDrag.bind(this);\n\t\tthis.onStopDrag = this.onStopDrag.bind(this);\n\n\t\tthis._init();\n\t}\n\n\t_createClass(Swipe, [{\n\t\tkey: '_init',\n\t\tvalue: function _init() {}\n\t}, {\n\t\tkey: 'bindEvents',\n\t\tvalue: function bindEvents() {\n\t\t\tvar _this = this;\n\n\t\t\tthis.slider.container.addEventListener('dragstart', function (e) {\n\t\t\t\tif (!_this._supportsPassive) {\n\t\t\t\t\te.preventDefault();\n\t\t\t\t}\n\t\t\t});\n\t\t\tthis.slider.container.addEventListener('mousedown', this.onStartDrag);\n\t\t\tthis.slider.container.addEventListener('touchstart', this.onStartDrag);\n\n\t\t\twindow.addEventListener('mousemove', this.onMoveDrag);\n\t\t\twindow.addEventListener('touchmove', this.onMoveDrag);\n\n\t\t\twindow.addEventListener('mouseup', this.onStopDrag);\n\t\t\twindow.addEventListener('touchend', this.onStopDrag);\n\t\t\twindow.addEventListener('touchcancel', this.onStopDrag);\n\t\t}\n\t}, {\n\t\tkey: 'unbindEvents',\n\t\tvalue: function unbindEvents() {\n\t\t\tvar _this2 = this;\n\n\t\t\tthis.slider.container.removeEventListener('dragstart', function (e) {\n\t\t\t\tif (!_this2._supportsPassive) {\n\t\t\t\t\te.preventDefault();\n\t\t\t\t}\n\t\t\t});\n\t\t\tthis.slider.container.removeEventListener('mousedown', this.onStartDrag);\n\t\t\tthis.slider.container.removeEventListener('touchstart', this.onStartDrag);\n\n\t\t\twindow.removeEventListener('mousemove', this.onMoveDrag);\n\t\t\twindow.removeEventListener('touchmove', this.onMoveDrag);\n\n\t\t\twindow.removeEventListener('mouseup', this.onStopDrag);\n\t\t\twindow.removeEventListener('mouseup', this.onStopDrag);\n\t\t\twindow.removeEventListener('touchcancel', this.onStopDrag);\n\t\t}\n\n\t\t/**\n   * @param {MouseEvent|TouchEvent}\n   */\n\n\t}, {\n\t\tkey: 'onStartDrag',\n\t\tvalue: function onStartDrag(e) {\n\t\t\tif (e.touches) {\n\t\t\t\tif (e.touches.length > 1) {\n\t\t\t\t\treturn;\n\t\t\t\t} else {\n\t\t\t\t\te = e.touches[0];\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tthis._origin = new __WEBPACK_IMPORTED_MODULE_0__utils_coordinate__[\"a\" /* default */](e.screenX, e.screenY);\n\t\t\tthis.width = this.slider.wrapperWidth;\n\t\t\tthis.slider.transitioner.disable();\n\t\t}\n\n\t\t/**\n   * @param {MouseEvent|TouchEvent}\n   */\n\n\t}, {\n\t\tkey: 'onMoveDrag',\n\t\tvalue: function onMoveDrag(e) {\n\t\t\tif (this._origin) {\n\t\t\t\tvar point = e.touches ? e.touches[0] : e;\n\t\t\t\tthis._lastTranslate = new __WEBPACK_IMPORTED_MODULE_0__utils_coordinate__[\"a\" /* default */](point.screenX - this._origin.x, point.screenY - this._origin.y);\n\t\t\t\tif (e.touches) {\n\t\t\t\t\tif (Math.abs(this._lastTranslate.x) > Math.abs(this._lastTranslate.y)) {\n\t\t\t\t\t\tif (!this._supportsPassive) {\n\t\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\t}\n\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t/**\n   * @param {MouseEvent|TouchEvent}\n   */\n\n\t}, {\n\t\tkey: 'onStopDrag',\n\t\tvalue: function onStopDrag(e) {\n\t\t\tif (this._origin && this._lastTranslate) {\n\t\t\t\tif (Math.abs(this._lastTranslate.x) > 0.2 * this.width) {\n\t\t\t\t\tif (this._lastTranslate.x < 0) {\n\t\t\t\t\t\tthis.slider.next();\n\t\t\t\t\t} else {\n\t\t\t\t\t\tthis.slider.previous();\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tthis.slider.show(true);\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis._origin = null;\n\t\t\tthis._lastTranslate = null;\n\t\t}\n\t}]);\n\n\treturn Swipe;\n}();\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (Swipe);\n\n/***/ }),\n/* 19 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__transitions_fade__ = __webpack_require__(20);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__transitions_translate__ = __webpack_require__(21);\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\n\n\nvar Transitioner = function () {\n\tfunction Transitioner(slider) {\n\t\t_classCallCheck(this, Transitioner);\n\n\t\tthis.slider = slider;\n\t\tthis.options = slider.options;\n\n\t\tthis._animating = false;\n\t\tthis._animation = undefined;\n\n\t\tthis._translate = new __WEBPACK_IMPORTED_MODULE_1__transitions_translate__[\"a\" /* default */](this, slider, slider.options);\n\t\tthis._fade = new __WEBPACK_IMPORTED_MODULE_0__transitions_fade__[\"a\" /* default */](this, slider, slider.options);\n\t}\n\n\t_createClass(Transitioner, [{\n\t\tkey: 'init',\n\t\tvalue: function init() {\n\t\t\tthis._fade.init();\n\t\t\tthis._translate.init();\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: 'isAnimating',\n\t\tvalue: function isAnimating() {\n\t\t\treturn this._animating;\n\t\t}\n\t}, {\n\t\tkey: 'enable',\n\t\tvalue: function enable() {\n\t\t\tthis._animation && this._animation.enable();\n\t\t}\n\t}, {\n\t\tkey: 'disable',\n\t\tvalue: function disable() {\n\t\t\tthis._animation && this._animation.disable();\n\t\t}\n\t}, {\n\t\tkey: 'apply',\n\t\tvalue: function apply(force, callback) {\n\t\t\t// If we don't force refresh and animation in progress then return\n\t\t\tif (this._animating && !force) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tswitch (this.options.effect) {\n\t\t\t\tcase 'fade':\n\t\t\t\t\tthis._animation = this._fade;\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'translate':\n\t\t\t\tdefault:\n\t\t\t\t\tthis._animation = this._translate;\n\t\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tthis._animationCallback = callback;\n\n\t\t\tif (force) {\n\t\t\t\tthis._animation && this._animation.disable();\n\t\t\t} else {\n\t\t\t\tthis._animation && this._animation.enable();\n\t\t\t\tthis._animating = true;\n\t\t\t}\n\n\t\t\tthis._animation && this._animation.apply();\n\n\t\t\tif (force) {\n\t\t\t\tthis.end();\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'end',\n\t\tvalue: function end() {\n\t\t\tthis._animating = false;\n\t\t\tthis._animation = undefined;\n\t\t\tthis.slider.state.index = this.slider.state.next;\n\t\t\tif (this._animationCallback) {\n\t\t\t\tthis._animationCallback();\n\t\t\t}\n\t\t}\n\t}]);\n\n\treturn Transitioner;\n}();\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (Transitioner);\n\n/***/ }),\n/* 20 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__utils_css__ = __webpack_require__(0);\nvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\n\nvar Fade = function () {\n\tfunction Fade(transitioner, slider) {\n\t\tvar options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n\t\t_classCallCheck(this, Fade);\n\n\t\tthis.transitioner = transitioner;\n\t\tthis.slider = slider;\n\t\tthis.options = _extends({}, options);\n\t}\n\n\t_createClass(Fade, [{\n\t\tkey: 'init',\n\t\tvalue: function init() {\n\t\t\tvar _this = this;\n\n\t\t\tif (this.options.effect === 'fade') {\n\t\t\t\tthis.slider.slides.forEach(function (slide, index) {\n\t\t\t\t\tObject(__WEBPACK_IMPORTED_MODULE_0__utils_css__[\"a\" /* css */])(slide, {\n\t\t\t\t\t\tposition: 'absolute',\n\t\t\t\t\t\tleft: 0,\n\t\t\t\t\t\ttop: 0,\n\t\t\t\t\t\tbottom: 0,\n\t\t\t\t\t\t'z-index': slide.dataset.sliderIndex == _this.slider.state.index ? 0 : -2,\n\t\t\t\t\t\topacity: slide.dataset.sliderIndex == _this.slider.state.index ? 1 : 0\n\t\t\t\t\t});\n\t\t\t\t});\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: 'enable',\n\t\tvalue: function enable() {\n\t\t\tvar _this2 = this;\n\n\t\t\tthis._oldSlide = this.slider.slides.filter(function (slide) {\n\t\t\t\treturn slide.dataset.sliderIndex == _this2.slider.state.index;\n\t\t\t})[0];\n\t\t\tthis._newSlide = this.slider.slides.filter(function (slide) {\n\t\t\t\treturn slide.dataset.sliderIndex == _this2.slider.state.next;\n\t\t\t})[0];\n\t\t\tif (this._newSlide) {\n\t\t\t\tthis._newSlide.addEventListener('transitionend', this.onTransitionEnd.bind(this));\n\t\t\t\tthis._newSlide.style.transition = this.options.duration + 'ms ' + this.options.timing;\n\t\t\t\tif (this._oldSlide) {\n\t\t\t\t\tthis._oldSlide.addEventListener('transitionend', this.onTransitionEnd.bind(this));\n\t\t\t\t\tthis._oldSlide.style.transition = this.options.duration + 'ms ' + this.options.timing;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'disable',\n\t\tvalue: function disable() {\n\t\t\tvar _this3 = this;\n\n\t\t\tthis._oldSlide = this.slider.slides.filter(function (slide) {\n\t\t\t\treturn slide.dataset.sliderIndex == _this3.slider.state.index;\n\t\t\t})[0];\n\t\t\tthis._newSlide = this.slider.slides.filter(function (slide) {\n\t\t\t\treturn slide.dataset.sliderIndex == _this3.slider.state.next;\n\t\t\t})[0];\n\t\t\tif (this._newSlide) {\n\t\t\t\tthis._newSlide.removeEventListener('transitionend', this.onTransitionEnd.bind(this));\n\t\t\t\tthis._newSlide.style.transition = 'none';\n\t\t\t\tif (this._oldSlide) {\n\t\t\t\t\tthis._oldSlide.removeEventListener('transitionend', this.onTransitionEnd.bind(this));\n\t\t\t\t\tthis._oldSlide.style.transition = 'none';\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'apply',\n\t\tvalue: function apply(force) {\n\t\t\tvar _this4 = this;\n\n\t\t\tthis._oldSlide = this.slider.slides.filter(function (slide) {\n\t\t\t\treturn slide.dataset.sliderIndex == _this4.slider.state.index;\n\t\t\t})[0];\n\t\t\tthis._newSlide = this.slider.slides.filter(function (slide) {\n\t\t\t\treturn slide.dataset.sliderIndex == _this4.slider.state.next;\n\t\t\t})[0];\n\n\t\t\tif (this._oldSlide && this._newSlide) {\n\t\t\t\tObject(__WEBPACK_IMPORTED_MODULE_0__utils_css__[\"a\" /* css */])(this._oldSlide, {\n\t\t\t\t\topacity: 0\n\t\t\t\t});\n\t\t\t\tObject(__WEBPACK_IMPORTED_MODULE_0__utils_css__[\"a\" /* css */])(this._newSlide, {\n\t\t\t\t\topacity: 1,\n\t\t\t\t\t'z-index': force ? 0 : -1\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'onTransitionEnd',\n\t\tvalue: function onTransitionEnd(e) {\n\t\t\tif (this.options.effect === 'fade') {\n\t\t\t\tif (this.transitioner.isAnimating() && e.target == this._newSlide) {\n\t\t\t\t\tif (this._newSlide) {\n\t\t\t\t\t\tObject(__WEBPACK_IMPORTED_MODULE_0__utils_css__[\"a\" /* css */])(this._newSlide, {\n\t\t\t\t\t\t\t'z-index': 0\n\t\t\t\t\t\t});\n\t\t\t\t\t\tthis._newSlide.removeEventListener('transitionend', this.onTransitionEnd.bind(this));\n\t\t\t\t\t}\n\t\t\t\t\tif (this._oldSlide) {\n\t\t\t\t\t\tObject(__WEBPACK_IMPORTED_MODULE_0__utils_css__[\"a\" /* css */])(this._oldSlide, {\n\t\t\t\t\t\t\t'z-index': -2\n\t\t\t\t\t\t});\n\t\t\t\t\t\tthis._oldSlide.removeEventListener('transitionend', this.onTransitionEnd.bind(this));\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tthis.transitioner.end();\n\t\t\t}\n\t\t}\n\t}]);\n\n\treturn Fade;\n}();\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (Fade);\n\n/***/ }),\n/* 21 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__utils_coordinate__ = __webpack_require__(4);\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__utils_css__ = __webpack_require__(0);\nvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\n\n\n\nvar Translate = function () {\n\tfunction Translate(transitioner, slider) {\n\t\tvar options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n\t\t_classCallCheck(this, Translate);\n\n\t\tthis.transitioner = transitioner;\n\t\tthis.slider = slider;\n\t\tthis.options = _extends({}, options);\n\n\t\tthis.onTransitionEnd = this.onTransitionEnd.bind(this);\n\t}\n\n\t_createClass(Translate, [{\n\t\tkey: 'init',\n\t\tvalue: function init() {\n\t\t\tthis._position = new __WEBPACK_IMPORTED_MODULE_0__utils_coordinate__[\"a\" /* default */](this.slider.container.offsetLeft, this.slider.container.offsetTop);\n\t\t\tthis._bindEvents();\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: 'destroy',\n\t\tvalue: function destroy() {\n\t\t\tthis._unbindEvents();\n\t\t}\n\t}, {\n\t\tkey: '_bindEvents',\n\t\tvalue: function _bindEvents() {\n\t\t\tthis.slider.container.addEventListener('transitionend', this.onTransitionEnd);\n\t\t}\n\t}, {\n\t\tkey: '_unbindEvents',\n\t\tvalue: function _unbindEvents() {\n\t\t\tthis.slider.container.removeEventListener('transitionend', this.onTransitionEnd);\n\t\t}\n\t}, {\n\t\tkey: 'enable',\n\t\tvalue: function enable() {\n\t\t\tthis.slider.container.style.transition = this.options.duration + 'ms ' + this.options.timing;\n\t\t}\n\t}, {\n\t\tkey: 'disable',\n\t\tvalue: function disable() {\n\t\t\tthis.slider.container.style.transition = 'none';\n\t\t}\n\t}, {\n\t\tkey: 'apply',\n\t\tvalue: function apply() {\n\t\t\tvar _this = this;\n\n\t\t\tvar maxOffset = void 0;\n\t\t\tif (this.options.effect === 'translate') {\n\t\t\t\tvar slide = this.slider.slides.filter(function (slide) {\n\t\t\t\t\treturn slide.dataset.sliderIndex == _this.slider.state.next;\n\t\t\t\t})[0];\n\t\t\t\tvar slideOffset = new __WEBPACK_IMPORTED_MODULE_0__utils_coordinate__[\"a\" /* default */](slide.offsetLeft, slide.offsetTop);\n\t\t\t\tif (this.options.centerMode) {\n\t\t\t\t\tmaxOffset = new __WEBPACK_IMPORTED_MODULE_0__utils_coordinate__[\"a\" /* default */](Math.round(Object(__WEBPACK_IMPORTED_MODULE_1__utils_css__[\"e\" /* width */])(this.slider.container)), Math.round(Object(__WEBPACK_IMPORTED_MODULE_1__utils_css__[\"b\" /* height */])(this.slider.container)));\n\t\t\t\t} else {\n\t\t\t\t\tmaxOffset = new __WEBPACK_IMPORTED_MODULE_0__utils_coordinate__[\"a\" /* default */](Math.round(Object(__WEBPACK_IMPORTED_MODULE_1__utils_css__[\"e\" /* width */])(this.slider.container) - Object(__WEBPACK_IMPORTED_MODULE_1__utils_css__[\"e\" /* width */])(this.slider.wrapper)), Math.round(Object(__WEBPACK_IMPORTED_MODULE_1__utils_css__[\"b\" /* height */])(this.slider.container) - Object(__WEBPACK_IMPORTED_MODULE_1__utils_css__[\"b\" /* height */])(this.slider.wrapper)));\n\t\t\t\t}\n\t\t\t\tvar nextOffset = new __WEBPACK_IMPORTED_MODULE_0__utils_coordinate__[\"a\" /* default */](Math.min(Math.max(slideOffset.x * -1, maxOffset.x * -1), 0), Math.min(Math.max(slideOffset.y * -1, maxOffset.y * -1), 0));\n\t\t\t\tif (this.options.loop) {\n\t\t\t\t\tif (!this.options.vertical && Math.abs(this._position.x) > maxOffset.x) {\n\t\t\t\t\t\tnextOffset.x = 0;\n\t\t\t\t\t\tthis.slider.state.next = 0;\n\t\t\t\t\t} else if (this.options.vertical && Math.abs(this._position.y) > maxOffset.y) {\n\t\t\t\t\t\tnextOffset.y = 0;\n\t\t\t\t\t\tthis.slider.state.next = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tthis._position.x = nextOffset.x;\n\t\t\t\tthis._position.y = nextOffset.y;\n\t\t\t\tif (this.options.centerMode) {\n\t\t\t\t\tthis._position.x = this._position.x + this.slider.wrapperWidth / 2 - Object(__WEBPACK_IMPORTED_MODULE_1__utils_css__[\"e\" /* width */])(slide) / 2;\n\t\t\t\t}\n\n\t\t\t\tif (this.slider.direction === 'rtl') {\n\t\t\t\t\tthis._position.x = -this._position.x;\n\t\t\t\t\tthis._position.y = -this._position.y;\n\t\t\t\t}\n\t\t\t\tthis.slider.container.style.transform = 'translate3d(' + this._position.x + 'px, ' + this._position.y + 'px, 0)';\n\n\t\t\t\t/**\n     * update the index with the nextIndex only if\n     * the offset of the nextIndex is in the range of the maxOffset\n     */\n\t\t\t\tif (slideOffset.x > maxOffset.x) {\n\t\t\t\t\tthis.slider.transitioner.end();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'onTransitionEnd',\n\t\tvalue: function onTransitionEnd(e) {\n\t\t\tif (this.options.effect === 'translate') {\n\n\t\t\t\tif (this.transitioner.isAnimating() && e.target == this.slider.container) {\n\t\t\t\t\tif (this.options.infinite) {\n\t\t\t\t\t\tthis.slider._infinite.onTransitionEnd(e);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tthis.transitioner.end();\n\t\t\t}\n\t\t}\n\t}]);\n\n\treturn Translate;\n}();\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (Translate);\n\n/***/ }),\n/* 22 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\nvar defaultOptions = {\n  initialSlide: 0,\n  slidesToScroll: 1,\n  slidesToShow: 1,\n\n  navigation: true,\n  navigationKeys: true,\n  navigationSwipe: true,\n\n  pagination: true,\n\n  loop: false,\n  infinite: false,\n\n  effect: 'translate',\n  duration: 300,\n  timing: 'ease',\n\n  autoplay: false,\n  autoplaySpeed: 3000,\n  pauseOnHover: true,\n  breakpoints: [{\n    changePoint: 480,\n    slidesToShow: 1,\n    slidesToScroll: 1\n  }, {\n    changePoint: 640,\n    slidesToShow: 2,\n    slidesToScroll: 2\n  }, {\n    changePoint: 768,\n    slidesToShow: 3,\n    slidesToScroll: 3\n  }],\n\n  onReady: null,\n  icons: {\n    'previous': '<svg viewBox=\"0 0 50 80\" xml:space=\"preserve\">\\n      <polyline fill=\"currentColor\" stroke-width=\".5em\" stroke-linecap=\"round\" stroke-linejoin=\"round\" points=\"45.63,75.8 0.375,38.087 45.63,0.375 \"/>\\n    </svg>',\n    'next': '<svg viewBox=\"0 0 50 80\" xml:space=\"preserve\">\\n      <polyline fill=\"currentColor\" stroke-width=\".5em\" stroke-linecap=\"round\" stroke-linejoin=\"round\" points=\"0.375,0.375 45.63,38.087 0.375,75.8 \"/>\\n    </svg>'\n  }\n};\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (defaultOptions);\n\n/***/ }),\n/* 23 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony default export */ __webpack_exports__[\"a\"] = (function (id) {\n  return \"<div id=\\\"\" + id + \"\\\" class=\\\"slider\\\" tabindex=\\\"0\\\">\\n    <div class=\\\"slider-container\\\"></div>\\n  </div>\";\n});\n\n/***/ }),\n/* 24 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n/* harmony default export */ __webpack_exports__[\"a\"] = (function () {\n  return \"<div class=\\\"slider-item\\\"></div>\";\n});\n\n/***/ })\n/******/ ])[\"default\"];\n});"
  },
  {
    "path": "static/js/bulma-slider.js",
    "content": "(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"bulmaSlider\"] = factory();\n\telse\n\t\troot[\"bulmaSlider\"] = factory();\n})(typeof self !== 'undefined' ? self : this, function() {\nreturn /******/ (function(modules) { // webpackBootstrap\n/******/ \t// The module cache\n/******/ \tvar installedModules = {};\n/******/\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(installedModules[moduleId]) {\n/******/ \t\t\treturn installedModules[moduleId].exports;\n/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = installedModules[moduleId] = {\n/******/ \t\t\ti: moduleId,\n/******/ \t\t\tl: false,\n/******/ \t\t\texports: {}\n/******/ \t\t};\n/******/\n/******/ \t\t// Execute the module function\n/******/ \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n/******/\n/******/ \t\t// Flag the module as loaded\n/******/ \t\tmodule.l = true;\n/******/\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/\n/******/\n/******/ \t// expose the modules object (__webpack_modules__)\n/******/ \t__webpack_require__.m = modules;\n/******/\n/******/ \t// expose the module cache\n/******/ \t__webpack_require__.c = installedModules;\n/******/\n/******/ \t// define getter function for harmony exports\n/******/ \t__webpack_require__.d = function(exports, name, getter) {\n/******/ \t\tif(!__webpack_require__.o(exports, name)) {\n/******/ \t\t\tObject.defineProperty(exports, name, {\n/******/ \t\t\t\tconfigurable: false,\n/******/ \t\t\t\tenumerable: true,\n/******/ \t\t\t\tget: getter\n/******/ \t\t\t});\n/******/ \t\t}\n/******/ \t};\n/******/\n/******/ \t// getDefaultExport function for compatibility with non-harmony modules\n/******/ \t__webpack_require__.n = function(module) {\n/******/ \t\tvar getter = module && module.__esModule ?\n/******/ \t\t\tfunction getDefault() { return module['default']; } :\n/******/ \t\t\tfunction getModuleExports() { return module; };\n/******/ \t\t__webpack_require__.d(getter, 'a', getter);\n/******/ \t\treturn getter;\n/******/ \t};\n/******/\n/******/ \t// Object.prototype.hasOwnProperty.call\n/******/ \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n/******/\n/******/ \t// __webpack_public_path__\n/******/ \t__webpack_require__.p = \"\";\n/******/\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(__webpack_require__.s = 0);\n/******/ })\n/************************************************************************/\n/******/ ([\n/* 0 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\nObject.defineProperty(__webpack_exports__, \"__esModule\", { value: true });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isString\", function() { return isString; });\n/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__events__ = __webpack_require__(1);\nvar _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };\n\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; };\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return call && (typeof call === \"object\" || typeof call === \"function\") ? call : self; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function, not \" + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }\n\n\n\nvar isString = function isString(unknown) {\n  return typeof unknown === 'string' || !!unknown && (typeof unknown === 'undefined' ? 'undefined' : _typeof(unknown)) === 'object' && Object.prototype.toString.call(unknown) === '[object String]';\n};\n\nvar bulmaSlider = function (_EventEmitter) {\n  _inherits(bulmaSlider, _EventEmitter);\n\n  function bulmaSlider(selector) {\n    var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n    _classCallCheck(this, bulmaSlider);\n\n    var _this = _possibleConstructorReturn(this, (bulmaSlider.__proto__ || Object.getPrototypeOf(bulmaSlider)).call(this));\n\n    _this.element = typeof selector === 'string' ? document.querySelector(selector) : selector;\n    // An invalid selector or non-DOM node has been provided.\n    if (!_this.element) {\n      throw new Error('An invalid selector or non-DOM node has been provided.');\n    }\n\n    _this._clickEvents = ['click'];\n    /// Set default options and merge with instance defined\n    _this.options = _extends({}, options);\n\n    _this.onSliderInput = _this.onSliderInput.bind(_this);\n\n    _this.init();\n    return _this;\n  }\n\n  /**\n   * Initiate all DOM element containing selector\n   * @method\n   * @return {Array} Array of all slider instances\n   */\n\n\n  _createClass(bulmaSlider, [{\n    key: 'init',\n\n\n    /**\n     * Initiate plugin\n     * @method init\n     * @return {void}\n     */\n    value: function init() {\n      this._id = 'bulmaSlider' + new Date().getTime() + Math.floor(Math.random() * Math.floor(9999));\n      this.output = this._findOutputForSlider();\n\n      this._bindEvents();\n\n      if (this.output) {\n        if (this.element.classList.contains('has-output-tooltip')) {\n          // Get new output position\n          var newPosition = this._getSliderOutputPosition();\n\n          // Set output position\n          this.output.style['left'] = newPosition.position;\n        }\n      }\n\n      this.emit('bulmaslider:ready', this.element.value);\n    }\n  }, {\n    key: '_findOutputForSlider',\n    value: function _findOutputForSlider() {\n      var _this2 = this;\n\n      var result = null;\n      var outputs = document.getElementsByTagName('output') || [];\n\n      Array.from(outputs).forEach(function (output) {\n        if (output.htmlFor == _this2.element.getAttribute('id')) {\n          result = output;\n          return true;\n        }\n      });\n      return result;\n    }\n  }, {\n    key: '_getSliderOutputPosition',\n    value: function _getSliderOutputPosition() {\n      // Update output position\n      var newPlace, minValue;\n\n      var style = window.getComputedStyle(this.element, null);\n      // Measure width of range input\n      var sliderWidth = parseInt(style.getPropertyValue('width'), 10);\n\n      // Figure out placement percentage between left and right of input\n      if (!this.element.getAttribute('min')) {\n        minValue = 0;\n      } else {\n        minValue = this.element.getAttribute('min');\n      }\n      var newPoint = (this.element.value - minValue) / (this.element.getAttribute('max') - minValue);\n\n      // Prevent bubble from going beyond left or right (unsupported browsers)\n      if (newPoint < 0) {\n        newPlace = 0;\n      } else if (newPoint > 1) {\n        newPlace = sliderWidth;\n      } else {\n        newPlace = sliderWidth * newPoint;\n      }\n\n      return {\n        'position': newPlace + 'px'\n      };\n    }\n\n    /**\n     * Bind all events\n     * @method _bindEvents\n     * @return {void}\n     */\n\n  }, {\n    key: '_bindEvents',\n    value: function _bindEvents() {\n      if (this.output) {\n        // Add event listener to update output when slider value change\n        this.element.addEventListener('input', this.onSliderInput, false);\n      }\n    }\n  }, {\n    key: 'onSliderInput',\n    value: function onSliderInput(e) {\n      e.preventDefault();\n\n      if (this.element.classList.contains('has-output-tooltip')) {\n        // Get new output position\n        var newPosition = this._getSliderOutputPosition();\n\n        // Set output position\n        this.output.style['left'] = newPosition.position;\n      }\n\n      // Check for prefix and postfix\n      var prefix = this.output.hasAttribute('data-prefix') ? this.output.getAttribute('data-prefix') : '';\n      var postfix = this.output.hasAttribute('data-postfix') ? this.output.getAttribute('data-postfix') : '';\n\n      // Update output with slider value\n      this.output.value = prefix + this.element.value + postfix;\n\n      this.emit('bulmaslider:ready', this.element.value);\n    }\n  }], [{\n    key: 'attach',\n    value: function attach() {\n      var _this3 = this;\n\n      var selector = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'input[type=\"range\"].slider';\n      var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n      var instances = new Array();\n\n      var elements = isString(selector) ? document.querySelectorAll(selector) : Array.isArray(selector) ? selector : [selector];\n      elements.forEach(function (element) {\n        if (typeof element[_this3.constructor.name] === 'undefined') {\n          var instance = new bulmaSlider(element, options);\n          element[_this3.constructor.name] = instance;\n          instances.push(instance);\n        } else {\n          instances.push(element[_this3.constructor.name]);\n        }\n      });\n\n      return instances;\n    }\n  }]);\n\n  return bulmaSlider;\n}(__WEBPACK_IMPORTED_MODULE_0__events__[\"a\" /* default */]);\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (bulmaSlider);\n\n/***/ }),\n/* 1 */\n/***/ (function(module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\nvar _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nvar EventEmitter = function () {\n  function EventEmitter() {\n    var listeners = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];\n\n    _classCallCheck(this, EventEmitter);\n\n    this._listeners = new Map(listeners);\n    this._middlewares = new Map();\n  }\n\n  _createClass(EventEmitter, [{\n    key: \"listenerCount\",\n    value: function listenerCount(eventName) {\n      if (!this._listeners.has(eventName)) {\n        return 0;\n      }\n\n      var eventListeners = this._listeners.get(eventName);\n      return eventListeners.length;\n    }\n  }, {\n    key: \"removeListeners\",\n    value: function removeListeners() {\n      var _this = this;\n\n      var eventName = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n      var middleware = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n      if (eventName !== null) {\n        if (Array.isArray(eventName)) {\n          name.forEach(function (e) {\n            return _this.removeListeners(e, middleware);\n          });\n        } else {\n          this._listeners.delete(eventName);\n\n          if (middleware) {\n            this.removeMiddleware(eventName);\n          }\n        }\n      } else {\n        this._listeners = new Map();\n      }\n    }\n  }, {\n    key: \"middleware\",\n    value: function middleware(eventName, fn) {\n      var _this2 = this;\n\n      if (Array.isArray(eventName)) {\n        name.forEach(function (e) {\n          return _this2.middleware(e, fn);\n        });\n      } else {\n        if (!Array.isArray(this._middlewares.get(eventName))) {\n          this._middlewares.set(eventName, []);\n        }\n\n        this._middlewares.get(eventName).push(fn);\n      }\n    }\n  }, {\n    key: \"removeMiddleware\",\n    value: function removeMiddleware() {\n      var _this3 = this;\n\n      var eventName = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n\n      if (eventName !== null) {\n        if (Array.isArray(eventName)) {\n          name.forEach(function (e) {\n            return _this3.removeMiddleware(e);\n          });\n        } else {\n          this._middlewares.delete(eventName);\n        }\n      } else {\n        this._middlewares = new Map();\n      }\n    }\n  }, {\n    key: \"on\",\n    value: function on(name, callback) {\n      var _this4 = this;\n\n      var once = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n      if (Array.isArray(name)) {\n        name.forEach(function (e) {\n          return _this4.on(e, callback);\n        });\n      } else {\n        name = name.toString();\n        var split = name.split(/,|, | /);\n\n        if (split.length > 1) {\n          split.forEach(function (e) {\n            return _this4.on(e, callback);\n          });\n        } else {\n          if (!Array.isArray(this._listeners.get(name))) {\n            this._listeners.set(name, []);\n          }\n\n          this._listeners.get(name).push({ once: once, callback: callback });\n        }\n      }\n    }\n  }, {\n    key: \"once\",\n    value: function once(name, callback) {\n      this.on(name, callback, true);\n    }\n  }, {\n    key: \"emit\",\n    value: function emit(name, data) {\n      var _this5 = this;\n\n      var silent = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n      name = name.toString();\n      var listeners = this._listeners.get(name);\n      var middlewares = null;\n      var doneCount = 0;\n      var execute = silent;\n\n      if (Array.isArray(listeners)) {\n        listeners.forEach(function (listener, index) {\n          // Start Middleware checks unless we're doing a silent emit\n          if (!silent) {\n            middlewares = _this5._middlewares.get(name);\n            // Check and execute Middleware\n            if (Array.isArray(middlewares)) {\n              middlewares.forEach(function (middleware) {\n                middleware(data, function () {\n                  var newData = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n\n                  if (newData !== null) {\n                    data = newData;\n                  }\n                  doneCount++;\n                }, name);\n              });\n\n              if (doneCount >= middlewares.length) {\n                execute = true;\n              }\n            } else {\n              execute = true;\n            }\n          }\n\n          // If Middleware checks have been passed, execute\n          if (execute) {\n            if (listener.once) {\n              listeners[index] = null;\n            }\n            listener.callback(data);\n          }\n        });\n\n        // Dirty way of removing used Events\n        while (listeners.indexOf(null) !== -1) {\n          listeners.splice(listeners.indexOf(null), 1);\n        }\n      }\n    }\n  }]);\n\n  return EventEmitter;\n}();\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (EventEmitter);\n\n/***/ })\n/******/ ])[\"default\"];\n});"
  },
  {
    "path": "static/js/index.js",
    "content": "$(document).ready(function() {\n    // Check for click events on the navbar burger icon\n    $(\".navbar-burger\").click(function() {\n      // Toggle the \"is-active\" class on both the \"navbar-burger\" and the \"navbar-menu\"\n      $(\".navbar-burger\").toggleClass(\"is-active\");\n      $(\".navbar-menu\").toggleClass(\"is-active\");\n\n    });\n\n    var options = {\n\t\t\tslidesToScroll: 1,\n\t\t\tslidesToShow: 2,\n\t\t\tloop: true,\n\t\t\tinfinite: true,\n\t\t\tautoplay: false,\n\t\t\tautoplaySpeed: 3000,\n    }\n\n\t\t// Initialize all div with carousel class\n    var carousels = bulmaCarousel.attach('.carousel', options);\n\n    // Loop on each carousel initialized\n    for(var i = 0; i < carousels.length; i++) {\n    \t// Add listener to  event\n    \tcarousels[i].on('before:show', state => {\n    \t\tconsole.log(state);\n    \t});\n    }\n\n    // Access to bulmaCarousel instance of an element\n    var element = document.querySelector('#my-element');\n    if (element && element.bulmaCarousel) {\n    \t// bulmaCarousel instance is available as element.bulmaCarousel\n    \telement.bulmaCarousel.on('before-show', function(state) {\n    \t\tconsole.log(state);\n    \t});\n    }\n\n    /*var player = document.getElementById('interpolation-video');\n    player.addEventListener('loadedmetadata', function() {\n      $('#interpolation-slider').on('input', function(event) {\n        console.log(this.value, player.duration);\n        player.currentTime = player.duration / 100 * this.value;\n      })\n    }, false);*/\n\n    bulmaSlider.attach();\n\n})\n"
  },
  {
    "path": "train_vqvae.py",
    "content": "# This code is based on https://github.com/Mael-zys/T2M-GPT.git\nimport os\nimport json\n\nimport torch\nimport torch.optim as optim\nfrom torch.utils.tensorboard import SummaryWriter\n\nimport models.vqvae as vqvae\nimport utils.losses as losses \nimport options.option_vqvae as option_vq\nimport utils.utils_model as utils_model\nfrom dataloader import vqvae_loader, eval_loader\nfrom utils.evaluate import vqvae_evaluation\nfrom options.get_eval_option import get_opt\nfrom models.evaluator_wrapper import EvaluatorModelWrapper\nimport warnings\nwarnings.filterwarnings('ignore')\nfrom utils.word_vectorizer import WordVectorizer\n\ndef update_lr_warm_up(optimizer, nb_iter, warmup_step, lr):\n\n    current_lr = lr * (nb_iter + 1) / (warmup_step + 1)\n    for param_group in optimizer.param_groups:\n        param_group[\"lr\"] = current_lr\n\n    return optimizer, current_lr\n\nargs = option_vq.get_args_parser()\ntorch.manual_seed(args.seed)\nos.makedirs(args.out_dir, exist_ok = True)\n\ndef main():\n    logger = utils_model.get_logger(args.out_dir)\n    writer = SummaryWriter(args.out_dir)\n    logger.info(json.dumps(vars(args), indent=4, sort_keys=True))\n\n    w_vectorizer = WordVectorizer('./glove', 'our_vab')\n\n    if args.dataname == 'kit' : \n        dataset_opt_path = './checkpoints/kit/Comp_v6_KLD005/opt.txt'  \n        args.nb_joints = 21\n    else :\n        dataset_opt_path = './checkpoints/t2m/Comp_v6_KLD005/opt.txt'\n        args.nb_joints = 22\n\n    logger.info(f'Training on {args.dataname}, motions are with {args.nb_joints} joints')\n\n    wrapper_opt = get_opt(dataset_opt_path, torch.device('cuda'))\n    eval_wrapper = EvaluatorModelWrapper(wrapper_opt)\n\n    train_loader = vqvae_loader.DATALoader(args.dataname,\n                                            args.batch_size,\n                                            window_size=args.window_size,\n                                            unit_length=2**args.down_t)\n\n    train_loader_iter = vqvae_loader.cycle(train_loader)\n\n    val_loader = eval_loader.DATALoader(args.dataname, 'val', 32, w_vectorizer, unit_length=2**args.down_t)\n\n    net = vqvae.HumanVQVAE(args, ## use args to define different parameters in different quantizers\n                           args.nb_code,\n                           args.code_dim,\n                           args.output_emb_width,\n                           args.down_t,\n                           args.stride_t,\n                           args.width,\n                           args.depth,\n                           args.dilation_growth_rate,\n                           args.vq_act,\n                           args.vq_norm)\n\n    if args.resume_pth:\n        logger.info('loading checkpoint from {}'.format(args.resume_pth))\n        ckpt = torch.load(args.resume_pth, map_location='cpu')\n        net.load_state_dict(ckpt['net'], strict=True)\n    net.train()\n    net.cuda()\n\n    optimizer = optim.AdamW(net.parameters(), lr=args.learning_rate, betas=(0.9, 0.99), weight_decay=args.weight_decay)\n    scheduler = torch.optim.lr_scheduler.MultiStepLR(optimizer, milestones=args.lr_scheduler, gamma=args.gamma)\n\n    Loss = losses.ReConsLoss(args.recons_loss, args.nb_joints)\n\n    avg_recons, avg_perplexity, avg_commit = 0., 0., 0.\n\n    for nb_iter in range(1, args.warmup_steps):\n        optimizer, current_lr = update_lr_warm_up(optimizer, nb_iter, args.warmup_steps, args.learning_rate)\n\n        gt_motion = next(train_loader_iter)\n        gt_motion = gt_motion.cuda().float() # (bs, 64, dim)\n\n        pred_motion, loss_commit, perplexity = net(gt_motion)\n        loss_motion = Loss(pred_motion, gt_motion)\n        loss_vel = Loss.forward_vel(pred_motion, gt_motion)\n\n        loss = loss_motion + args.commit * loss_commit + args.loss_vel * loss_vel\n\n        optimizer.zero_grad()\n        loss.backward()\n        optimizer.step()\n\n        avg_recons += loss_motion.item()\n        avg_perplexity += perplexity.item()\n        avg_commit += loss_commit.item()\n\n        if nb_iter % args.print_iter ==  0 :\n            avg_recons /= args.print_iter\n            avg_perplexity /= args.print_iter\n            avg_commit /= args.print_iter\n\n            logger.info(f\"Warmup. Iter {nb_iter} :  lr {current_lr:.5f} \\t Commit. {avg_commit:.5f} \\t PPL. {avg_perplexity:.2f} \\t Recons.  {avg_recons:.5f}\")\n\n            avg_recons, avg_perplexity, avg_commit = 0., 0., 0.\n\n    avg_recons, avg_perplexity, avg_commit = 0., 0., 0.\n    best_fid, best_div, best_top1, best_top2, best_top3, best_matching, writer, logger = vqvae_evaluation(args.out_dir, val_loader, net, logger, writer, 0, best_fid=1000, best_div=100, best_top1=0, best_top2=0, best_top3=0, best_matching=100, eval_wrapper=eval_wrapper)\n\n    for nb_iter in range(1, args.total_iter + 1):\n        gt_motion = next(train_loader_iter)\n        gt_motion = gt_motion.cuda().float() # bs, nb_joints, joints_dim, seq_len\n\n        pred_motion, loss_commit, perplexity = net(gt_motion)\n        loss_motion = Loss(pred_motion, gt_motion)\n        loss_vel = Loss.forward_vel(pred_motion, gt_motion)\n\n        loss = loss_motion + args.commit * loss_commit + args.loss_vel * loss_vel\n\n        optimizer.zero_grad()\n        loss.backward()\n        optimizer.step()\n        scheduler.step()\n\n        avg_recons += loss_motion.item()\n        avg_perplexity += perplexity.item()\n        avg_commit += loss_commit.item()\n\n        if nb_iter % args.print_iter ==  0 :\n            avg_recons /= args.print_iter\n            avg_perplexity /= args.print_iter\n            avg_commit /= args.print_iter\n\n            writer.add_scalar('./Train/L1', avg_recons, nb_iter)\n            writer.add_scalar('./Train/PPL', avg_perplexity, nb_iter)\n            writer.add_scalar('./Train/Commit', avg_commit, nb_iter)\n\n            logger.info(f\"Train. Iter {nb_iter} : \\t Commit. {avg_commit:.5f} \\t PPL. {avg_perplexity:.2f} \\t Recons.  {avg_recons:.5f}\")\n\n            avg_recons, avg_perplexity, avg_commit = 0., 0., 0.,\n\n        if nb_iter % args.eval_iter==0 :\n            best_fid, best_div, best_top1, best_top2, best_top3, best_matching, writer, logger = vqvae_evaluation(args.out_dir, val_loader, net, logger, writer, nb_iter, best_fid, best_div, best_top1, best_top2, best_top3, best_matching, eval_wrapper=eval_wrapper)\n\n\nif __name__ == '__main__':\n    main()\n"
  },
  {
    "path": "utils/config.py",
    "content": "import os\n\nSMPL_DATA_PATH = \"./body_models/smpl\"\n\nSMPL_KINTREE_PATH = os.path.join(SMPL_DATA_PATH, \"kintree_table.pkl\")\nSMPL_MODEL_PATH = os.path.join(SMPL_DATA_PATH, \"SMPL_NEUTRAL.pkl\")\nJOINT_REGRESSOR_TRAIN_EXTRA = os.path.join(SMPL_DATA_PATH, 'J_regressor_extra.npy')\n\nROT_CONVENTION_TO_ROT_NUMBER = {\n    'legacy': 23,\n    'no_hands': 21,\n    'full_hands': 51,\n    'mitten_hands': 33,\n}\n\nGENDERS = ['neutral', 'male', 'female']\nNUM_BETAS = 10"
  },
  {
    "path": "utils/evaluate.py",
    "content": "import os\nimport re\nimport numpy as np\nimport torch\nfrom scipy import linalg\nfrom tqdm import tqdm\n\nfrom generate_batch import generate\nfrom scripts.prepare_motion import generate_prompt\nfrom lit_llama.lora import lora_state_dict\nfrom utils.losses import ReConsLoss\nfrom utils.motion_process import recover_from_ric\nfrom visualization.plot_3d_global import plot_3d_motion\n\ndef truncate_output_to_eos(output, eos_id):\n    try:\n        eos_pos = output.tolist().index(eos_id)\n        output = output[:eos_pos+1]\n    except ValueError:\n        pass\n    return output\n\n\ndef pad_left(x, max_len, pad_id):\n    # pad right based on the longest sequence\n    n = max_len - len(x)\n    return torch.cat((torch.full((n,), pad_id, dtype=x.dtype).to(x.device), x))\n\n\n@torch.no_grad()\ndef plot(tokens, net, dataname):\n    meta_dir = \"./checkpoints/t2m/VQVAEV3_CB1024_CMT_H1024_NRES3/meta\" if dataname == 't2m' else \"./checkpoints/kit/VQVAEV3_CB1024_CMT_H1024_NRES3/meta\"\n    mean = torch.FloatTensor(np.load(os.path.join(meta_dir, 'mean.npy'))).cuda()\n    std = torch.FloatTensor(np.load(os.path.join(meta_dir, 'std.npy'))).cuda()\n\n    pred_pose = net.forward_decoder(tokens)\n    pred_pose_denorm = pred_pose * std + mean\n    pred_xyz = recover_from_ric(pred_pose_denorm, joints_num=22 if dataname == 't2m' else 21).detach().cpu().numpy()[0]\n    img = plot_3d_motion([pred_xyz, None, None])\n    return pred_xyz, img\n\n\n@torch.no_grad()        \ndef vqvae_evaluation(out_dir, val_loader, net, logger, writer, eval_wrapper, nb_iter, best_fid=1000, best_div=100, best_top1=0, best_top2=0, best_top3=0, best_matching=100, is_train=False): \n    net.eval()\n    nb_sample = 0\n\n    motion_annotation_list = []\n    motion_pred_list = []\n\n    R_precision_real = 0\n    R_precision = 0\n\n    nb_sample = 0\n    matching_score_real = 0\n    matching_score_pred = 0\n    for batch in val_loader:\n        word_embeddings, pos_one_hots, caption, sent_len, motion, m_length, token, name = batch\n\n        motion = motion.cuda()\n        et, em = eval_wrapper.get_co_embeddings(word_embeddings, pos_one_hots, sent_len, motion, m_length)\n        bs, seq = motion.shape[0], motion.shape[1]\n\n        num_joints = 21 if motion.shape[-1] == 251 else 22\n        \n        pred_pose_eval = torch.zeros((bs, seq, motion.shape[-1])).cuda()\n\n        for i in range(bs):\n            pose = val_loader.dataset.inv_transform(motion[i:i+1, :m_length[i], :].detach().cpu().numpy())\n\n\n            pred_pose, loss_commit, perplexity = net(motion[i:i+1, :m_length[i]])\n            pred_denorm = val_loader.dataset.inv_transform(pred_pose.detach().cpu().numpy())\n\n            pred_pose_eval[i:i+1,:m_length[i],:] = pred_pose\n\n        et_pred, em_pred = eval_wrapper.get_co_embeddings(word_embeddings, pos_one_hots, sent_len, pred_pose_eval, m_length)\n\n        motion_pred_list.append(em_pred)\n        motion_annotation_list.append(em)\n            \n        temp_R, temp_match = calculate_R_precision(et.cpu().numpy(), em.cpu().numpy(), top_k=3, sum_all=True)\n        R_precision_real += temp_R\n        matching_score_real += temp_match\n        temp_R, temp_match = calculate_R_precision(et_pred.cpu().numpy(), em_pred.cpu().numpy(), top_k=3, sum_all=True)\n        R_precision += temp_R\n        matching_score_pred += temp_match\n\n        nb_sample += bs\n\n    motion_annotation_np = torch.cat(motion_annotation_list, dim=0).cpu().numpy()\n    motion_pred_np = torch.cat(motion_pred_list, dim=0).cpu().numpy()\n    gt_mu, gt_cov  = calculate_activation_statistics(motion_annotation_np)\n    mu, cov= calculate_activation_statistics(motion_pred_np)\n\n    diversity_real = calculate_diversity(motion_annotation_np, 300 if nb_sample > 300 else 100)\n    diversity = calculate_diversity(motion_pred_np, 300 if nb_sample > 300 else 100)\n\n    R_precision_real = R_precision_real / nb_sample\n    R_precision = R_precision / nb_sample\n\n    matching_score_real = matching_score_real / nb_sample\n    matching_score_pred = matching_score_pred / nb_sample\n\n    fid = calculate_frechet_distance(gt_mu, gt_cov, mu, cov)\n\n    msg = f\"--> \\t Eva. Iter {nb_iter} :, FID. {fid:.4f}, Diversity Real. {diversity_real:.4f}, Diversity. {diversity:.4f}, R_precision_real. {R_precision_real}, R_precision. {R_precision}, matching_score_real. {matching_score_real}, matching_score_pred. {matching_score_pred}\"\n    logger.info(msg)\n    \n    writer.add_scalar('./Test/FID', fid, nb_iter)\n    writer.add_scalar('./Test/Diversity', diversity, nb_iter)\n    writer.add_scalar('./Test/top1', R_precision[0], nb_iter)\n    writer.add_scalar('./Test/top2', R_precision[1], nb_iter)\n    writer.add_scalar('./Test/top3', R_precision[2], nb_iter)\n    writer.add_scalar('./Test/matching_score', matching_score_pred, nb_iter)\n    \n    if is_train:\n        if fid < best_fid : \n            msg = f\"--> --> \\t FID Improved from {best_fid:.5f} to {fid:.5f} !!!\"\n            logger.info(msg)\n            best_fid = fid\n            torch.save({'net' : net.state_dict()}, os.path.join(out_dir, 'net_best_fid.pth'))\n\n        if abs(diversity_real - diversity) < abs(diversity_real - best_div) : \n            msg = f\"--> --> \\t Diversity Improved from {best_div:.5f} to {diversity:.5f} !!!\"\n            logger.info(msg)\n            best_div = diversity\n            torch.save({'net' : net.state_dict()}, os.path.join(out_dir, 'net_best_div.pth'))\n\n        if R_precision[0] > best_top1 : \n            msg = f\"--> --> \\t Top1 Improved from {best_top1:.4f} to {R_precision[0]:.4f} !!!\"\n            logger.info(msg)\n            best_top1 = R_precision[0]\n            torch.save({'net' : net.state_dict()}, os.path.join(out_dir, 'net_best_top1.pth'))\n\n        if R_precision[1] > best_top2 : \n            msg = f\"--> --> \\t Top2 Improved from {best_top2:.4f} to {R_precision[1]:.4f} !!!\"\n            logger.info(msg)\n            best_top2 = R_precision[1]\n        \n        if R_precision[2] > best_top3 : \n            msg = f\"--> --> \\t Top3 Improved from {best_top3:.4f} to {R_precision[2]:.4f} !!!\"\n            logger.info(msg)\n            best_top3 = R_precision[2]\n        \n        if matching_score_pred < best_matching : \n            msg = f\"--> --> \\t matching_score Improved from {best_matching:.5f} to {matching_score_pred:.5f} !!!\"\n            logger.info(msg)\n            best_matching = matching_score_pred\n            torch.save({'net' : net.state_dict()}, os.path.join(out_dir, 'net_best_matching.pth'))\n\n        torch.save({'net' : net.state_dict()}, os.path.join(out_dir, 'net_last.pth'))\n\n    net.train()\n    return best_fid, best_div, best_top1, best_top2, best_top3, best_matching, writer, logger\n\n\n@torch.no_grad()        \ndef evaluation(val_loader, net, model, logger, tokenizer, eval_wrapper, instruction):\n    model.eval()\n\n    nb_sample = 0\n\n    motion_annotation_list = []\n    motion_pred_list = []\n    R_precision_real = 0\n    R_precision = 0\n    matching_score_real = 0\n    matching_score_pred = 0\n\n    nb_sample = 0\n    for batch in tqdm(val_loader):\n        word_embeddings, pos_one_hots, clip_text, sent_len, pose, m_length, token, name = batch\n\n        bs, seq = pose.shape[:2]\n        pred_pose_eval = torch.zeros((bs, seq, pose.shape[-1])).cuda()\n        pred_len = torch.ones(bs).long()\n\n        encoded = []\n        for k in range(bs):\n            sample = {\"instruction\": instruction, \"input\": clip_text[k]}\n            prompt = generate_prompt(sample)\n            encoded.append(tokenizer.encode(prompt, bos=True, eos=False, device=model.device).type(torch.int64))\n\n        max_len = max(len(s) for s in encoded)\n        encoded = torch.stack([pad_left(x, max_len, pad_id=0) for x in encoded])\n\n        outputs = generate(\n            model,\n            idx=encoded,\n            max_seq_length=seq,\n            max_new_tokens=seq,\n            temperature=0.8,\n            top_k=200,\n            eos_id=tokenizer.eos_id\n        )\n\n        for k in range(bs):\n            output = truncate_output_to_eos(outputs[k].cpu(), tokenizer.eos_id)\n            output = tokenizer.decode(output)\n            output = output.split(\"### Response:\")[1].strip()\n            try:\n                output = re.findall(r'\\d+', output)\n                for j, num in enumerate(output):\n                    if int(num) > 511:\n                        output = output[:j]\n                        break\n                if len(output) == 0:\n                    index_motion = torch.ones(1, seq).cuda().long()\n                else:\n                    index_motion = torch.tensor([[int(num) for num in output]]).cuda().long()\n            except:\n                index_motion = torch.ones(1, seq).cuda().long()\n\n            pred_pose = net.forward_decoder(index_motion)\n            cur_len = pred_pose.shape[1]\n\n            pred_len[k] = min(cur_len, seq)\n            pred_pose_eval[k:k+1, :cur_len] = pred_pose[:, :seq]\n\n        et_pred, em_pred = eval_wrapper.get_co_embeddings(word_embeddings, pos_one_hots, sent_len, pred_pose_eval, pred_len)\n\n        pose = pose.cuda().float()\n\n        et, em = eval_wrapper.get_co_embeddings(word_embeddings, pos_one_hots, sent_len, pose, m_length)\n        motion_annotation_list.append(em)\n        motion_pred_list.append(em_pred)\n\n        temp_R, temp_match = calculate_R_precision(et.cpu().numpy(), em.cpu().numpy(), top_k=3, sum_all=True)\n        R_precision_real += temp_R\n        matching_score_real += temp_match\n        temp_R, temp_match = calculate_R_precision(et_pred.cpu().numpy(), em_pred.cpu().numpy(), top_k=3, sum_all=True)\n        R_precision += temp_R\n        matching_score_pred += temp_match\n\n        nb_sample += bs\n\n    motion_annotation_np = torch.cat(motion_annotation_list, dim=0).cpu().numpy()\n    motion_pred_np = torch.cat(motion_pred_list, dim=0).cpu().numpy()\n    gt_mu, gt_cov  = calculate_activation_statistics(motion_annotation_np)\n    mu, cov= calculate_activation_statistics(motion_pred_np)\n\n    diversity_real = calculate_diversity(motion_annotation_np, 300 if nb_sample > 300 else 100)\n    diversity = calculate_diversity(motion_pred_np, 300 if nb_sample > 300 else 100)\n\n    R_precision_real = R_precision_real / nb_sample\n    R_precision = R_precision / nb_sample\n\n    matching_score_real = matching_score_real / nb_sample\n    matching_score_pred = matching_score_pred / nb_sample\n\n    fid = calculate_frechet_distance(gt_mu, gt_cov, mu, cov)\n\n    msg = f\"FID. {fid:.4f}, Diversity Real. {diversity_real:.4f}, Diversity. {diversity:.4f}, R_precision_real. {R_precision_real}, R_precision. {R_precision}, matching_score_real. {matching_score_real}, matching_score_pred. {matching_score_pred}\"\n    logger.info(msg)\n\n    model.train()\n    return fid, diversity, R_precision[0], R_precision[1], R_precision[2], matching_score_pred, logger\n\n\ndef euclidean_distance_matrix(matrix1, matrix2):\n    \"\"\"\n        Params:\n        -- matrix1: N1 x D\n        -- matrix2: N2 x D\n        Returns:\n        -- dist: N1 x N2\n        dist[i, j] == distance(matrix1[i], matrix2[j])\n    \"\"\"\n    assert matrix1.shape[1] == matrix2.shape[1]\n    d1 = -2 * np.dot(matrix1, matrix2.T)    # shape (num_test, num_train)\n    d2 = np.sum(np.square(matrix1), axis=1, keepdims=True)    # shape (num_test, 1)\n    d3 = np.sum(np.square(matrix2), axis=1)     # shape (num_train, )\n    dists = np.sqrt(d1 + d2 + d3)  # broadcasting\n    return dists\n\n\ndef calculate_top_k(mat, top_k):\n    size = mat.shape[0]\n    gt_mat = np.expand_dims(np.arange(size), 1).repeat(size, 1)\n    bool_mat = (mat == gt_mat)\n    correct_vec = False\n    top_k_list = []\n    for i in range(top_k):\n#         print(correct_vec, bool_mat[:, i])\n        correct_vec = (correct_vec | bool_mat[:, i])\n        # print(correct_vec)\n        top_k_list.append(correct_vec[:, None])\n    top_k_mat = np.concatenate(top_k_list, axis=1)\n    return top_k_mat\n\n\ndef calculate_R_precision(embedding1, embedding2, top_k, sum_all=False):\n    dist_mat = euclidean_distance_matrix(embedding1, embedding2)\n    matching_score = dist_mat.trace()\n    argmax = np.argsort(dist_mat, axis=1)\n    top_k_mat = calculate_top_k(argmax, top_k)\n    if sum_all:\n        return top_k_mat.sum(axis=0), matching_score\n    else:\n        return top_k_mat, matching_score\n\n\ndef calculate_diversity(activation, diversity_times):\n    assert len(activation.shape) == 2\n    assert activation.shape[0] > diversity_times\n    num_samples = activation.shape[0]\n\n    first_indices = np.random.choice(num_samples, diversity_times, replace=False)\n    second_indices = np.random.choice(num_samples, diversity_times, replace=False)\n    dist = linalg.norm(activation[first_indices] - activation[second_indices], axis=1)\n    return dist.mean()\n\n\ndef calculate_frechet_distance(mu1, sigma1, mu2, sigma2, eps=1e-6):\n\n    mu1 = np.atleast_1d(mu1)\n    mu2 = np.atleast_1d(mu2)\n\n    sigma1 = np.atleast_2d(sigma1)\n    sigma2 = np.atleast_2d(sigma2)\n\n    assert mu1.shape == mu2.shape, \\\n        'Training and test mean vectors have different lengths'\n    assert sigma1.shape == sigma2.shape, \\\n        'Training and test covariances have different dimensions'\n\n    diff = mu1 - mu2\n\n    # Product might be almost singular\n    covmean, _ = linalg.sqrtm(sigma1.dot(sigma2), disp=False)\n    if not np.isfinite(covmean).all():\n        msg = ('fid calculation produces singular product; '\n               'adding %s to diagonal of cov estimates') % eps\n        print(msg)\n        offset = np.eye(sigma1.shape[0]) * eps\n        covmean = linalg.sqrtm((sigma1 + offset).dot(sigma2 + offset))\n\n    # Numerical error might give slight imaginary component\n    if np.iscomplexobj(covmean):\n        if not np.allclose(np.diagonal(covmean).imag, 0, atol=1e-3):\n            m = np.max(np.abs(covmean.imag))\n            raise ValueError('Imaginary component {}'.format(m))\n        covmean = covmean.real\n\n    tr_covmean = np.trace(covmean)\n\n    return (diff.dot(diff) + np.trace(sigma1)\n            + np.trace(sigma2) - 2 * tr_covmean)\n\n\ndef calculate_activation_statistics(activations):\n    mu = np.mean(activations, axis=0)\n    cov = np.cov(activations, rowvar=False)\n    return mu, cov\n\n\ndef calculate_frechet_feature_distance(feature_list1, feature_list2):\n    feature_list1 = np.stack(feature_list1)\n    feature_list2 = np.stack(feature_list2)\n\n    # normalize the scale\n    mean = np.mean(feature_list1, axis=0)\n    std = np.std(feature_list1, axis=0) + 1e-10\n    feature_list1 = (feature_list1 - mean) / std\n    feature_list2 = (feature_list2 - mean) / std\n\n    dist = calculate_frechet_distance(\n        mu1=np.mean(feature_list1, axis=0), \n        sigma1=np.cov(feature_list1, rowvar=False),\n        mu2=np.mean(feature_list2, axis=0), \n        sigma2=np.cov(feature_list2, rowvar=False),\n    )\n    return dist\n"
  },
  {
    "path": "utils/losses.py",
    "content": "import torch\nimport torch.nn as nn\n\nclass ReConsLoss(nn.Module):\n    def __init__(self, recons_loss, nb_joints):\n        super(ReConsLoss, self).__init__()\n        \n        if recons_loss == 'l1': \n            self.Loss = torch.nn.L1Loss()\n        elif recons_loss == 'l2' : \n            self.Loss = torch.nn.MSELoss()\n        elif recons_loss == 'l1_smooth' : \n            self.Loss = torch.nn.SmoothL1Loss()\n        \n        # 4 global motion associated to root\n        # 12 local motion (3 local xyz, 3 vel xyz, 6 rot6d)\n        # 3 global vel xyz\n        # 4 foot contact\n        self.nb_joints = nb_joints\n        self.motion_dim = (nb_joints - 1) * 12 + 4 + 3 + 4\n\n    def forward(self, motion_pred, motion_gt) : \n        loss = self.Loss(motion_pred[..., : self.motion_dim], motion_gt[..., :self.motion_dim])\n        return loss\n    \n    def forward_vel(self, motion_pred, motion_gt) : \n        loss = self.Loss(motion_pred[..., 4 : (self.nb_joints - 1) * 3 + 4], motion_gt[..., 4 : (self.nb_joints - 1) * 3 + 4])\n        return loss\n    "
  },
  {
    "path": "utils/motion_process.py",
    "content": "import torch\nfrom utils.quaternion import quaternion_to_cont6d, qrot, qinv\n\ndef recover_root_rot_pos(data):\n    rot_vel = data[..., 0]\n    r_rot_ang = torch.zeros_like(rot_vel).to(data.device)\n    '''Get Y-axis rotation from rotation velocity'''\n    r_rot_ang[..., 1:] = rot_vel[..., :-1]\n    r_rot_ang = torch.cumsum(r_rot_ang, dim=-1)\n\n    r_rot_quat = torch.zeros(data.shape[:-1] + (4,)).to(data.device)\n    r_rot_quat[..., 0] = torch.cos(r_rot_ang)\n    r_rot_quat[..., 2] = torch.sin(r_rot_ang)\n\n    r_pos = torch.zeros(data.shape[:-1] + (3,)).to(data.device)\n    r_pos[..., 1:, [0, 2]] = data[..., :-1, 1:3]\n    '''Add Y-axis rotation to root position'''\n    r_pos = qrot(qinv(r_rot_quat), r_pos)\n\n    r_pos = torch.cumsum(r_pos, dim=-2)\n\n    r_pos[..., 1] = data[..., 3]\n    return r_rot_quat, r_pos\n\n\ndef recover_from_rot(data, joints_num, skeleton):\n    r_rot_quat, r_pos = recover_root_rot_pos(data)\n\n    r_rot_cont6d = quaternion_to_cont6d(r_rot_quat)\n\n    start_indx = 1 + 2 + 1 + (joints_num - 1) * 3\n    end_indx = start_indx + (joints_num - 1) * 6\n    cont6d_params = data[..., start_indx:end_indx]\n    #     print(r_rot_cont6d.shape, cont6d_params.shape, r_pos.shape)\n    cont6d_params = torch.cat([r_rot_cont6d, cont6d_params], dim=-1)\n    cont6d_params = cont6d_params.view(-1, joints_num, 6)\n\n    positions = skeleton.forward_kinematics_cont6d(cont6d_params, r_pos)\n\n    return positions\n\n\ndef recover_from_ric(data, joints_num):\n    r_rot_quat, r_pos = recover_root_rot_pos(data)\n    positions = data[..., 4:(joints_num - 1) * 3 + 4]\n    positions = positions.view(positions.shape[:-1] + (-1, 3))\n\n    '''Add Y-axis rotation to local joints'''\n    positions = qrot(qinv(r_rot_quat[..., None, :]).expand(positions.shape[:-1] + (4,)), positions)\n\n    '''Add root XZ to joints'''\n    positions[..., 0] += r_pos[..., 0:1]\n    positions[..., 2] += r_pos[..., 2:3]\n\n    '''Concate root and joints'''\n    positions = torch.cat([r_pos.unsqueeze(-2), positions], dim=-2)\n\n    return positions\n    "
  },
  {
    "path": "utils/paramUtil.py",
    "content": "import numpy as np\n\n# Define a kinematic tree for the skeletal struture\nkit_kinematic_chain = [[0, 11, 12, 13, 14, 15], [0, 16, 17, 18, 19, 20], [0, 1, 2, 3, 4], [3, 5, 6, 7], [3, 8, 9, 10]]\n\nkit_raw_offsets = np.array(\n    [\n        [0, 0, 0],\n        [0, 1, 0],\n        [0, 1, 0],\n        [0, 1, 0],\n        [0, 1, 0],\n        [1, 0, 0],\n        [0, -1, 0],\n        [0, -1, 0],\n        [-1, 0, 0],\n        [0, -1, 0],\n        [0, -1, 0],\n        [1, 0, 0],\n        [0, -1, 0],\n        [0, -1, 0],\n        [0, 0, 1],\n        [0, 0, 1],\n        [-1, 0, 0],\n        [0, -1, 0],\n        [0, -1, 0],\n        [0, 0, 1],\n        [0, 0, 1]\n    ]\n)\n\nt2m_raw_offsets = np.array([[0,0,0],\n                           [1,0,0],\n                           [-1,0,0],\n                           [0,1,0],\n                           [0,-1,0],\n                           [0,-1,0],\n                           [0,1,0],\n                           [0,-1,0],\n                           [0,-1,0],\n                           [0,1,0],\n                           [0,0,1],\n                           [0,0,1],\n                           [0,1,0],\n                           [1,0,0],\n                           [-1,0,0],\n                           [0,0,1],\n                           [0,-1,0],\n                           [0,-1,0],\n                           [0,-1,0],\n                           [0,-1,0],\n                           [0,-1,0],\n                           [0,-1,0]])\n\nt2m_kinematic_chain = [[0, 2, 5, 8, 11], [0, 1, 4, 7, 10], [0, 3, 6, 9, 12, 15], [9, 14, 17, 19, 21], [9, 13, 16, 18, 20]]\nt2m_left_hand_chain = [[20, 22, 23, 24], [20, 34, 35, 36], [20, 25, 26, 27], [20, 31, 32, 33], [20, 28, 29, 30]]\nt2m_right_hand_chain = [[21, 43, 44, 45], [21, 46, 47, 48], [21, 40, 41, 42], [21, 37, 38, 39], [21, 49, 50, 51]]\n\n\nkit_tgt_skel_id = '03950'\n\nt2m_tgt_skel_id = '000021'\n\n"
  },
  {
    "path": "utils/quaternion.py",
    "content": "# Copyright (c) 2018-present, Facebook, Inc.\n# All rights reserved.\n#\n# This source code is licensed under the license found in the\n# LICENSE file in the root directory of this source tree.\n#\n\nimport torch\nimport numpy as np\n\n_EPS4 = np.finfo(float).eps * 4.0\n\n_FLOAT_EPS = np.finfo(float).eps\n\n# PyTorch-backed implementations\ndef qinv(q):\n    assert q.shape[-1] == 4, 'q must be a tensor of shape (*, 4)'\n    mask = torch.ones_like(q)\n    mask[..., 1:] = -mask[..., 1:]\n    return q * mask\n\n\ndef qinv_np(q):\n    assert q.shape[-1] == 4, 'q must be a tensor of shape (*, 4)'\n    return qinv(torch.from_numpy(q).float()).numpy()\n\n\ndef qnormalize(q):\n    assert q.shape[-1] == 4, 'q must be a tensor of shape (*, 4)'\n    return q / torch.norm(q, dim=-1, keepdim=True)\n\n\ndef qmul(q, r):\n    \"\"\"\n    Multiply quaternion(s) q with quaternion(s) r.\n    Expects two equally-sized tensors of shape (*, 4), where * denotes any number of dimensions.\n    Returns q*r as a tensor of shape (*, 4).\n    \"\"\"\n    assert q.shape[-1] == 4\n    assert r.shape[-1] == 4\n\n    original_shape = q.shape\n\n    # Compute outer product\n    terms = torch.bmm(r.view(-1, 4, 1), q.view(-1, 1, 4))\n\n    w = terms[:, 0, 0] - terms[:, 1, 1] - terms[:, 2, 2] - terms[:, 3, 3]\n    x = terms[:, 0, 1] + terms[:, 1, 0] - terms[:, 2, 3] + terms[:, 3, 2]\n    y = terms[:, 0, 2] + terms[:, 1, 3] + terms[:, 2, 0] - terms[:, 3, 1]\n    z = terms[:, 0, 3] - terms[:, 1, 2] + terms[:, 2, 1] + terms[:, 3, 0]\n    return torch.stack((w, x, y, z), dim=1).view(original_shape)\n\n\ndef qrot(q, v):\n    \"\"\"\n    Rotate vector(s) v about the rotation described by quaternion(s) q.\n    Expects a tensor of shape (*, 4) for q and a tensor of shape (*, 3) for v,\n    where * denotes any number of dimensions.\n    Returns a tensor of shape (*, 3).\n    \"\"\"\n    assert q.shape[-1] == 4\n    assert v.shape[-1] == 3\n    assert q.shape[:-1] == v.shape[:-1]\n\n    original_shape = list(v.shape)\n    # print(q.shape)\n    q = q.contiguous().view(-1, 4)\n    v = v.contiguous().view(-1, 3)\n\n    qvec = q[:, 1:]\n    uv = torch.cross(qvec, v, dim=1)\n    uuv = torch.cross(qvec, uv, dim=1)\n    return (v + 2 * (q[:, :1] * uv + uuv)).view(original_shape)\n\n\ndef qeuler(q, order, epsilon=0, deg=True):\n    \"\"\"\n    Convert quaternion(s) q to Euler angles.\n    Expects a tensor of shape (*, 4), where * denotes any number of dimensions.\n    Returns a tensor of shape (*, 3).\n    \"\"\"\n    assert q.shape[-1] == 4\n\n    original_shape = list(q.shape)\n    original_shape[-1] = 3\n    q = q.view(-1, 4)\n\n    q0 = q[:, 0]\n    q1 = q[:, 1]\n    q2 = q[:, 2]\n    q3 = q[:, 3]\n\n    if order == 'xyz':\n        x = torch.atan2(2 * (q0 * q1 - q2 * q3), 1 - 2 * (q1 * q1 + q2 * q2))\n        y = torch.asin(torch.clamp(2 * (q1 * q3 + q0 * q2), -1 + epsilon, 1 - epsilon))\n        z = torch.atan2(2 * (q0 * q3 - q1 * q2), 1 - 2 * (q2 * q2 + q3 * q3))\n    elif order == 'yzx':\n        x = torch.atan2(2 * (q0 * q1 - q2 * q3), 1 - 2 * (q1 * q1 + q3 * q3))\n        y = torch.atan2(2 * (q0 * q2 - q1 * q3), 1 - 2 * (q2 * q2 + q3 * q3))\n        z = torch.asin(torch.clamp(2 * (q1 * q2 + q0 * q3), -1 + epsilon, 1 - epsilon))\n    elif order == 'zxy':\n        x = torch.asin(torch.clamp(2 * (q0 * q1 + q2 * q3), -1 + epsilon, 1 - epsilon))\n        y = torch.atan2(2 * (q0 * q2 - q1 * q3), 1 - 2 * (q1 * q1 + q2 * q2))\n        z = torch.atan2(2 * (q0 * q3 - q1 * q2), 1 - 2 * (q1 * q1 + q3 * q3))\n    elif order == 'xzy':\n        x = torch.atan2(2 * (q0 * q1 + q2 * q3), 1 - 2 * (q1 * q1 + q3 * q3))\n        y = torch.atan2(2 * (q0 * q2 + q1 * q3), 1 - 2 * (q2 * q2 + q3 * q3))\n        z = torch.asin(torch.clamp(2 * (q0 * q3 - q1 * q2), -1 + epsilon, 1 - epsilon))\n    elif order == 'yxz':\n        x = torch.asin(torch.clamp(2 * (q0 * q1 - q2 * q3), -1 + epsilon, 1 - epsilon))\n        y = torch.atan2(2 * (q1 * q3 + q0 * q2), 1 - 2 * (q1 * q1 + q2 * q2))\n        z = torch.atan2(2 * (q1 * q2 + q0 * q3), 1 - 2 * (q1 * q1 + q3 * q3))\n    elif order == 'zyx':\n        x = torch.atan2(2 * (q0 * q1 + q2 * q3), 1 - 2 * (q1 * q1 + q2 * q2))\n        y = torch.asin(torch.clamp(2 * (q0 * q2 - q1 * q3), -1 + epsilon, 1 - epsilon))\n        z = torch.atan2(2 * (q0 * q3 + q1 * q2), 1 - 2 * (q2 * q2 + q3 * q3))\n    else:\n        raise\n\n    if deg:\n        return torch.stack((x, y, z), dim=1).view(original_shape) * 180 / np.pi\n    else:\n        return torch.stack((x, y, z), dim=1).view(original_shape)\n\n\n# Numpy-backed implementations\n\ndef qmul_np(q, r):\n    q = torch.from_numpy(q).contiguous().float()\n    r = torch.from_numpy(r).contiguous().float()\n    return qmul(q, r).numpy()\n\n\ndef qrot_np(q, v):\n    q = torch.from_numpy(q).contiguous().float()\n    v = torch.from_numpy(v).contiguous().float()\n    return qrot(q, v).numpy()\n\n\ndef qeuler_np(q, order, epsilon=0, use_gpu=False):\n    if use_gpu:\n        q = torch.from_numpy(q).cuda().float()\n        return qeuler(q, order, epsilon).cpu().numpy()\n    else:\n        q = torch.from_numpy(q).contiguous().float()\n        return qeuler(q, order, epsilon).numpy()\n\n\ndef qfix(q):\n    \"\"\"\n    Enforce quaternion continuity across the time dimension by selecting\n    the representation (q or -q) with minimal distance (or, equivalently, maximal dot product)\n    between two consecutive frames.\n\n    Expects a tensor of shape (L, J, 4), where L is the sequence length and J is the number of joints.\n    Returns a tensor of the same shape.\n    \"\"\"\n    assert len(q.shape) == 3\n    assert q.shape[-1] == 4\n\n    result = q.copy()\n    dot_products = np.sum(q[1:] * q[:-1], axis=2)\n    mask = dot_products < 0\n    mask = (np.cumsum(mask, axis=0) % 2).astype(bool)\n    result[1:][mask] *= -1\n    return result\n\n\ndef euler2quat(e, order, deg=True):\n    \"\"\"\n    Convert Euler angles to quaternions.\n    \"\"\"\n    assert e.shape[-1] == 3\n\n    original_shape = list(e.shape)\n    original_shape[-1] = 4\n\n    e = e.view(-1, 3)\n\n    ## if euler angles in degrees\n    if deg:\n        e = e * np.pi / 180.\n\n    x = e[:, 0]\n    y = e[:, 1]\n    z = e[:, 2]\n\n    rx = torch.stack((torch.cos(x / 2), torch.sin(x / 2), torch.zeros_like(x), torch.zeros_like(x)), dim=1)\n    ry = torch.stack((torch.cos(y / 2), torch.zeros_like(y), torch.sin(y / 2), torch.zeros_like(y)), dim=1)\n    rz = torch.stack((torch.cos(z / 2), torch.zeros_like(z), torch.zeros_like(z), torch.sin(z / 2)), dim=1)\n\n    result = None\n    for coord in order:\n        if coord == 'x':\n            r = rx\n        elif coord == 'y':\n            r = ry\n        elif coord == 'z':\n            r = rz\n        else:\n            raise\n        if result is None:\n            result = r\n        else:\n            result = qmul(result, r)\n\n    # Reverse antipodal representation to have a non-negative \"w\"\n    if order in ['xyz', 'yzx', 'zxy']:\n        result *= -1\n\n    return result.view(original_shape)\n\n\ndef expmap_to_quaternion(e):\n    \"\"\"\n    Convert axis-angle rotations (aka exponential maps) to quaternions.\n    Stable formula from \"Practical Parameterization of Rotations Using the Exponential Map\".\n    Expects a tensor of shape (*, 3), where * denotes any number of dimensions.\n    Returns a tensor of shape (*, 4).\n    \"\"\"\n    assert e.shape[-1] == 3\n\n    original_shape = list(e.shape)\n    original_shape[-1] = 4\n    e = e.reshape(-1, 3)\n\n    theta = np.linalg.norm(e, axis=1).reshape(-1, 1)\n    w = np.cos(0.5 * theta).reshape(-1, 1)\n    xyz = 0.5 * np.sinc(0.5 * theta / np.pi) * e\n    return np.concatenate((w, xyz), axis=1).reshape(original_shape)\n\n\ndef euler_to_quaternion(e, order):\n    \"\"\"\n    Convert Euler angles to quaternions.\n    \"\"\"\n    assert e.shape[-1] == 3\n\n    original_shape = list(e.shape)\n    original_shape[-1] = 4\n\n    e = e.reshape(-1, 3)\n\n    x = e[:, 0]\n    y = e[:, 1]\n    z = e[:, 2]\n\n    rx = np.stack((np.cos(x / 2), np.sin(x / 2), np.zeros_like(x), np.zeros_like(x)), axis=1)\n    ry = np.stack((np.cos(y / 2), np.zeros_like(y), np.sin(y / 2), np.zeros_like(y)), axis=1)\n    rz = np.stack((np.cos(z / 2), np.zeros_like(z), np.zeros_like(z), np.sin(z / 2)), axis=1)\n\n    result = None\n    for coord in order:\n        if coord == 'x':\n            r = rx\n        elif coord == 'y':\n            r = ry\n        elif coord == 'z':\n            r = rz\n        else:\n            raise\n        if result is None:\n            result = r\n        else:\n            result = qmul_np(result, r)\n\n    # Reverse antipodal representation to have a non-negative \"w\"\n    if order in ['xyz', 'yzx', 'zxy']:\n        result *= -1\n\n    return result.reshape(original_shape)\n\n\ndef quaternion_to_matrix(quaternions):\n    \"\"\"\n    Convert rotations given as quaternions to rotation matrices.\n    Args:\n        quaternions: quaternions with real part first,\n            as tensor of shape (..., 4).\n    Returns:\n        Rotation matrices as tensor of shape (..., 3, 3).\n    \"\"\"\n    r, i, j, k = torch.unbind(quaternions, -1)\n    two_s = 2.0 / (quaternions * quaternions).sum(-1)\n\n    o = torch.stack(\n        (\n            1 - two_s * (j * j + k * k),\n            two_s * (i * j - k * r),\n            two_s * (i * k + j * r),\n            two_s * (i * j + k * r),\n            1 - two_s * (i * i + k * k),\n            two_s * (j * k - i * r),\n            two_s * (i * k - j * r),\n            two_s * (j * k + i * r),\n            1 - two_s * (i * i + j * j),\n        ),\n        -1,\n    )\n    return o.reshape(quaternions.shape[:-1] + (3, 3))\n\n\ndef quaternion_to_matrix_np(quaternions):\n    q = torch.from_numpy(quaternions).contiguous().float()\n    return quaternion_to_matrix(q).numpy()\n\n\ndef quaternion_to_cont6d_np(quaternions):\n    rotation_mat = quaternion_to_matrix_np(quaternions)\n    cont_6d = np.concatenate([rotation_mat[..., 0], rotation_mat[..., 1]], axis=-1)\n    return cont_6d\n\n\ndef quaternion_to_cont6d(quaternions):\n    rotation_mat = quaternion_to_matrix(quaternions)\n    cont_6d = torch.cat([rotation_mat[..., 0], rotation_mat[..., 1]], dim=-1)\n    return cont_6d\n\n\ndef cont6d_to_matrix(cont6d):\n    assert cont6d.shape[-1] == 6, \"The last dimension must be 6\"\n    x_raw = cont6d[..., 0:3]\n    y_raw = cont6d[..., 3:6]\n\n    x = x_raw / torch.norm(x_raw, dim=-1, keepdim=True)\n    z = torch.cross(x, y_raw, dim=-1)\n    z = z / torch.norm(z, dim=-1, keepdim=True)\n\n    y = torch.cross(z, x, dim=-1)\n\n    x = x[..., None]\n    y = y[..., None]\n    z = z[..., None]\n\n    mat = torch.cat([x, y, z], dim=-1)\n    return mat\n\n\ndef cont6d_to_matrix_np(cont6d):\n    q = torch.from_numpy(cont6d).contiguous().float()\n    return cont6d_to_matrix(q).numpy()\n\n\ndef qpow(q0, t, dtype=torch.float):\n    ''' q0 : tensor of quaternions\n    t: tensor of powers\n    '''\n    q0 = qnormalize(q0)\n    theta0 = torch.acos(q0[..., 0])\n\n    ## if theta0 is close to zero, add epsilon to avoid NaNs\n    mask = (theta0 <= 10e-10) * (theta0 >= -10e-10)\n    theta0 = (1 - mask) * theta0 + mask * 10e-10\n    v0 = q0[..., 1:] / torch.sin(theta0).view(-1, 1)\n\n    if isinstance(t, torch.Tensor):\n        q = torch.zeros(t.shape + q0.shape)\n        theta = t.view(-1, 1) * theta0.view(1, -1)\n    else:  ## if t is a number\n        q = torch.zeros(q0.shape)\n        theta = t * theta0\n\n    q[..., 0] = torch.cos(theta)\n    q[..., 1:] = v0 * torch.sin(theta).unsqueeze(-1)\n\n    return q.to(dtype)\n\n\ndef qslerp(q0, q1, t):\n    '''\n    q0: starting quaternion\n    q1: ending quaternion\n    t: array of points along the way\n\n    Returns:\n    Tensor of Slerps: t.shape + q0.shape\n    '''\n\n    q0 = qnormalize(q0)\n    q1 = qnormalize(q1)\n    q_ = qpow(qmul(q1, qinv(q0)), t)\n\n    return qmul(q_,\n                q0.contiguous().view(torch.Size([1] * len(t.shape)) + q0.shape).expand(t.shape + q0.shape).contiguous())\n\n\ndef qbetween(v0, v1):\n    '''\n    find the quaternion used to rotate v0 to v1\n    '''\n    assert v0.shape[-1] == 3, 'v0 must be of the shape (*, 3)'\n    assert v1.shape[-1] == 3, 'v1 must be of the shape (*, 3)'\n\n    v = torch.cross(v0, v1)\n    w = torch.sqrt((v0 ** 2).sum(dim=-1, keepdim=True) * (v1 ** 2).sum(dim=-1, keepdim=True)) + (v0 * v1).sum(dim=-1,\n                                                                                                              keepdim=True)\n    return qnormalize(torch.cat([w, v], dim=-1))\n\n\ndef qbetween_np(v0, v1):\n    '''\n    find the quaternion used to rotate v0 to v1\n    '''\n    assert v0.shape[-1] == 3, 'v0 must be of the shape (*, 3)'\n    assert v1.shape[-1] == 3, 'v1 must be of the shape (*, 3)'\n\n    v0 = torch.from_numpy(v0).float()\n    v1 = torch.from_numpy(v1).float()\n    return qbetween(v0, v1).numpy()\n\n\ndef lerp(p0, p1, t):\n    if not isinstance(t, torch.Tensor):\n        t = torch.Tensor([t])\n\n    new_shape = t.shape + p0.shape\n    new_view_t = t.shape + torch.Size([1] * len(p0.shape))\n    new_view_p = torch.Size([1] * len(t.shape)) + p0.shape\n    p0 = p0.view(new_view_p).expand(new_shape)\n    p1 = p1.view(new_view_p).expand(new_shape)\n    t = t.view(new_view_t).expand(new_shape)\n\n    return p0 + t * (p1 - p0)\n"
  },
  {
    "path": "utils/rotation_conversions.py",
    "content": "# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.\n# Check PYTORCH3D_LICENCE before use\n\nimport functools\nfrom typing import Optional\n\nimport torch\nimport torch.nn.functional as F\n\n\n\"\"\"\nThe transformation matrices returned from the functions in this file assume\nthe points on which the transformation will be applied are column vectors.\ni.e. the R matrix is structured as\n    R = [\n            [Rxx, Rxy, Rxz],\n            [Ryx, Ryy, Ryz],\n            [Rzx, Rzy, Rzz],\n        ]  # (3, 3)\nThis matrix can be applied to column vectors by post multiplication\nby the points e.g.\n    points = [[0], [1], [2]]  # (3 x 1) xyz coordinates of a point\n    transformed_points = R * points\nTo apply the same matrix to points which are row vectors, the R matrix\ncan be transposed and pre multiplied by the points:\ne.g.\n    points = [[0, 1, 2]]  # (1 x 3) xyz coordinates of a point\n    transformed_points = points * R.transpose(1, 0)\n\"\"\"\n\n\ndef quaternion_to_matrix(quaternions):\n    \"\"\"\n    Convert rotations given as quaternions to rotation matrices.\n    Args:\n        quaternions: quaternions with real part first,\n            as tensor of shape (..., 4).\n    Returns:\n        Rotation matrices as tensor of shape (..., 3, 3).\n    \"\"\"\n    r, i, j, k = torch.unbind(quaternions, -1)\n    two_s = 2.0 / (quaternions * quaternions).sum(-1)\n\n    o = torch.stack(\n        (\n            1 - two_s * (j * j + k * k),\n            two_s * (i * j - k * r),\n            two_s * (i * k + j * r),\n            two_s * (i * j + k * r),\n            1 - two_s * (i * i + k * k),\n            two_s * (j * k - i * r),\n            two_s * (i * k - j * r),\n            two_s * (j * k + i * r),\n            1 - two_s * (i * i + j * j),\n        ),\n        -1,\n    )\n    return o.reshape(quaternions.shape[:-1] + (3, 3))\n\n\ndef _copysign(a, b):\n    \"\"\"\n    Return a tensor where each element has the absolute value taken from the,\n    corresponding element of a, with sign taken from the corresponding\n    element of b. This is like the standard copysign floating-point operation,\n    but is not careful about negative 0 and NaN.\n    Args:\n        a: source tensor.\n        b: tensor whose signs will be used, of the same shape as a.\n    Returns:\n        Tensor of the same shape as a with the signs of b.\n    \"\"\"\n    signs_differ = (a < 0) != (b < 0)\n    return torch.where(signs_differ, -a, a)\n\n\ndef _sqrt_positive_part(x):\n    \"\"\"\n    Returns torch.sqrt(torch.max(0, x))\n    but with a zero subgradient where x is 0.\n    \"\"\"\n    ret = torch.zeros_like(x)\n    positive_mask = x > 0\n    ret[positive_mask] = torch.sqrt(x[positive_mask])\n    return ret\n\n\ndef matrix_to_quaternion(matrix):\n    \"\"\"\n    Convert rotations given as rotation matrices to quaternions.\n    Args:\n        matrix: Rotation matrices as tensor of shape (..., 3, 3).\n    Returns:\n        quaternions with real part first, as tensor of shape (..., 4).\n    \"\"\"\n    if matrix.size(-1) != 3 or matrix.size(-2) != 3:\n        raise ValueError(f\"Invalid rotation matrix  shape f{matrix.shape}.\")\n    m00 = matrix[..., 0, 0]\n    m11 = matrix[..., 1, 1]\n    m22 = matrix[..., 2, 2]\n    o0 = 0.5 * _sqrt_positive_part(1 + m00 + m11 + m22)\n    x = 0.5 * _sqrt_positive_part(1 + m00 - m11 - m22)\n    y = 0.5 * _sqrt_positive_part(1 - m00 + m11 - m22)\n    z = 0.5 * _sqrt_positive_part(1 - m00 - m11 + m22)\n    o1 = _copysign(x, matrix[..., 2, 1] - matrix[..., 1, 2])\n    o2 = _copysign(y, matrix[..., 0, 2] - matrix[..., 2, 0])\n    o3 = _copysign(z, matrix[..., 1, 0] - matrix[..., 0, 1])\n    return torch.stack((o0, o1, o2, o3), -1)\n\n\ndef _axis_angle_rotation(axis: str, angle):\n    \"\"\"\n    Return the rotation matrices for one of the rotations about an axis\n    of which Euler angles describe, for each value of the angle given.\n    Args:\n        axis: Axis label \"X\" or \"Y or \"Z\".\n        angle: any shape tensor of Euler angles in radians\n    Returns:\n        Rotation matrices as tensor of shape (..., 3, 3).\n    \"\"\"\n\n    cos = torch.cos(angle)\n    sin = torch.sin(angle)\n    one = torch.ones_like(angle)\n    zero = torch.zeros_like(angle)\n\n    if axis == \"X\":\n        R_flat = (one, zero, zero, zero, cos, -sin, zero, sin, cos)\n    if axis == \"Y\":\n        R_flat = (cos, zero, sin, zero, one, zero, -sin, zero, cos)\n    if axis == \"Z\":\n        R_flat = (cos, -sin, zero, sin, cos, zero, zero, zero, one)\n\n    return torch.stack(R_flat, -1).reshape(angle.shape + (3, 3))\n\n\ndef euler_angles_to_matrix(euler_angles, convention: str):\n    \"\"\"\n    Convert rotations given as Euler angles in radians to rotation matrices.\n    Args:\n        euler_angles: Euler angles in radians as tensor of shape (..., 3).\n        convention: Convention string of three uppercase letters from\n            {\"X\", \"Y\", and \"Z\"}.\n    Returns:\n        Rotation matrices as tensor of shape (..., 3, 3).\n    \"\"\"\n    if euler_angles.dim() == 0 or euler_angles.shape[-1] != 3:\n        raise ValueError(\"Invalid input euler angles.\")\n    if len(convention) != 3:\n        raise ValueError(\"Convention must have 3 letters.\")\n    if convention[1] in (convention[0], convention[2]):\n        raise ValueError(f\"Invalid convention {convention}.\")\n    for letter in convention:\n        if letter not in (\"X\", \"Y\", \"Z\"):\n            raise ValueError(f\"Invalid letter {letter} in convention string.\")\n    matrices = map(_axis_angle_rotation, convention, torch.unbind(euler_angles, -1))\n    return functools.reduce(torch.matmul, matrices)\n\n\ndef _angle_from_tan(\n    axis: str, other_axis: str, data, horizontal: bool, tait_bryan: bool\n):\n    \"\"\"\n    Extract the first or third Euler angle from the two members of\n    the matrix which are positive constant times its sine and cosine.\n    Args:\n        axis: Axis label \"X\" or \"Y or \"Z\" for the angle we are finding.\n        other_axis: Axis label \"X\" or \"Y or \"Z\" for the middle axis in the\n            convention.\n        data: Rotation matrices as tensor of shape (..., 3, 3).\n        horizontal: Whether we are looking for the angle for the third axis,\n            which means the relevant entries are in the same row of the\n            rotation matrix. If not, they are in the same column.\n        tait_bryan: Whether the first and third axes in the convention differ.\n    Returns:\n        Euler Angles in radians for each matrix in data as a tensor\n        of shape (...).\n    \"\"\"\n\n    i1, i2 = {\"X\": (2, 1), \"Y\": (0, 2), \"Z\": (1, 0)}[axis]\n    if horizontal:\n        i2, i1 = i1, i2\n    even = (axis + other_axis) in [\"XY\", \"YZ\", \"ZX\"]\n    if horizontal == even:\n        return torch.atan2(data[..., i1], data[..., i2])\n    if tait_bryan:\n        return torch.atan2(-data[..., i2], data[..., i1])\n    return torch.atan2(data[..., i2], -data[..., i1])\n\n\ndef _index_from_letter(letter: str):\n    if letter == \"X\":\n        return 0\n    if letter == \"Y\":\n        return 1\n    if letter == \"Z\":\n        return 2\n\n\ndef matrix_to_euler_angles(matrix, convention: str):\n    \"\"\"\n    Convert rotations given as rotation matrices to Euler angles in radians.\n    Args:\n        matrix: Rotation matrices as tensor of shape (..., 3, 3).\n        convention: Convention string of three uppercase letters.\n    Returns:\n        Euler angles in radians as tensor of shape (..., 3).\n    \"\"\"\n    if len(convention) != 3:\n        raise ValueError(\"Convention must have 3 letters.\")\n    if convention[1] in (convention[0], convention[2]):\n        raise ValueError(f\"Invalid convention {convention}.\")\n    for letter in convention:\n        if letter not in (\"X\", \"Y\", \"Z\"):\n            raise ValueError(f\"Invalid letter {letter} in convention string.\")\n    if matrix.size(-1) != 3 or matrix.size(-2) != 3:\n        raise ValueError(f\"Invalid rotation matrix  shape f{matrix.shape}.\")\n    i0 = _index_from_letter(convention[0])\n    i2 = _index_from_letter(convention[2])\n    tait_bryan = i0 != i2\n    if tait_bryan:\n        central_angle = torch.asin(\n            matrix[..., i0, i2] * (-1.0 if i0 - i2 in [-1, 2] else 1.0)\n        )\n    else:\n        central_angle = torch.acos(matrix[..., i0, i0])\n\n    o = (\n        _angle_from_tan(\n            convention[0], convention[1], matrix[..., i2], False, tait_bryan\n        ),\n        central_angle,\n        _angle_from_tan(\n            convention[2], convention[1], matrix[..., i0, :], True, tait_bryan\n        ),\n    )\n    return torch.stack(o, -1)\n\n\ndef random_quaternions(\n    n: int, dtype: Optional[torch.dtype] = None, device=None, requires_grad=False\n):\n    \"\"\"\n    Generate random quaternions representing rotations,\n    i.e. versors with nonnegative real part.\n    Args:\n        n: Number of quaternions in a batch to return.\n        dtype: Type to return.\n        device: Desired device of returned tensor. Default:\n            uses the current device for the default tensor type.\n        requires_grad: Whether the resulting tensor should have the gradient\n            flag set.\n    Returns:\n        Quaternions as tensor of shape (N, 4).\n    \"\"\"\n    o = torch.randn((n, 4), dtype=dtype, device=device, requires_grad=requires_grad)\n    s = (o * o).sum(1)\n    o = o / _copysign(torch.sqrt(s), o[:, 0])[:, None]\n    return o\n\n\ndef random_rotations(\n    n: int, dtype: Optional[torch.dtype] = None, device=None, requires_grad=False\n):\n    \"\"\"\n    Generate random rotations as 3x3 rotation matrices.\n    Args:\n        n: Number of rotation matrices in a batch to return.\n        dtype: Type to return.\n        device: Device of returned tensor. Default: if None,\n            uses the current device for the default tensor type.\n        requires_grad: Whether the resulting tensor should have the gradient\n            flag set.\n    Returns:\n        Rotation matrices as tensor of shape (n, 3, 3).\n    \"\"\"\n    quaternions = random_quaternions(\n        n, dtype=dtype, device=device, requires_grad=requires_grad\n    )\n    return quaternion_to_matrix(quaternions)\n\n\ndef random_rotation(\n    dtype: Optional[torch.dtype] = None, device=None, requires_grad=False\n):\n    \"\"\"\n    Generate a single random 3x3 rotation matrix.\n    Args:\n        dtype: Type to return\n        device: Device of returned tensor. Default: if None,\n            uses the current device for the default tensor type\n        requires_grad: Whether the resulting tensor should have the gradient\n            flag set\n    Returns:\n        Rotation matrix as tensor of shape (3, 3).\n    \"\"\"\n    return random_rotations(1, dtype, device, requires_grad)[0]\n\n\ndef standardize_quaternion(quaternions):\n    \"\"\"\n    Convert a unit quaternion to a standard form: one in which the real\n    part is non negative.\n    Args:\n        quaternions: Quaternions with real part first,\n            as tensor of shape (..., 4).\n    Returns:\n        Standardized quaternions as tensor of shape (..., 4).\n    \"\"\"\n    return torch.where(quaternions[..., 0:1] < 0, -quaternions, quaternions)\n\n\ndef quaternion_raw_multiply(a, b):\n    \"\"\"\n    Multiply two quaternions.\n    Usual torch rules for broadcasting apply.\n    Args:\n        a: Quaternions as tensor of shape (..., 4), real part first.\n        b: Quaternions as tensor of shape (..., 4), real part first.\n    Returns:\n        The product of a and b, a tensor of quaternions shape (..., 4).\n    \"\"\"\n    aw, ax, ay, az = torch.unbind(a, -1)\n    bw, bx, by, bz = torch.unbind(b, -1)\n    ow = aw * bw - ax * bx - ay * by - az * bz\n    ox = aw * bx + ax * bw + ay * bz - az * by\n    oy = aw * by - ax * bz + ay * bw + az * bx\n    oz = aw * bz + ax * by - ay * bx + az * bw\n    return torch.stack((ow, ox, oy, oz), -1)\n\n\ndef quaternion_multiply(a, b):\n    \"\"\"\n    Multiply two quaternions representing rotations, returning the quaternion\n    representing their composition, i.e. the versor with nonnegative real part.\n    Usual torch rules for broadcasting apply.\n    Args:\n        a: Quaternions as tensor of shape (..., 4), real part first.\n        b: Quaternions as tensor of shape (..., 4), real part first.\n    Returns:\n        The product of a and b, a tensor of quaternions of shape (..., 4).\n    \"\"\"\n    ab = quaternion_raw_multiply(a, b)\n    return standardize_quaternion(ab)\n\n\ndef quaternion_invert(quaternion):\n    \"\"\"\n    Given a quaternion representing rotation, get the quaternion representing\n    its inverse.\n    Args:\n        quaternion: Quaternions as tensor of shape (..., 4), with real part\n            first, which must be versors (unit quaternions).\n    Returns:\n        The inverse, a tensor of quaternions of shape (..., 4).\n    \"\"\"\n\n    return quaternion * quaternion.new_tensor([1, -1, -1, -1])\n\n\ndef quaternion_apply(quaternion, point):\n    \"\"\"\n    Apply the rotation given by a quaternion to a 3D point.\n    Usual torch rules for broadcasting apply.\n    Args:\n        quaternion: Tensor of quaternions, real part first, of shape (..., 4).\n        point: Tensor of 3D points of shape (..., 3).\n    Returns:\n        Tensor of rotated points of shape (..., 3).\n    \"\"\"\n    if point.size(-1) != 3:\n        raise ValueError(f\"Points are not in 3D, f{point.shape}.\")\n    real_parts = point.new_zeros(point.shape[:-1] + (1,))\n    point_as_quaternion = torch.cat((real_parts, point), -1)\n    out = quaternion_raw_multiply(\n        quaternion_raw_multiply(quaternion, point_as_quaternion),\n        quaternion_invert(quaternion),\n    )\n    return out[..., 1:]\n\n\ndef axis_angle_to_matrix(axis_angle):\n    \"\"\"\n    Convert rotations given as axis/angle to rotation matrices.\n    Args:\n        axis_angle: Rotations given as a vector in axis angle form,\n            as a tensor of shape (..., 3), where the magnitude is\n            the angle turned anticlockwise in radians around the\n            vector's direction.\n    Returns:\n        Rotation matrices as tensor of shape (..., 3, 3).\n    \"\"\"\n    return quaternion_to_matrix(axis_angle_to_quaternion(axis_angle))\n\n\ndef matrix_to_axis_angle(matrix):\n    \"\"\"\n    Convert rotations given as rotation matrices to axis/angle.\n    Args:\n        matrix: Rotation matrices as tensor of shape (..., 3, 3).\n    Returns:\n        Rotations given as a vector in axis angle form, as a tensor\n            of shape (..., 3), where the magnitude is the angle\n            turned anticlockwise in radians around the vector's\n            direction.\n    \"\"\"\n    return quaternion_to_axis_angle(matrix_to_quaternion(matrix))\n\n\ndef axis_angle_to_quaternion(axis_angle):\n    \"\"\"\n    Convert rotations given as axis/angle to quaternions.\n    Args:\n        axis_angle: Rotations given as a vector in axis angle form,\n            as a tensor of shape (..., 3), where the magnitude is\n            the angle turned anticlockwise in radians around the\n            vector's direction.\n    Returns:\n        quaternions with real part first, as tensor of shape (..., 4).\n    \"\"\"\n    angles = torch.norm(axis_angle, p=2, dim=-1, keepdim=True)\n    half_angles = 0.5 * angles\n    eps = 1e-6\n    small_angles = angles.abs() < eps\n    sin_half_angles_over_angles = torch.empty_like(angles)\n    sin_half_angles_over_angles[~small_angles] = (\n        torch.sin(half_angles[~small_angles]) / angles[~small_angles]\n    )\n    # for x small, sin(x/2) is about x/2 - (x/2)^3/6\n    # so sin(x/2)/x is about 1/2 - (x*x)/48\n    sin_half_angles_over_angles[small_angles] = (\n        0.5 - (angles[small_angles] * angles[small_angles]) / 48\n    )\n    quaternions = torch.cat(\n        [torch.cos(half_angles), axis_angle * sin_half_angles_over_angles], dim=-1\n    )\n    return quaternions\n\n\ndef quaternion_to_axis_angle(quaternions):\n    \"\"\"\n    Convert rotations given as quaternions to axis/angle.\n    Args:\n        quaternions: quaternions with real part first,\n            as tensor of shape (..., 4).\n    Returns:\n        Rotations given as a vector in axis angle form, as a tensor\n            of shape (..., 3), where the magnitude is the angle\n            turned anticlockwise in radians around the vector's\n            direction.\n    \"\"\"\n    norms = torch.norm(quaternions[..., 1:], p=2, dim=-1, keepdim=True)\n    half_angles = torch.atan2(norms, quaternions[..., :1])\n    angles = 2 * half_angles\n    eps = 1e-6\n    small_angles = angles.abs() < eps\n    sin_half_angles_over_angles = torch.empty_like(angles)\n    sin_half_angles_over_angles[~small_angles] = (\n        torch.sin(half_angles[~small_angles]) / angles[~small_angles]\n    )\n    # for x small, sin(x/2) is about x/2 - (x/2)^3/6\n    # so sin(x/2)/x is about 1/2 - (x*x)/48\n    sin_half_angles_over_angles[small_angles] = (\n        0.5 - (angles[small_angles] * angles[small_angles]) / 48\n    )\n    return quaternions[..., 1:] / sin_half_angles_over_angles\n\n\ndef rotation_6d_to_matrix(d6: torch.Tensor) -> torch.Tensor:\n    \"\"\"\n    Converts 6D rotation representation by Zhou et al. [1] to rotation matrix\n    using Gram--Schmidt orthogonalisation per Section B of [1].\n    Args:\n        d6: 6D rotation representation, of size (*, 6)\n    Returns:\n        batch of rotation matrices of size (*, 3, 3)\n    [1] Zhou, Y., Barnes, C., Lu, J., Yang, J., & Li, H.\n    On the Continuity of Rotation Representations in Neural Networks.\n    IEEE Conference on Computer Vision and Pattern Recognition, 2019.\n    Retrieved from http://arxiv.org/abs/1812.07035\n    \"\"\"\n\n    a1, a2 = d6[..., :3], d6[..., 3:]\n    b1 = F.normalize(a1, dim=-1)\n    b2 = a2 - (b1 * a2).sum(-1, keepdim=True) * b1\n    b2 = F.normalize(b2, dim=-1)\n    b3 = torch.cross(b1, b2, dim=-1)\n    return torch.stack((b1, b2, b3), dim=-2)\n\n\ndef matrix_to_rotation_6d(matrix: torch.Tensor) -> torch.Tensor:\n    \"\"\"\n    Converts rotation matrices to 6D rotation representation by Zhou et al. [1]\n    by dropping the last row. Note that 6D representation is not unique.\n    Args:\n        matrix: batch of rotation matrices of size (*, 3, 3)\n    Returns:\n        6D rotation representation, of size (*, 6)\n    [1] Zhou, Y., Barnes, C., Lu, J., Yang, J., & Li, H.\n    On the Continuity of Rotation Representations in Neural Networks.\n    IEEE Conference on Computer Vision and Pattern Recognition, 2019.\n    Retrieved from http://arxiv.org/abs/1812.07035\n    \"\"\"\n    return matrix[..., :2, :].clone().reshape(*matrix.size()[:-2], 6)\n\ndef canonicalize_smplh(poses, trans = None):\n    bs, nframes, njoints = poses.shape[:3]\n\n    global_orient = poses[:, :, 0]\n\n    # first global rotations\n    rot2d = matrix_to_axis_angle(global_orient[:, 0])\n    #rot2d[:, :2] = 0  # Remove the rotation along the vertical axis\n    rot2d = axis_angle_to_matrix(rot2d)\n\n    # Rotate the global rotation to eliminate Z rotations\n    global_orient = torch.einsum(\"ikj,imkl->imjl\", rot2d, global_orient)\n\n    # Construct canonicalized version of x\n    xc = torch.cat((global_orient[:, :, None], poses[:, :, 1:]), dim=2)\n\n    if trans is not None:\n        vel = trans[:, 1:] - trans[:, :-1]\n        # Turn the translation as well\n        vel = torch.einsum(\"ikj,ilk->ilj\", rot2d, vel)\n        trans = torch.cat((torch.zeros(bs, 1, 3, device=vel.device),\n                           torch.cumsum(vel, 1)), 1)\n        return xc, trans\n    else:\n        return xc\n    \n    "
  },
  {
    "path": "utils/skeleton.py",
    "content": "from utils.quaternion import *\nimport scipy.ndimage.filters as filters\n\nclass Skeleton(object):\n    def __init__(self, offset, kinematic_tree, device):\n        self.device = device\n        self._raw_offset_np = offset.numpy()\n        self._raw_offset = offset.clone().detach().to(device).float()\n        self._kinematic_tree = kinematic_tree\n        self._offset = None\n        self._parents = [0] * len(self._raw_offset)\n        self._parents[0] = -1\n        for chain in self._kinematic_tree:\n            for j in range(1, len(chain)):\n                self._parents[chain[j]] = chain[j-1]\n\n    def njoints(self):\n        return len(self._raw_offset)\n\n    def offset(self):\n        return self._offset\n\n    def set_offset(self, offsets):\n        self._offset = offsets.clone().detach().to(self.device).float()\n\n    def kinematic_tree(self):\n        return self._kinematic_tree\n\n    def parents(self):\n        return self._parents\n\n    # joints (batch_size, joints_num, 3)\n    def get_offsets_joints_batch(self, joints):\n        assert len(joints.shape) == 3\n        _offsets = self._raw_offset.expand(joints.shape[0], -1, -1).clone()\n        for i in range(1, self._raw_offset.shape[0]):\n            _offsets[:, i] = torch.norm(joints[:, i] - joints[:, self._parents[i]], p=2, dim=1)[:, None] * _offsets[:, i]\n\n        self._offset = _offsets.detach()\n        return _offsets\n\n    # joints (joints_num, 3)\n    def get_offsets_joints(self, joints):\n        assert len(joints.shape) == 2\n        _offsets = self._raw_offset.clone()\n        for i in range(1, self._raw_offset.shape[0]):\n            # print(joints.shape)\n            _offsets[i] = torch.norm(joints[i] - joints[self._parents[i]], p=2, dim=0) * _offsets[i]\n\n        self._offset = _offsets.detach()\n        return _offsets\n\n    # face_joint_idx should follow the order of right hip, left hip, right shoulder, left shoulder\n    # joints (batch_size, joints_num, 3)\n    def inverse_kinematics_np(self, joints, face_joint_idx, smooth_forward=False):\n        assert len(face_joint_idx) == 4\n        '''Get Forward Direction'''\n        l_hip, r_hip, sdr_r, sdr_l = face_joint_idx\n        across1 = joints[:, r_hip] - joints[:, l_hip]\n        across2 = joints[:, sdr_r] - joints[:, sdr_l]\n        across = across1 + across2\n        across = across / np.sqrt((across**2).sum(axis=-1))[:, np.newaxis]\n        # print(across1.shape, across2.shape)\n\n        # forward (batch_size, 3)\n        forward = np.cross(np.array([[0, 1, 0]]), across, axis=-1)\n        if smooth_forward:\n            forward = filters.gaussian_filter1d(forward, 20, axis=0, mode='nearest')\n            # forward (batch_size, 3)\n        forward = forward / np.sqrt((forward**2).sum(axis=-1))[..., np.newaxis]\n\n        '''Get Root Rotation'''\n        target = np.array([[0,0,1]]).repeat(len(forward), axis=0)\n        root_quat = qbetween_np(forward, target)\n\n        '''Inverse Kinematics'''\n        # quat_params (batch_size, joints_num, 4)\n        # print(joints.shape[:-1])\n        quat_params = np.zeros(joints.shape[:-1] + (4,))\n        # print(quat_params.shape)\n        root_quat[0] = np.array([[1.0, 0.0, 0.0, 0.0]])\n        quat_params[:, 0] = root_quat\n        # quat_params[0, 0] = np.array([[1.0, 0.0, 0.0, 0.0]])\n        for chain in self._kinematic_tree:\n            R = root_quat\n            for j in range(len(chain) - 1):\n                # (batch, 3)\n                u = self._raw_offset_np[chain[j+1]][np.newaxis,...].repeat(len(joints), axis=0)\n                # print(u.shape)\n                # (batch, 3)\n                v = joints[:, chain[j+1]] - joints[:, chain[j]]\n                v = v / np.sqrt((v**2).sum(axis=-1))[:, np.newaxis]\n                # print(u.shape, v.shape)\n                rot_u_v = qbetween_np(u, v)\n\n                R_loc = qmul_np(qinv_np(R), rot_u_v)\n\n                quat_params[:,chain[j + 1], :] = R_loc\n                R = qmul_np(R, R_loc)\n\n        return quat_params\n\n    # Be sure root joint is at the beginning of kinematic chains\n    def forward_kinematics(self, quat_params, root_pos, skel_joints=None, do_root_R=True):\n        # quat_params (batch_size, joints_num, 4)\n        # joints (batch_size, joints_num, 3)\n        # root_pos (batch_size, 3)\n        if skel_joints is not None:\n            offsets = self.get_offsets_joints_batch(skel_joints)\n        if len(self._offset.shape) == 2:\n            offsets = self._offset.expand(quat_params.shape[0], -1, -1)\n        joints = torch.zeros(quat_params.shape[:-1] + (3,)).to(self.device)\n        joints[:, 0] = root_pos\n        for chain in self._kinematic_tree:\n            if do_root_R:\n                R = quat_params[:, 0]\n            else:\n                R = torch.tensor([[1.0, 0.0, 0.0, 0.0]]).expand(len(quat_params), -1).detach().to(self.device)\n            for i in range(1, len(chain)):\n                R = qmul(R, quat_params[:, chain[i]])\n                offset_vec = offsets[:, chain[i]]\n                joints[:, chain[i]] = qrot(R, offset_vec) + joints[:, chain[i-1]]\n        return joints\n\n    # Be sure root joint is at the beginning of kinematic chains\n    def forward_kinematics_np(self, quat_params, root_pos, skel_joints=None, do_root_R=True):\n        # quat_params (batch_size, joints_num, 4)\n        # joints (batch_size, joints_num, 3)\n        # root_pos (batch_size, 3)\n        if skel_joints is not None:\n            skel_joints = torch.from_numpy(skel_joints)\n            offsets = self.get_offsets_joints_batch(skel_joints)\n        if len(self._offset.shape) == 2:\n            offsets = self._offset.expand(quat_params.shape[0], -1, -1)\n        offsets = offsets.numpy()\n        joints = np.zeros(quat_params.shape[:-1] + (3,))\n        joints[:, 0] = root_pos\n        for chain in self._kinematic_tree:\n            if do_root_R:\n                R = quat_params[:, 0]\n            else:\n                R = np.array([[1.0, 0.0, 0.0, 0.0]]).repeat(len(quat_params), axis=0)\n            for i in range(1, len(chain)):\n                R = qmul_np(R, quat_params[:, chain[i]])\n                offset_vec = offsets[:, chain[i]]\n                joints[:, chain[i]] = qrot_np(R, offset_vec) + joints[:, chain[i - 1]]\n        return joints\n\n    def forward_kinematics_cont6d_np(self, cont6d_params, root_pos, skel_joints=None, do_root_R=True):\n        # cont6d_params (batch_size, joints_num, 6)\n        # joints (batch_size, joints_num, 3)\n        # root_pos (batch_size, 3)\n        if skel_joints is not None:\n            skel_joints = torch.from_numpy(skel_joints)\n            offsets = self.get_offsets_joints_batch(skel_joints)\n        if len(self._offset.shape) == 2:\n            offsets = self._offset.expand(cont6d_params.shape[0], -1, -1)\n        offsets = offsets.numpy()\n        joints = np.zeros(cont6d_params.shape[:-1] + (3,))\n        joints[:, 0] = root_pos\n        for chain in self._kinematic_tree:\n            if do_root_R:\n                matR = cont6d_to_matrix_np(cont6d_params[:, 0])\n            else:\n                matR = np.eye(3)[np.newaxis, :].repeat(len(cont6d_params), axis=0)\n            for i in range(1, len(chain)):\n                matR = np.matmul(matR, cont6d_to_matrix_np(cont6d_params[:, chain[i]]))\n                offset_vec = offsets[:, chain[i]][..., np.newaxis]\n                # print(matR.shape, offset_vec.shape)\n                joints[:, chain[i]] = np.matmul(matR, offset_vec).squeeze(-1) + joints[:, chain[i-1]]\n        return joints\n\n    def forward_kinematics_cont6d(self, cont6d_params, root_pos, skel_joints=None, do_root_R=True):\n        # cont6d_params (batch_size, joints_num, 6)\n        # joints (batch_size, joints_num, 3)\n        # root_pos (batch_size, 3)\n        if skel_joints is not None:\n            # skel_joints = torch.from_numpy(skel_joints)\n            offsets = self.get_offsets_joints_batch(skel_joints)\n        if len(self._offset.shape) == 2:\n            offsets = self._offset.expand(cont6d_params.shape[0], -1, -1)\n        joints = torch.zeros(cont6d_params.shape[:-1] + (3,)).to(cont6d_params.device)\n        joints[..., 0, :] = root_pos\n        for chain in self._kinematic_tree:\n            if do_root_R:\n                matR = cont6d_to_matrix(cont6d_params[:, 0])\n            else:\n                matR = torch.eye(3).expand((len(cont6d_params), -1, -1)).detach().to(cont6d_params.device)\n            for i in range(1, len(chain)):\n                matR = torch.matmul(matR, cont6d_to_matrix(cont6d_params[:, chain[i]]))\n                offset_vec = offsets[:, chain[i]].unsqueeze(-1)\n                # print(matR.shape, offset_vec.shape)\n                joints[:, chain[i]] = torch.matmul(matR, offset_vec).squeeze(-1) + joints[:, chain[i-1]]\n        return joints\n\n\n\n\n\n"
  },
  {
    "path": "utils/utils_model.py",
    "content": "import numpy as np \nimport torch\nimport torch.optim as optim\nimport logging\nimport os \nimport sys \n\ndef getCi(accLog):\n\n    mean = np.mean(accLog)\n    std = np.std(accLog)\n    ci95 = 1.96*std/np.sqrt(len(accLog))\n\n    return mean, ci95\n\ndef get_logger(out_dir):\n    logger = logging.getLogger('Exp')\n    logger.setLevel(logging.INFO)\n    formatter = logging.Formatter(\"%(asctime)s %(levelname)s %(message)s\")\n\n    file_path = os.path.join(out_dir, \"run.log\")\n    file_hdlr = logging.FileHandler(file_path)\n    file_hdlr.setFormatter(formatter)\n\n    strm_hdlr = logging.StreamHandler(sys.stdout)\n    strm_hdlr.setFormatter(formatter)\n\n    logger.addHandler(file_hdlr)\n    logger.addHandler(strm_hdlr)\n    return logger\n\n## Optimizer\ndef initial_optim(decay_option, lr, weight_decay, net, optimizer) : \n    \n    if optimizer == 'adamw' : \n        optimizer_adam_family = optim.AdamW\n    elif optimizer == 'adam' : \n        optimizer_adam_family = optim.Adam\n    if decay_option == 'all':\n        #optimizer = optimizer_adam_family(net.parameters(), lr=lr, betas=(0.9, 0.999), weight_decay=weight_decay)\n        optimizer = optimizer_adam_family(net.parameters(), lr=lr, betas=(0.5, 0.9), weight_decay=weight_decay)\n        \n    elif decay_option == 'noVQ':\n        all_params = set(net.parameters())\n        no_decay = set([net.vq_layer])\n        \n        decay = all_params - no_decay\n        optimizer = optimizer_adam_family([\n                    {'params': list(no_decay), 'weight_decay': 0}, \n                    {'params': list(decay), 'weight_decay' : weight_decay}], lr=lr)\n        \n    return optimizer\n\n\ndef get_motion_with_trans(motion, velocity) : \n    '''\n    motion : torch.tensor, shape (batch_size, T, 72), with the global translation = 0\n    velocity : torch.tensor, shape (batch_size, T, 3), contain the information of velocity = 0\n    \n    '''\n    trans = torch.cumsum(velocity, dim=1)\n    trans = trans - trans[:, :1] ## the first root is initialized at 0 (just for visualization)\n    trans = trans.repeat((1, 1, 21))\n    motion_with_trans = motion + trans\n    return motion_with_trans\n    "
  },
  {
    "path": "utils/word_vectorizer.py",
    "content": "import numpy as np\nimport pickle\nfrom os.path import join as pjoin\n\nPOS_enumerator = {\n    'VERB': 0,\n    'NOUN': 1,\n    'DET': 2,\n    'ADP': 3,\n    'NUM': 4,\n    'AUX': 5,\n    'PRON': 6,\n    'ADJ': 7,\n    'ADV': 8,\n    'Loc_VIP': 9,\n    'Body_VIP': 10,\n    'Obj_VIP': 11,\n    'Act_VIP': 12,\n    'Desc_VIP': 13,\n    'OTHER': 14,\n}\n\nLoc_list = ('left', 'right', 'clockwise', 'counterclockwise', 'anticlockwise', 'forward', 'back', 'backward',\n            'up', 'down', 'straight', 'curve')\n\nBody_list = ('arm', 'chin', 'foot', 'feet', 'face', 'hand', 'mouth', 'leg', 'waist', 'eye', 'knee', 'shoulder', 'thigh')\n\nObj_List = ('stair', 'dumbbell', 'chair', 'window', 'floor', 'car', 'ball', 'handrail', 'baseball', 'basketball')\n\nAct_list = ('walk', 'run', 'swing', 'pick', 'bring', 'kick', 'put', 'squat', 'throw', 'hop', 'dance', 'jump', 'turn',\n            'stumble', 'dance', 'stop', 'sit', 'lift', 'lower', 'raise', 'wash', 'stand', 'kneel', 'stroll',\n            'rub', 'bend', 'balance', 'flap', 'jog', 'shuffle', 'lean', 'rotate', 'spin', 'spread', 'climb')\n\nDesc_list = ('slowly', 'carefully', 'fast', 'careful', 'slow', 'quickly', 'happy', 'angry', 'sad', 'happily',\n             'angrily', 'sadly')\n\nVIP_dict = {\n    'Loc_VIP': Loc_list,\n    'Body_VIP': Body_list,\n    'Obj_VIP': Obj_List,\n    'Act_VIP': Act_list,\n    'Desc_VIP': Desc_list,\n}\n\n\nclass WordVectorizer(object):\n    def __init__(self, meta_root, prefix):\n        vectors = np.load(pjoin(meta_root, '%s_data.npy'%prefix))\n        words = pickle.load(open(pjoin(meta_root, '%s_words.pkl'%prefix), 'rb'))\n        self.word2idx = pickle.load(open(pjoin(meta_root, '%s_idx.pkl'%prefix), 'rb'))\n        self.word2vec = {w: vectors[self.word2idx[w]] for w in words}\n\n    def _get_pos_ohot(self, pos):\n        pos_vec = np.zeros(len(POS_enumerator))\n        if pos in POS_enumerator:\n            pos_vec[POS_enumerator[pos]] = 1\n        else:\n            pos_vec[POS_enumerator['OTHER']] = 1\n        return pos_vec\n\n    def __len__(self):\n        return len(self.word2vec)\n\n    def __getitem__(self, item):\n        word, pos = item.split('/')\n        if word in self.word2vec:\n            word_vec = self.word2vec[word]\n            vip_pos = None\n            for key, values in VIP_dict.items():\n                if word in values:\n                    vip_pos = key\n                    break\n            if vip_pos is not None:\n                pos_vec = self._get_pos_ohot(vip_pos)\n            else:\n                pos_vec = self._get_pos_ohot(pos)\n        else:\n            word_vec = self.word2vec['unk']\n            pos_vec = self._get_pos_ohot('OTHER')\n        return word_vec, pos_vec\n\n\nclass WordVectorizerV2(WordVectorizer):\n    def __init__(self, meta_root, prefix):\n        super(WordVectorizerV2, self).__init__(meta_root, prefix)\n        self.idx2word = {self.word2idx[w]: w for w in self.word2idx}\n\n    def __getitem__(self, item):\n        word_vec, pose_vec = super(WordVectorizerV2, self).__getitem__(item)\n        word, pos = item.split('/')\n        if word in self.word2vec:\n            return word_vec, pose_vec, self.word2idx[word]\n        else:\n            return word_vec, pose_vec, self.word2idx['unk']\n\n    def itos(self, idx):\n        if idx == len(self.idx2word):\n            return \"pad\"\n        return self.idx2word[idx]"
  },
  {
    "path": "visualization/plot_3d_global.py",
    "content": "import torch \nimport matplotlib.pyplot as plt\nimport numpy as np\nfrom glob import glob\nimport io\nimport matplotlib\nfrom mpl_toolkits.mplot3d.art3d import Poly3DCollection\nimport mpl_toolkits.mplot3d.axes3d as p3\nfrom textwrap import wrap\nimport imageio\n\ndef plot_3d_motion(args, figsize=(10, 10), fps=120, radius=4):\n    matplotlib.use('Agg')\n\n    joints, out_name, title = args\n\n    data = joints.copy().reshape(len(joints), -1, 3)\n\n    nb_joints = joints.shape[1]\n    smpl_kinetic_chain = [[0, 11, 12, 13, 14, 15], [0, 16, 17, 18, 19, 20], [0, 1, 2, 3, 4], [3, 5, 6, 7], [3, 8, 9, 10]] if nb_joints == 21 else [[0, 2, 5, 8, 11], [0, 1, 4, 7, 10], [0, 3, 6, 9, 12, 15], [9, 14, 17, 19, 21], [9, 13, 16, 18, 20]]\n    limits = 1000 if nb_joints == 21 else 2\n    MINS = data.min(axis=0).min(axis=0)\n    MAXS = data.max(axis=0).max(axis=0)\n    colors = ['red', 'blue', 'black', 'red', 'blue',\n              'darkblue', 'darkblue', 'darkblue', 'darkblue', 'darkblue',\n              'darkred', 'darkred', 'darkred', 'darkred', 'darkred']\n    frame_number = data.shape[0]\n    #     print(data.shape)\n\n    height_offset = MINS[1]\n    data[:, :, 1] -= height_offset\n    trajec = data[:, 0, [0, 2]]\n\n    data[..., 0] -= data[:, 0:1, 0]\n    data[..., 2] -= data[:, 0:1, 2]\n\n    def update(index):\n\n        def init():\n            ax.set_xlim(-limits, limits)\n            ax.set_ylim(-limits, limits)\n            ax.set_zlim(0, limits)\n            ax.grid(b=False)\n        def plot_xzPlane(minx, maxx, miny, minz, maxz):\n            ## Plot a plane XZ\n            verts = [\n                [minx, miny, minz],\n                [minx, miny, maxz],\n                [maxx, miny, maxz],\n                [maxx, miny, minz]\n            ]\n            xz_plane = Poly3DCollection([verts])\n            xz_plane.set_facecolor((0.5, 0.5, 0.5, 0.5))\n            ax.add_collection3d(xz_plane)\n        fig = plt.figure(figsize=(480/96., 320/96.), dpi=96) if nb_joints == 21 else plt.figure(figsize=(10, 10), dpi=96)\n        if title is not None :\n            wraped_title = '\\n'.join(wrap(title, 40))\n            fig.suptitle(wraped_title, fontsize=16)\n        ax = p3.Axes3D(fig)\n        \n        init()\n        \n        ax.lines = []\n        ax.collections = []\n        ax.view_init(elev=110, azim=-90)\n        ax.dist = 7.5\n        #         ax =\n        plot_xzPlane(MINS[0] - trajec[index, 0], MAXS[0] - trajec[index, 0], 0, MINS[2] - trajec[index, 1],\n                     MAXS[2] - trajec[index, 1])\n        #         ax.scatter(data[index, :22, 0], data[index, :22, 1], data[index, :22, 2], color='black', s=3)\n\n        if index > 1:\n            ax.plot3D(trajec[:index, 0] - trajec[index, 0], np.zeros_like(trajec[:index, 0]),\n                      trajec[:index, 1] - trajec[index, 1], linewidth=1.0,\n                      color='blue')\n        #             ax = plot_xzPlane(ax, MINS[0], MAXS[0], 0, MINS[2], MAXS[2])\n\n        for i, (chain, color) in enumerate(zip(smpl_kinetic_chain, colors)):\n            #             print(color)\n            if i < 5:\n                linewidth = 4.0\n            else:\n                linewidth = 2.0\n            ax.plot3D(data[index, chain, 0], data[index, chain, 1], data[index, chain, 2], linewidth=linewidth,\n                      color=color)\n        #         print(trajec[:index, 0].shape)\n\n        plt.axis('off')\n        ax.set_xticklabels([])\n        ax.set_yticklabels([])\n        ax.set_zticklabels([])\n    \n        if out_name is not None : \n            plt.savefig(out_name, dpi=96)\n            plt.close()\n        else : \n            io_buf = io.BytesIO()\n            fig.savefig(io_buf, format='raw', dpi=96)\n            io_buf.seek(0)\n            # print(fig.bbox.bounds)\n            arr = np.reshape(np.frombuffer(io_buf.getvalue(), dtype=np.uint8),\n                                newshape=(int(fig.bbox.bounds[3]), int(fig.bbox.bounds[2]), -1))\n            io_buf.close()\n            plt.close()\n            return arr\n\n    out = []\n    for i in range(frame_number) : \n        out.append(update(i))\n    out = np.stack(out, axis=0)\n    return torch.from_numpy(out)\n\n\ndef draw_to_batch(smpl_joints_batch, title_batch=None, outname=None) : \n    batch_size = len(smpl_joints_batch)\n    out = []\n    for i in range(batch_size) : \n        out.append(plot_3d_motion([smpl_joints_batch[i], None, title_batch[i] if title_batch is not None else None]))\n        if outname is not None:\n            imageio.mimsave(outname[i], np.array(out[-1]), fps=20)\n    out = torch.stack(out, axis=0)\n    return out\n\n\nif __name__ == \"__main__\":\n    import argparse\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--dir\", type=str, default=None, help='motion npy file dir')\n    parser.add_argument('--motion-list', default=None, nargs=\"+\", type=str, help=\"motion name list\")\n    args = parser.parse_args()\n\n    if args.motion_list is None:\n        filename_list = glob(os.path.join(args.dir, '*.npy'))\n        filename_list = [os.path.splitext(os.path.split(fpath)[-1])[0] for fpath in filename_list]\n    else:\n        filename_list = args.motion_list\n\n    for filename in filename_list:\n        motions = np.load(os.path.join(args.dir, f'{filename}.npy'))\n        if motions.shape == 4:\n            motions = motions[0]\n\n        img = plot_3d_motion([motions, None, None])\n        imageio.mimsave(os.path.join(args.dir, f'{filename}.gif'), np.array(img), fps=20)"
  },
  {
    "path": "visualization/render.py",
    "content": "from models.rotation2xyz import Rotation2xyz\nimport numpy as np\nfrom trimesh import Trimesh\nimport os\nos.environ['PYOPENGL_PLATFORM'] = \"osmesa\"\n\nimport torch\nfrom visualize.simplify_loc2rot import joints2smpl\nimport pyrender\nimport matplotlib.pyplot as plt\n\nimport io\nimport imageio\nfrom shapely import geometry\nimport trimesh\nfrom pyrender.constants import RenderFlags\nfrom glob import glob\nfrom PIL import Image\n\nclass WeakPerspectiveCamera(pyrender.Camera):\n    def __init__(self,\n                 scale,\n                 translation,\n                 znear=pyrender.camera.DEFAULT_Z_NEAR,\n                 zfar=None,\n                 name=None):\n        super(WeakPerspectiveCamera, self).__init__(\n            znear=znear,\n            zfar=zfar,\n            name=name,\n        )\n        self.scale = scale\n        self.translation = translation\n\n    def get_projection_matrix(self, width=None, height=None):\n        P = np.eye(4)\n        P[0, 0] = self.scale[0]\n        P[1, 1] = self.scale[1]\n        P[0, 3] = self.translation[0] * self.scale[0]\n        P[1, 3] = -self.translation[1] * self.scale[1]\n        P[2, 2] = -1\n        return P\n\ndef render(motions, name, outdir='render_vis', device_id=0):\n    frames, njoints, nfeats = motions.shape\n    MINS = motions.min(axis=0).min(axis=0)\n    MAXS = motions.max(axis=0).max(axis=0)\n\n    height_offset = MINS[1]\n    motions[:, :, 1] -= height_offset\n    trajec = motions[:, 0, [0, 2]]\n\n    j2s = joints2smpl(num_frames=frames, device_id=0, cuda=True)\n    rot2xyz = Rotation2xyz(device=torch.device(\"cuda:0\"))\n    faces = rot2xyz.smpl_model.faces\n\n    if not os.path.exists(os.path.join(outdir, name+'.pt')):\n        print(f'Running SMPLify, it may take a few minutes.')\n        motion_tensor, opt_dict = j2s.joint2smpl(motions)  # [nframes, njoints, 3]\n\n        vertices = rot2xyz(torch.tensor(motion_tensor).clone(), mask=None,\n                                        pose_rep='rot6d', translation=True, glob=True,\n                                        jointstype='vertices',\n                                        vertstrans=True)\n\n        torch.save(vertices, os.path.join(outdir, name+'.pt'))\n    else:\n        vertices = torch.load(os.path.join(outdir, name+'.pt'))\n\n    frames = vertices.shape[3] # shape: 1, nb_frames, 3, nb_joints\n    print (vertices.shape)\n    MINS = torch.min(torch.min(vertices[0], axis=0)[0], axis=1)[0]\n    MAXS = torch.max(torch.max(vertices[0], axis=0)[0], axis=1)[0]\n    # vertices[:,:,1,:] -= MINS[1] + 1e-5\n\n    out_list = []\n\n    minx = MINS[0] - 0.5\n    maxx = MAXS[0] + 0.5\n    minz = MINS[2] - 0.5 \n    maxz = MAXS[2] + 0.5\n    polygon = geometry.Polygon([[minx, minz], [minx, maxz], [maxx, maxz], [maxx, minz]])\n    polygon_mesh = trimesh.creation.extrude_polygon(polygon, 1e-5)\n\n    vid = []\n    for i in range(frames):\n        mesh = Trimesh(vertices=vertices[0, :, :, i].squeeze().tolist(), faces=faces)\n\n        base_color = (0.11, 0.53, 0.8, 0.5)\n        ## OPAQUE rendering without alpha\n        ## BLEND rendering consider alpha \n        material = pyrender.MetallicRoughnessMaterial(\n            metallicFactor=0.7,\n            alphaMode='OPAQUE',\n            baseColorFactor=base_color\n        )\n\n        mesh = pyrender.Mesh.from_trimesh(mesh, material=material)\n\n        polygon_mesh.visual.face_colors = [0, 0, 0, 0.21]\n        polygon_render = pyrender.Mesh.from_trimesh(polygon_mesh, smooth=False)\n\n        bg_color = [1, 1, 1, 0.8]\n        scene = pyrender.Scene(bg_color=bg_color, ambient_light=(0.4, 0.4, 0.4))\n\n        sx, sy, tx, ty = [0.75, 0.75, 0, 0.10]\n\n        camera = pyrender.PerspectiveCamera(yfov=(np.pi / 3.0))\n\n        light = pyrender.DirectionalLight(color=[1,1,1], intensity=300)\n\n        scene.add(mesh)\n\n        c = np.pi / 2\n\n        scene.add(polygon_render, pose=np.array([[ 1, 0, 0, 0],\n\n        [ 0, np.cos(c), -np.sin(c), MINS[1].cpu().numpy()],\n\n        [ 0, np.sin(c), np.cos(c), 0],\n\n        [ 0, 0, 0, 1]]))\n\n        light_pose = np.eye(4)\n        light_pose[:3, 3] = [0, -1, 1]\n        scene.add(light, pose=light_pose.copy())\n\n        light_pose[:3, 3] = [0, 1, 1]\n        scene.add(light, pose=light_pose.copy())\n\n        light_pose[:3, 3] = [1, 1, 2]\n        scene.add(light, pose=light_pose.copy())\n\n\n        c = -np.pi / 6\n\n        scene.add(camera, pose=[[ 1, 0, 0, (minx+maxx).cpu().numpy()/2],\n\n                                [ 0, np.cos(c), -np.sin(c), 1.5],\n\n                                [ 0, np.sin(c), np.cos(c), max(4, minz.cpu().numpy()+(1.5-MINS[1].cpu().numpy())*2, (maxx-minx).cpu().numpy())],\n\n                                [ 0, 0, 0, 1]\n                                ])\n\n        # render scene\n        r = pyrender.OffscreenRenderer(960, 960)\n\n        color, _ = r.render(scene, flags=RenderFlags.RGBA)\n        # Image.fromarray(color).save(outdir+name+'_'+str(i)+'.png')\n\n        vid.append(color)\n\n        r.delete()\n\n    out = np.stack(vid, axis=0)\n    imageio.mimsave(os.path.join(outdir, f'{name}_render.gif'), out, fps=20)\n\n\nif __name__ == \"__main__\":\n    import argparse\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--dir\", type=str, default=None, help='motion npy file dir')\n    parser.add_argument('--motion-list', default=None, nargs=\"+\", type=str, help=\"motion name list\")\n    args = parser.parse_args()\n\n    if args.motion_list is None:\n        filename_list = glob(os.path.join(args.dir, '*.npy'))\n        filename_list = [os.path.splitext(os.path.split(fpath)[-1])[0] for fpath in filename_list]\n    else:\n        filename_list = args.motion_list\n\n    for filename in filename_list:\n        motions = np.load(os.path.join(args.dir, f'{filename}.npy'))\n        if motions.shape == 4:\n            motions = motions[0]\n\n        render(motions, filename, outdir=filedir, device_id=0)"
  },
  {
    "path": "visualize/joints2smpl/smpl_models/gmm_08.pkl",
    "content": "(dp1\nS'covars'\np2\ncnumpy.core.multiarray\n_reconstruct\np3\n(cnumpy\nndarray\np4\n(I0\ntS'b'\ntRp5\n(I1\n(I8\nI69\nI69\ntcnumpy\ndtype\np6\n(S'f8'\nI0\nI1\ntRp7\n(I3\nS'<'\nNNNI-1\nI-1\nI0\ntbI00\nS'\\x92\\x80:&d(\\xcf?\\xb5&\\xddL\\x89>\\x96?x\\x05\\xbf*rQ\\xaa\\xbf(\\xee\\xc7\\xed{\\xbe\\xc2?\\x90J\\xf5*\\xf4L`\\xbf\\xf0\\xe6\\x14fN\\xd7\\xa1?\\xd4\\xa5\\xaf*xS\\xbd\\xbf<}\\xa2\\x8f\\x890\\x88\\xbf\\xe4lq\\xc5Q\\x83v?>\\xf4\\xaemF\\xca\\xcd\\xbf.#%\\x062\\xa9\\xa6\\xbfpe\\x0f\\xf8\\xa8\\xa0\\xae?\\xb4\\x0cb\\x1a\\xb4/\\xc7\\xbf\\x80\\xe6\\xaa\\n\\xff\\xb8j?\\x94\\xbeX\\xc3\\xdbY\\x9b\\xbf\\\\\\x91\\x1b\\xcfX\\n\\x88?>\\xd9\\xe0\\x1e\\x98H\\x7f\\xbf/\\xbb\\x1b\\x9b\\xae\\x11`?<?\\xdc\\r\\x18~\\xa3?\\xb7\\xfdT\\xd5\\xe1!\\xa0?\\x84\\xeao8\\x8cH\\x9c\\xbf\\xc1\\x87j\\xdd\\x98\\xb1\\x99?\\xf8\\xb5\\x07\\x15\\x8f\\xe1\\xa1\\xbf\\xe4\\x0e\\x94\\xf1\\xfd\\x82\\x97?z\\x85\\x11\\xf9;Oc?X\\x89x;\\xee\\xb3q\\xbf \\xdc\\xebS!g6\\xbf\\xc0\\x9f/\\xcb\\x89\\x83\\x8d?\\xcc\\x14\\x8d\\x98\\xf3i\\x94\\xbf\\x10.\\xc2\\xf7o\\xd9\\x89?\\xe8\\x0bG\\x99`C\\x8b?\\x19}|bBQ\\xa4?d\\x1f\\xf8l\\x03\\xc4\\xa0\\xbf(\\x80\\xa1\\xdd\\xb9\\xdd|?\\xe8\\xd4\\x83\\x9c\\x96\\x94p\\xbf\\x96\\x14^\\xf1JN\\x81?\\x0c\\xfbd\\xe2/\\xd4\\x86\\xbf\\xd0\\xb5(\\x08M\\xef\\x92?\\x12%f\\xd8L=\\x9f?\\x9a\\xe9\\xef\\xe7!S\\x96\\xbf\\x18;\\x16\\xa6\\x1d[\\xa0\\xbf)WXL\\x86i\\x83\\xbf\\xec_\\xb7\\xce5\\x11\\x86?Lr\\xbe\\x13\\xdc\\x95\\x8a\\xbf\\x1c\\x89}\\xe6J\\x88\\x80\\xbf\\x90h\\x13\\x8fY\\xf2\\x96\\xbf\\xc0\\xa4\\x04\\xbb\\x8dA\\x92\\xbf\\x00\\x8e\\xe1\\xbe\\x13\\xfdm?\\x18,7\\xc2\\xec:\\x88?\\x10\"\\xbe^\\x1f\\xbd\\x87\\xbf\\x08\\xeb\\x95\\xcc\\x12o\\x99?\\x99@-\\xf2e\\x91\\x97\\xbf\\xb0\\x85t<\\xa89\\xa1?\\x00\\xe8\\x9a\\x93>{+?\\x18\\xbc1\\xdc&\\xb9\\x95\\xbf\\xd0$\\xee\\x89\\x18\\xbc\\xa0\\xbf`\\xa11\\x13\"\\x98\\x81\\xbf\\xf3\\xfdo\\xaa\\xc9$z\\xbf@\\xff\\xf7>M\\xc7Z?\\xd0Y\\x81\\xa8\\x02zu\\xbf\\xf0\\x05\\xdb\\xd4D\\xbcx?\\x18\\xd6&\\xa4\\xa7\\xeds\\xbf\\xd0\\xc3{\\x7f\\xc5\\x88\\x97\\xbf\\x98\\xe6\\xf3\\xae\\x98\\x86\\x96?Xc\\x84\\x16\\x0e\\x04^\\xbf\\x98+\\x0be\\x91\\r\\x92?H\\x9d\\xa0J\\xa5\\xe4v?\\xa0tY\\xb5Lef\\xbf@\\xbc\\xdd\\x0b\\xff\\x11U?\\xb5&\\xddL\\x89>\\x96?\\x9d\\xf0\\xd5\\xe8\\x96\\x80\\x91?\\xe8\\xea\\nK\\xf5\\xf6\\x82?\\x00\\x0e.\\x99)8\\x1d?N5\\x8a\\xae+cj\\xbf<Y\\xa0\\xc8\\xec\\xc8q\\xbf\\x9c|\\xeca\\x13Q{\\xbf\\xa5s\\x89\\x03\\xf4\\xf8u\\xbf\\x845\\xbde\\xe9\\xaaP?\\x0f\\xef\\x03*,\\n\\x9c\\xbf\\\\\\xbf\\xa9\\xe6d\\xa6v?+\\xfd]>)\\xcfq?\\xf5\\xfbb\\xc4w\\xf0\\x8c\\xbf\\x8f\\xe68\\xd6Z\\x85J\\xbfP\\x04\\x84\\x88\\x9b{@?\\xd1\\x94\\x98\\xbf\\x9c\\xd4H?\\xceOm\"\\x164f\\xbf\\x84\\xb4#\\xa9\\xc80\\x07\\xbf\\xd6\\x9dg\\xf7\\x19\\xb9}?\\xefA0\\x01\\xde\\xb8d?R\\xd2\\x10\\x8d\\x93\\xad\\x84\\xbf\\xc7!\\xdd\\x83\\xc5\\xafw?I\\xac\\xc5\\xdaCf_?\\xf9\\xf4bR\\xe46y?\\xccjT\\xbb;MJ\\xbf\\x0e\\xcd\\xf6\\xd4p{k\\xbfA\\xd9\\xbb\\xcfQ\\xdaO?\\xec\\xcf{Y\\xbc&U\\xbf\\xf0|6\\xe8\\x06\\xbdF\\xbfH\\x94\\x0f|\\xf7\\xd6\\x81?\\xab\\x92\\xb2\\x9b:\\x9bk\\xbfv\\x19+\\xe8<\\xe8X\\xbf\\x8c\\xd6\\x80\\xa1\\xdd\\x85w\\xbf\\x8f\\x11-K\\x8e\\xfcD?\\xec\\x9bf\\xaa\\xb8\\rs?\\x13\\xf0\\xa8b\\x06db\\xbf\\x10n\\xc7\\x18m\\xe4\\'?W\\x9d\\rrdVe?\\x04\\x88\\xef\\xd1\\x1c(~?8\\xe5\\xaf\\x87\\x0c\\xcdS\\xbf\\xb6\\xb8\\x9c*:\\xe6\\x84\\xbf\\xdd\\xca \\x88\\xb1\\x1f|\\xbf\\xc7\\x17J\\xbc,\\xf9y\\xbfRi\\x02Lk\\xa1w?\\x08f^v\\xee\\xfe\\x17?R2\\x06\\xf3\\xa9<|\\xbf\\xf0\\xca\\xa9H\\xe5a@?\\xecaW\\xbe\\xd9\\x82b?\\xc8\\xe7\\xc4\\x1d\\xe5&4?1\\xb9f\\x07#5w\\xbfa\\xf1Y,\\x12\\xe9v?\\x96\\xcf\\xad$\\x0e\\xa7S? \\xcf\\xecr\"~f?\\xec\\x11\\x10\\xab\\\\\\xe8Z\\xbf\\x84\\x92\\xd2\\x0eYEJ?\\x98E\\xcc\\xe1o\\xd6\\x88?\\x12\\xf9\\x88Bo\\xdeh\\xbf\\xb5\\xb6\\xd9j\\xd7]u?\\xa0\\xf1\\xe6h\\x0b6\\x12\\xbf\\xb4\\x0b!\\xb3WyI\\xbf\\xfe\\xb1(\\xafy\\x8ac\\xbf\\xe3\\xaa\\xbc\\xcf4\\xb4Z?@\\x08C\\x07\\xd4\\x06-\\xbf\\t\\x04\\x81b\\xb1\\x8fg\\xbf\\xee\\x12\\x89,\\xd5\\xcb\\'\\xbf,k\\xc5\\xeb\\x94\\xa7G\\xbf\\xc9<\\xbf\\xaf[\\xbab\\xbf\\xec\\xc2i`\\x84v2?F2\\x15`\\x94\\xebk?x\\x05\\xbf*rQ\\xaa\\xbf\\xe8\\xea\\nK\\xf5\\xf6\\x82?k\\x88j\\xe2\\x1b\\'\\xa7?x\\x02\\x8c\\xc1\\xa0\\x89\\xa6\\xbf\\x98\\xc6o\\x87U\\xabv\\xbfT\\xce\\xff\\xa5\\xacm\\x9a\\xbf\\x80\\xd2aT\\x11\\xb6\\x95?\\x98\\x16\\xfc\\xc2\\xa8\\xfe^\\xbfW0p\\xbd\\xe1eu\\xbf\\x1cd\\xe0\\xc9+\\x7f\\xac?\\x9c\\x15\\xd8\\x81\\x0c\\x11\\x88?(\\x06\\xf2`\\xee\\\\\\x8c\\xbf\\xc8\\xf3?K\\x19\\xcf\\xab?h\\xeci\\xb2DV\\\\?N@Kj\\xd0\\xca\\x86?\\x88\\x7fe)\\xee\\xefR\\xbf\\xd0K\\xab\\x9cV\\x197?\\xf0%\\xbbhu\\xe5^\\xbf4\\x17\\x15GX\\xdb\\\\?\\xb02\\x0c R)\\x80\\xbf`\\xc4\\x85\\xf7\\r\\xa7\\x83\\xbf\\xf8\\x17\\xa7\\xd0f\\x02r?\\x9e\\xa0L\\x15\\xf4Y\\x91?\\x004\\x1c@\\xc9/F?(i\\xf9,=Jk\\xbf\\xd6\\x90\\xdd\\xe0e\\xf7j\\xbf\\xa0\\xcd\\xd8V1P\\x1b\\xbf\\xec\\x13\\xddRu&\\x83\\xbf\\x10\\xf1\\x06f\\xf8\\xa9t?\\xa8zr\\x88\\xc4\\xce\\x89?\\xf0\\xa1\\xbe\\xcfRD\\x89\\xbf\\xbb\\xafd\\xb4\\xf2b\\x97\\xbfp]r\\x16R\\x7f}? y\\xab\\x150aT\\xbf\\xd4{\\xfd{n\\xab~?\\x83\\xf6\\x1cO\\xb8\\xa0u\\xbfX\\xa8\\xc5V6Bw?\\x101\\xb7\\x11\\xa4ss?\\xd0\\x1c\\x04\\nuMh\\xbfT\\xea8\\x96\\x8e\\x84}?TL\\x8e\\x0b\\xcd\\x91\\x85\\xbf\\x031\\xa5\\xb1\\xc0\\xdcr\\xbfs\\xfd\\xa4\\x83+b\\x89\\xbf[u\\x1cO3\\x0f\\x8e?\\xac\\xc5?\\x1aM\\xd9o?pM\\x1f9A\\xdba\\xbf\\x10\\x00T\\x08\\xf0\\xb6u?\\x90({\\xaci\\xbfp?`.\\xcd/-\\x13Z\\xbf\\xb0,/5\\xe1\\xd1}\\xbf\\xc0\\xbexV\\rDn\\xbf\\x80\\x92\\xe2\\x0e\\x0e\\x9eK?\\xb0\\xe0)\\xd2\\xf0\\x13\\x9a\\xbf\\xb0W\\xfd\\xb5\\x032r? \\r\\xe6\\x0f\\xdcRw?h\\\\\\x184\\x0e\\xb4\\xa4?\\xa0&\\x0cB_t|\\xbf\\xa5E6}\\xddl\\x83\\xbf\\xe0b\\x0b\\xc0Y\\\\Z\\xbf\\x00|a\\xc6\\xa6Lb\\xbff\\xfe\\x05z\\x1f\\xfd\\x8d\\xbf\\xd8K\\xc5t\\xb5\\xf7m?\\xf2,\\x95\\xa7\\x94\\xad\\x90?\\xc8H1\\x1e\\x82\\xdes\\xbf,\\xc6.\\xdb\\xedj]?\\x10\\xcdD\\xed\\xd5\\xedz\\xbf@m\\x95\\x18\\xd1\\xcdW\\xbf\\xc0\\x81\\x9a\\x18\\xad\\xad?\\xbf \\xd5:hC\\x94S?(\\xee\\xc7\\xed{\\xbe\\xc2?\\x00\\x0e.\\x99)8\\x1d?x\\x02\\x8c\\xc1\\xa0\\x89\\xa6\\xbf\\xcek\\x91~\\xf5l\\xd0?\\x8a\\x84K\\xb2\\x87\\x86\\x98\\xbf\\xdeNi\\xde#\\x95\\xa9?\\xb4\\t\\xc0\\x97\\xaeA\\xbe\\xbf\\xa7\\x8e_c\\x00\\xf6\\x95?\\xebN\\x9c\\xf6;\\xfa\\x86\\xbf$\\xc9\\xba\\x9e\\x02\\x91\\xc2\\xbfv~\\xed\\xf9\\xa9\\xb5\\x8b\\xbf\\x04MWr\\xd5!\\xa4?\\x80Q\\n\\xa9,#\\xce\\xbf#G\\xbe\\x03V\\xcf\\xa0?\\xa4}\\xc7\\xe4\\xddN\\xa7\\xbf\\xde\\x04\\xe3\\xd0!>\\x80?\\x02\\xc9!\\xf2\\x85\\x9c\\x91\\xbfV\\x15\\xcb\\xe69Fc\\xbflf\\xf0E\\x98\\xb0\\x99?w\\xb2\\xa0\\xe1\\\\,\\x93?\\xda\\xd0A\\xb2\\xcaG\\x95\\xbf@\\x1f\\xa55\\xde\\xb2\\xa1?\\xf91)L\\x8b\\xba\\xa3\\xbf8\\xd8Y\\x9d>\\x99\\x93?l\\xfb@p\\xbe\\x87t?\\x04>`R\\xafQn?t\\xd8~1;Ff\\xbf\\xc8i\\xdb\\x06E*\\x98?\\x80&E\\xf0\\x9a\\x07\\x8e\\xbf\\x08\\x18\\x05\\xa4\\xa5\\x1c\\x84?\\x00\\xd6\\x15\\x17\\x9b\\xa4`?wn\\xd64~\\xab\\xa3?\\xf0PL\\xb5\\xb6\\xee\\x97\\xbf4\\xaf\\xc9\\\\\\xb1\\x06\\x90?\\xe0\\x0e\\xe2\\xd6\\xb6qv\\xbf\\x96\\xbb/\\x0b\\x1ern?(ajT7\\xb7\\x8e\\xbfX\\xe6V`\"\\n\\x92?\\xab\\x8b\\x91+\\xc7\\x1e\\xa5?\\x80\\xba$Z\\x884\\x9b\\xbf\\xd8\\xe3N\\xc4\\xc5\\xdb\\x98\\xbfc\\x8e\\xb4:\\xac\\xe3\\x96\\xbf\\x14q\\x89p\\x96\\xdd\\x8a?\\tSc\\xdfy5\\x80\\xbf(B\\xa3\\xc3\\x84Nb\\xbf\\x96AOU\\xe5\\x86\\xa2\\xbf\\xa0\\xb1\\xec\\xa3\\xcc\\xc8z\\xbf\\x00\\xdb\\x8b\\xbf1\\xad\\x94?@`\\xb1\\xb6\\xddFc?\\x80\\x1e\\xfc\\x18B\\xdf^?@r\\x8b\\xa4\\x15\\xc3\\x94?]\\x8e\\x96\\xde\\xc5\\xe8\\x9e\\xbf\\x90\\xe1d\\xd8N6\\xaf?\\x00H\\x9fG-\\x14P\\xbf\\x9c\\xe3$\\x18\\x89}\\x92\\xbf\\x80\\xf44\\xf5qG\\xa5\\xbf0\\xed\\x87\\t=\\xab\\x85\\xbf\\xf1Z\\xbc8U\\xf2~\\xbf\\xd0\\xe7\\xfbl\\xdfqy?\\xc0\\xe29\\x04X\\x98Y?@\\xe7\\x86(\\x87\\x96~\\xbf\\xf4\\xeamb)h\\x86\\xbf\\x18\\xb5\\x97g,4\\x98\\xbf\\xd8\\xc7\\xe9\\xc445\\x99?\\xfc\\xda\\xaf\\xf2\\x1e\\ra\\xbfH(\\x16\\xe3\\xc0\\x1d\\x8f?\\x14E\\xf9OSe\\x80?`\\x1cPai\\xbaP\\xbf`\\xcd\\xcd\\xb2H\\x0ft?\\x98J\\xf5*\\xf4L`\\xbfN5\\x8a\\xae+cj\\xbf\\x98\\xc6o\\x87U\\xabv\\xbf\\x8a\\x84K\\xb2\\x87\\x86\\x98\\xbf\\xecMs\\xcc\\xaa\\xbe\\x8e?f9\\x9fs\\xac\\xfdv?d30uV\\x9d\\x81?ac*\\xd1\\xbaau\\xbfH&\\n\\x112T#?\\x18\\x8c\\xa1\\x04\\x9dz{?y\\x8c\\x82(\\xbb\\x89]\\xbf`\\xad\\xc4\\x9e\\xedz:?\\xf4\\x9f\\x96\\xcb\\xd4#\\x93?\\n\\x10\\xb1\\x0fZ\\x17p?T\\x1c\\x82\\xc4\\x9d\\xb4V?\\x1c\\xfc\\x0c\\xd27\\xc73?J\\xf6\\x1eo\\x1e\\x03\\\\\\xbfI\\n\\xdd\\xe30\\xdfj?\\x8b&\\x80b\\x03\\xc1}\\xbf\\xea\\x08~\\xc9\\xbf\\xd8R?\\x96\\xc5\\xa2rQ*y?\\xb6cs U\\xf9\\x85\\xbf\\xac\\xae\\xbcFV\\xb8p?\\x145<A+\\xf0s\\xbf3{\\xde\\xc0\\x86\\x9bL\\xbf\\xe5[\\x96\\x8d\\x98\\xf2g\\xbf\\x00i\\xb4u\\x19\\t-?\\x80:\\x9a\\xe0DER?@R\\x986m\\x847?\\xce\\x8b\\x0e\\x95\\xf1\\xc1v\\xbfh\\x1b\\xebi]mw?\\x00<,\\x01\\xf5z\\xd0\\xbe`\\xe9\\xf5\\x90\\xc8bo?Jr\\xf5X\\xedHH\\xbf\\x08\\x1bt\\xbb\\x9c2x?\\x81\\n\\xdea\\x88\\xdde?\\xee\\xe9n\\n\\x80\\xccb?\\xbe\\xea&;\\x91\\x15\\x86\\xbf\\xa4Z\\xe1)qy\\x83\\xbf\\xa02$\\xdb\\xe0\\xbfP?\\xe8\\xed\\x11\\xc2bwv?\\xdc\\xa0\\x9b\\xf0\\x8e\\xc7\\x85?\\nPM\\xc7)\\x15s?\\x98\\xd4KZ\\xc8\\xa3L\\xbf4\\x08t\\xf71zf\\xbf51\\xb2\\xd8Q0x?pCv\\x0f\\xd7{q\\xbf\\xb0\\x04]^p+e\\xbf\\xf8_\\xcc\\x10\\x8c\\xc0y?\\xd8p~W\\'vf?\\x0cMO\\xdf\\x1eTp?\\xc8\\xd9\\x14\\xe4f)n?H\\xb0\\x9d\\xf1E\\x87z?t\\xe4e\\xd7\\xb4\\x1ds\\xbf\\xd0\\xbe\\xde>\\xea\\xf2L?`|Zg\\xab\\xe7t?\\xa0\\xfa\\xdcu\\xc3rg\\xbf~\\xefJ\\x83\\xa2\\xbd\\x86?\\\\\\xa7\\x81\\x9b\\xe7SQ\\xbf\\xd4\\xca\\x98\\x80Y4g\\xbf\\xc2e\\x11\\x87\\xe6:q\\xbf\\xb3z\\x8cAu\\xc7`?\\xb0\\x00:\\x8d\\x18\\xb2F?0\\x19\\xc3\\xca\\xc08z\\xbf 8@Yu\\x8d@\\xbfr\\x85\\xd7L96d\\xbf\\xca\\xc3\\xdf\\xb05\\x08]\\xbf\\xb0\\xf1\\\\\\x9d\\x8c\\xd7B?\\x9c\\x8d\\xb2x\\x8e\\xb7U?\\xf0\\xe6\\x14fN\\xd7\\xa1?<Y\\xa0\\xc8\\xec\\xc8q\\xbfT\\xce\\xff\\xa5\\xacm\\x9a\\xbf\\xdaNi\\xde#\\x95\\xa9?f9\\x9fs\\xac\\xfdv?k\\xfe\\xbb\\xe4\\x9b7\\xa3?\\x8c\\x01\\xe3\\x9e\\xb1X\\x93\\xbf\\xba\\x80\\x98:\\xfd\\xe6a?\\x10\\xc4\\xa7\\xe3^yw\\xbfdE\\xc1\\xbd\\rY\\xa2\\xbf\\x80\\x18\\xf2\\xf9O=\\n\\xbfp\\xe6X,\\xce\\xa6\\x86?0\\xb3J\\xba:\\xe4\\xac\\xbf\\x99\\xae\\x9f\\xd2\\xf29j?\\xa8]\\x7fN\\xc9\\xd3\\x83\\xbf\\xe0\\x04\\xf0q\\xfbe2\\xbf\\x80<\\xed\\xca\\xe8$\\x81\\xbf\\xcc\\x1b#\\xda\\x81\\xfc9\\xbf(E\\x18: \\xa7B?\\x13OX\\xf54Vt?\\x80@\\xa3H7\\x0br?\\xf0\\x89\\x93\\xba\\x18Qk\\xbfxh\\tL\\xf0\"\\x82\\xbf`\\x92\\xb9Qb\\xc1n\\xbf\\x9c\\xe1\\x0ew\\xa4\\x89A?*qD/\\xb5\\xaeR\\xbf\\xfc\\x89\\xcd\\x9e[\\xcfQ\\xbf`\\x9f\\xf2\\xe0\\x1b\\xd5\\x87?`\\xb5\\x0e*\\xc4\\x97t\\xbf\\x9a\\x0e\\xc2\\xe2s\\xd8\\x87\\xbf\\x16\\xfa\\xf4\\x88\\xdc\\x03\\x88?\\x16$\\x1a\\x00\\xbdl\\x91?\\xc0:RB\\x06\\xeaR\\xbf\\x02\\x82\\xd9\\xa8\\x7f\\x84y?\\x92\";\\n8\\x92r?\\x1a\\xb6N\\xc3\\xb9\\x1ab?\\xa6\\xa7\\x11\\x8c\\xb0\\xcav\\xbf8K \\xff\\x13`\\x90\\xbf\\xa4e\\xb9yE\\xd9}?E|\\xd7hw\\xb2\\x82\\xbf\\xd4\\x07Y\\x84\\x99\\xf5\\x80?\\x82\\t#\\x8a4\\xfff\\xbf^\\x1c\\x0f\\x97\\x8f+\\x84?\\xe2\\x89\\x1bc\\x1d\\xd1u\\xbf@\\x9f%\\xb6\\xe8\\xf3\\x17?\\xbc!ez\\xbeb\\x7f\\xbf\\xa08(\\x19\\x99\\xa4\\x7f\\xbf`\\x8ap\\xdf\\x7f\\xeax?\\xc0K\\xcb\\x13\\x93Gk?\\x08\\xc5\\x10\\xb4\\x8f\\xb4\\x7f?\\xe0\\x81\\x1a\\xf4\\xe2\\x81\\x88?\\xbdV{!\\xb7\\x9bv\\xbf\\x98~\\x81\\xe1(1\\xa2?\\xe0\\xff\\xde\\xe6\\x0c\\x05w\\xbfPo\\x18Ik\\xd7x?\\xc0fhg\\xec\\xa8\\x8f\\xbf\\xa0\\xd1#\\xe4;\\xefu\\xbf\\xb2\\xf54EWn\\x91?\\xc8$\\xf6\\xdcD3b?\\x80Fy\\xbd\\xbb\\xfc9?\\xa0\\x7f\\x12\\x9e\\xdfN0?\\xe0\\x93ywP\\xbeZ\\xbfH\\x82\\xb8\\x1c\\xb6Z\\x86\\xbf\\xc0+}X\\x85\\x86T\\xbf\\x9aN/o\\xe41d\\xbf\\xcc\\x080*\\xc5$r?\\xa0\\t\\x88R\\xf1}c?\\x10\\xde]\\xfd\\xcf\\x96`?t\\xaf\\xce\\xea\\xe1\\x16q?\\xd4\\xa5\\xaf*xS\\xbd\\xbf\\x9f|\\xeca\\x13Q{\\xbf\\x80\\xd2aT\\x11\\xb6\\x95?\\xb4\\t\\xc0\\x97\\xaeA\\xbe\\xbfd30uV\\x9d\\x81?\\x8c\\x01\\xe3\\x9e\\xb1X\\x93\\xbf\\x16LV[\\x01\\xf3\\xb7?\\xf4g\\xaec\\x81\\xa4c\\xbf\\xf4H4\\xee.\\x81r?\\xa4\\xbeF\\xe9\\xdeZ\\xb9?\\xee\\xa1\\x99\\xbfw\\x12\\x91?\\xc0\\xe8\"\\xd2>S\\x9b\\xbfT\\x92UC[X\\xbb?\\xa5\\xda\\x9b\\xff\\x1bD\\x93\\xbf\\x84\\x81\\x0e\\xadc\\xf7\\x92?\\xa0,\\x1c\\xe2\\xbe\\x1cR\\xbfr<0\\x91%\\r\\x7f?`\\xa1u\\x15)\\xfbd\\xbf\\xdd\\x8d\\x1c(\\x03\\xf0\\x91\\xbfC\\xd4\\x88\\x89j9\\x92\\xbf\\xe8ye\\x0fmZ\\x90?P\\x9b\\xf70\\x1aq\\x90\\xbfn(\\x05v\\xd6E\\x9a?\\xb8\\x92\\xce5bR\\x93\\xbf\\x90\\r\\xf1\\xaf\\x1f\\x94a\\xbf\\xe4\\x8b)r2DW?D#u\\xc8@%[?\\xc0\\xa1\\xf1.\\x9f\\xb9t\\xbf\\x98\\x8b\\x83\\xd3\\xc4 \\x8a?h\\xe6\\xe7|\\x0eK\\x8e\\xbfHV\\xe4q:hq?\\xc6\\x01\\x06t\\xc81\\x9d\\xbf\\xf2U\\x85\\xbf\\xa0\\r\\xa0?,x$^Y\\x9ey?\\xd4x\\x00\\x1d2ws\\xbf\\x9d?`r\\xecFx\\xbf\\xe0\\xaf3\\x14\\xd0\\x88~?(\\xb1\\xde\\xd2C\"\\x94\\xbf\\x1a\\xa6\\xf1\\xf1\\x95\\xfa\\x99\\xbf\\xa8\\xad\\xff\\x9f\\x99\\xc7\\x8e?8\\xe4\\t\\xbe\\x1b|\\x9e?\\xb6T\\xad\\xf2J\\xf0\\x81?\\xe8\\x97\\xd2\\n~\\x03s\\xbf\\x00_\\nz\\x94\\xd44\\xbf\\x14v\\xb9\\xa7w\\x87v?\\xe2\\xcf\\x8f\\x1f\\xcb\\xb8\\x94?\\xc0c/\\xb2C\"v?`mxl\\x06\\x91\\x87\\xbf\\xf0@\\xb4\\xee\\xa4~\\x7f\\xbf\\xe0\\xd0Y\\x9eF.u?P\\xfe\\xfew\\xcf\\xe0\\x86\\xbf\\xca+)\\x84\\xce\\x9a\\x94?P\\x7ffi\\x19W\\x9e\\xbf`!\\xcb\\x19\\x07jz?h\\xcd\\'\\xd1\\x1f$\\x88?`\\xb37d\\xc9\\xcc\\x8b?\\x80\\x10\\xae\\x8c\\xb2Iw?\\xef\\x03\\x8a\\xc68\\xf5\\x8a? H\\x9f\\xe9\\x08\\xffg\\xbf\\x80\\x0f>s%\\x19I?\\xe4\\x9b\\x97\\x08\\xf3\\x9c\\x80?\\xe0\\xd1\\x93\\xda\\xa5\\x81e?\\xf8h\\xaa\\x8ad\\x07\\x81?\\x98w \\xb0\\x03\\xcb\\x8d\\xbf\\xb0tA\\x9a\\xa5\\x85_?`\\xf6=#\\x97\\x1dr\\xbf\\xa8\\xa7\\x00KL\\x1eq\\xbf\\x80\\x00\\x88\\x98\\x9cSd?`\\x11j\\xd5\\x0e\\xb5l\\xbf<}\\xa2\\x8f\\x890\\x88\\xbf\\xa5s\\x89\\x03\\xf4\\xf8u\\xbf\\x98\\x16\\xfc\\xc2\\xa8\\xfe^\\xbf\\xa7\\x8e_c\\x00\\xf6\\x95?bc*\\xd1\\xbaau\\xbf\\xba\\x80\\x98:\\xfd\\xe6a?\\xf4g\\xaec\\x81\\xa4c\\xbf\\x06$\\xbab\\x1b\\x88\\x82?\\x97\\xc0\\x95\\xd6\\xce\\x15c\\xbf\\xab\\x99\\xd67\\x1b\\x9c}?\\xc6j\\xe8\\xdb\\x1f\\x95U?\\xc8\\xef\\xe9fs.\\\\\\xbf\\xec\\xdb&\\x07\\x96I\\x8c\\xbf\\xc8i:\\x0b\\xa2\\xde_?8ZZ\\xdd\\'\\xa5k\\xbf\\xca\\x14\\xf7\\x9b\\x13a\"?1\\xe8`\\xcd\\x8b\\xf35\\xbf\\x04%7P\\xa6v>?\\xf7\\x00\\xd2\\xc6w\\xd4a\\xbf\\xba\\xa4AK\\x02\\xd2L\\xbf[\\xc1\\xb3\\t\\x16HR?\\xfe\\rv\\x06\\x97\\xa9S?\\x16\\xe0\\xaa(\\x8c\\xe8`\\xbfr5\\xd4\\x12\\xabXF\\xbf\\xeak\\xe3}\\x0c\\xe9\"?\\xdc)N\\x93(\\xf3n?\\xfc\\x82\\xb4\\xbb\\xf4rA?d.\\x7f\\xfa\\xf1\\x9cs?\\xc5-\\xab\\xeb\\xbb\\xeeR\\xbf\\x88EXC\\xf1\\x13\\x15?\\x90\\x0e\\xa0\\x8c]\\x98M\\xbf\\xecZ\\x96\\x1bP\\xf8\\'\\xbfL\\xabq\\xa5\\xd3\\x86a?2\\xb1\\xd6\\x025\\xc6Z?\\xe7\\x01\\xf53\\xd7b4?\\xa5\\xa6\\x03\\xc9,\\xd9F\\xbf^\\\\\\xf8\\xf6\\x0b\\xd2c\\xbf\\x98\\x95T\\xa4\\xf4\\xedI\\xbf\\xc2*s\\xf0T\\xf6w?\\xc6\\x1c\\x99\\x9c@\\xdfE\\xbftc\\x9b\\xf6\\x82rt?\\x00\\x16:lK]b\\xbfd\\xf1\\xd7)u2Q\\xbf\\x01U2\\xc9\\xa5\\xb3e\\xbf\\xdf\\x8e\\xcb\\xacOeV?\\xe6\\xbe\\x8b6\\x9eLg\\xbf\\x1c\\x1b9\\x9e\\xa0\\xbbp?\\xcbSY\\x11\\x00\\xf7{?\\xc0nz\\x0bX\\x0fd\\xbf=\\x93\\xafk;\\xf2q?0\\xe1\\xc2l\\xaf\\x8aF\\xbf>K,\\xef\\x89}p\\xbf\\x86\\x04\\xe8\\xf1J\\xa1\\x81?\\xfc\\xb4\\xa1\\xa3\\x16\\x14[\\xbf\\x03\\x15od\\xdf\\x8cR?89lN\\xcc\\x8el\\xbf\\x80\\n\\xdb\\xc2\\xac=0\\xbf\\xc6\\xdc}YB\\xc0M? \\xe3\\xe80\\xc0\\xddV?7@\\x96\\xa5\\xa5\\xf0a?\\xcbh\\x9btr[R\\xbf\\xfa\\x88\\xe1\\xd2\\x96&Z\\xbf\\x1cV\\xf2\\x13\\x1b\\x038\\xbf\\x98\\xeb\\xe1\\'\\xac#!?\\x90}\\xa3%\\x98~\\xe2>\\xd4\\x00\\xcd*\\xaapE\\xbfJ\\x02\\xea\\'\\xe7\\x9a=\\xbf.iYoz\\x178?\\xd0f\\x8c\\xb4f\\x93\\x18?\\xe6lq\\xc5Q\\x83v?\\x845\\xbde\\xe9\\xaaP?W0p\\xbd\\xe1eu\\xbf\\xebN\\x9c\\xf6;\\xfa\\x86\\xbfH&\\n\\x112T#?\\x12\\xc4\\xa7\\xe3^yw\\xbf\\xf4H4\\xee.\\x81r?\\x97\\xc0\\x95\\xd6\\xce\\x15c\\xbf<\\xfa)\\x17\\xbaP\\x82?\\xd2Qgb\\xe4q\\x89\\xbf\\x9a0y+\\xb5\\x15g\\xbf.\\x8a^\\x9d<\\xbd[?P0\\xa6t\\xce\\xafe\\xbf\\x9d[\\xa2\\xfe\\x88Hp\\xbf@\\xf7\\xb9w\\xe6\\xa7\\x18?[a\\x97o^\\x94S?\\xdc\\xb8\\xb5\\xa9W\\xcfu?n\\x8a$\\x1fY`[\\xbf\\x95\\xf2\\xec\\x12>#f?\\xac;\\xc6X\\x04.<?\\xc4a)\\x00u\\xc0V\\xbf\\xe0\\xb4\\x9d7\\x95\\xebI\\xbf\\xdd\\x81\\xa6\\xceP\\x1e`\\xbf R\\x89\\xc9Ju>?\\xc9\\x16n\\xcfZ\\xadI?\\r5\\xe9Kl\\x98a?2\\xb8\\x84\\xcf=JB?>\\xbf\"\\x1b\\xcdEd\\xbfp\\x1e+Ln\\xa07?Z\\x80\\xe5\\x1d\\xc2l\\\\?v.T\\x8d\\xa0@a?H\\xbb\\xaf\\xcb\\x90\\xd62\\xbf\\xc4\\xae\\xd1\\x8e\\xd2Ta\\xbf]\\xe0\\xb4\\xcb\\x01`_\\xbf\\x10I\\x1cB\\x17S\\x83\\xbf/\\xb1,\\xf7\\x12\\x92F?40\\xf7\\xcb\\xef\\xf8G?\\r5\\x9e\\xe5c@y?0g\\xc5y\\xe0\\xf0r\\xbfn\\x9e\\xb7\\xc1:0U?|\\x010\\x84p]n?\\xeekZ=\\x14\\xf3a\\xbf\\x944\\xa9\\x03\\x08\\xfbb\\xbf;\\xa2\\x9f\\x7fc[S\\xbf\\x84\\x8f\\x8e\\xe8+\\x03M\\xbfn\\x91L\\x19-\\x7f\\x81?\\x02\\xea\\xe5\\xd7\\xe5\\xa9q?\\x138\\xba`\\x04y\\x87\\xbfd}}\\xf6\\xdb\\xd3\\x7f\\xbf\\x10\\xc5&\\x03EcU?\\xda\\xa3\\xbf\\xfc\\xca\\x92\\x87\\xbf\\xbd+8W\\xe1[\\x7f?(:\\x11,\\xeb\\xb0\\x82\\xbf\\xd0\\x17\\xfa\\x92\\xd8*g?\\xc09lJ\\xd4\\xeay\\xbf\\xed\\x8b\\xc5zz\\x04\\x8c\\xbf\\xaa\\xddb\\xc3\\x00|}?\\x91\\x7f3\\xdd\\x9d\\xcfl\\xbf^@+\\xa4\\x15\\xd6P\\xbf4\\xe5\\x91\\xcf5\\xa2U\\xbf\\x1f\\xe5J\\xfd\\xc6T\\x87?\\x82\\x19\\xdc\\xd3.xD\\xbf\\xe4\\xca\\xad\\xb6\\x8c\\xea_\\xbf\\xccm\\x1f\\x80A\\xbbK?\\xe6\\xef\\xdb6\\xf0pD?\\x9d\\x8b\\xe2\\x83\\x8cAb?R`\\x16\\x8bU\\tB\\xbf\\xc2;P@kQX\\xbf\\xbf\\t\\x92\\x8f_\\xd1o\\xbf>\\xf4\\xaemF\\xca\\xcd\\xbf\\x0f\\xef\\x03*,\\n\\x9c\\xbf\\x1cd\\xe0\\xc9+\\x7f\\xac?$\\xc9\\xba\\x9e\\x02\\x91\\xc2\\xbf\\x18\\x8c\\xa1\\x04\\x9dz{?dE\\xc1\\xbd\\rY\\xa2\\xbf\\xa4\\xbeF\\xe9\\xdeZ\\xb9?\\xa9\\x99\\xd67\\x1b\\x9c}?\\xd2Qgb\\xe4q\\x89\\xbf\\xbe\\xd6\\x87e+\\xfa\\xde?X\\xf9\\xd1\\xec\\x00z\\x9a?\\xe6\\xa3\\xdc\\x11\\xc9V\\xb7\\xbf\\xec{\\x10&\\xde\\x15\\xd7?\\xa2\\xf5\\xd7\\xd9tg\\x7f?d\\xdae\\xa6 \\x8c\\xa5?\\xb4\\xe1\\xaa\\x99~\\xaf\\x92\\xbf$\\xe4]\\xc4\\xb7iz?\\x86\\xa4\\x99\\xf1\\x89\\x95\\x83?t(\\xb2\\xe7\\xf5o\\xb0\\xbf\\x16\\xd3\\x90o\\xff\\x82\\xa2\\xbfR\\x8d\\x86\\xae/\\xa4\\xae?|G;y2l\\xa4\\xbf\\xda\\xf2\\xdc|\\xbd\\xcd\\xa2?\\xd2Ss\\x1f;\\xaa\\xad\\xbf\\x0f\\xb41t\\xdd\\x0e~\\xbf\\x90\\xee\\x83\\xa8!\\x9aR\\xbf4\\xa8\\xeb\\x11\\x1fxu\\xbf<(\\x18j;\\xbb\\xa8\\xbf\\x90\\xcb\\x88\\xaf\\xeb\\xa3\\x9d?U\\xadX\\xba\\x05\\x80\\xae\\xbf\\x0e\\xc7\\xb4^\\xb18\\xa2\\xbfs\\xe4]\\xa5\\xa6\\xfe\\xa5\\xbf\\x1c\\x02<F\\xee\\xd8\\xb0?\\x1e5$}\"\\x18\\x92?`\\x8cr[7\\xd6\\\\?\\xbcXf\\xeda\\xd2{?0\\xde\\xe0rq\\x1d\\x7f?\\xf0\\x12\\x14\\\\\\x84:\\x99\\xbf|\\xcax\\x0b\\xca\\x11\\x98\\xbf\\x00\\x17\\x1a(\\x8a\\xd6\\x82?\\x18\\x05\\xfd\\xd3\\xbe\\xa7\\xa0?FV\\xb8c\\xde\\\\\\x8f?\\xc0\\xc4\\x92\\x13\\xf2~\\x9d?\\xb86t\\x82\\x07\\xa9\\x99?L[v\\x97N){\\xbfxK\\xce\\t)o\\x84\\xbf\\x00\\xac\\xb1\\xcb:,\\x8a? \\x06K$J\\xf9\\xa3?@\\xa1\\xf4\\xfb%\\x04\\x95\\xbf\\xa0\\xc9\\x12\\x0cS6\\x93?@\\x1eF\\xc8\\xe8\\x96\\xa6\\xbf\\xb0\\xe1\\xb7E\\xfd2s\\xbf\\x80L\\xeeV\\xf6\\x8e\\x9c\\xbf`\\x9a=\\xc7\\xea\\xa2\\x88?\\xa0l\\x11\\xe8l\\x97t\\xbf\\xb0\\xe5\\x1a+\\xd5Q\\xa8?`\\xbd\\xe2\\xa2\\xe3?\\x93\\xbf\\xc8\\x92><\\xe8\\xdfN\\xbf\\x90\\xe27\\xd9\\x8d\\xa8{?\\xf0\\xda\\xc3\\xc9\\x1f\\x82\\x85\\xbfm\\x9a\\x7f\\xf7)\\x1f\\x9e\\xbf\\xd0\\xc3bu\\x14\\x1b}\\xbf\\xd42r\\x1c\\x95<\\xa0?\\xa83w=$\\xa9\\x8b\\xbf\\xd6\\xfa\\xf9\\xa3\\xb7\\x96\\x80?\\xc8\\xb2\\xf6I\\x07\\xca\\x96\\xbf\\xd4\\xbd\\xef\\x9dF_\\x8e?\\x80\\x9c9256D?\\xa0]\\xa8*\\x93?w\\xbf.#%\\x062\\xa9\\xa6\\xbf\\\\\\xbf\\xa9\\xe6d\\xa6v?\\x9c\\x15\\xd8\\x81\\x0c\\x11\\x88?v~\\xed\\xf9\\xa9\\xb5\\x8b\\xbfz\\x8c\\x82(\\xbb\\x89]\\xbf\\x80\\x18\\xf2\\xf9O=\\n\\xbf\\xee\\xa1\\x99\\xbfw\\x12\\x91?\\xcaj\\xe8\\xdb\\x1f\\x95U?\\x9a0y+\\xb5\\x15g\\xbfW\\xf9\\xd1\\xec\\x00z\\x9a?\\xb8=lon\\xd8\\xa5?\\x16\\xa5\\x81\\x7fD,\\x83\\xbf\\x80\\xe3h\\xe7m\\xe1n?\\xea\\xa1b9\\xf1Zo\\xbf\\x94M\\xdbp\\xbe\\x9d_?\\xaa\\xef\\xb0P))9\\xbf}\\x13\\x98\\xe6(ik\\xbf4@\\x83\\xa2\\xb3O@\\xbf\\xa8\\xb2_\\xfd[UX?F\\xa9\\xcf\\x81\\xb8\\xecY\\xbf\\x88\\xf8\\x92\\x8dx\\xa6Q?(\\xc9\\x80P\\xb2\\xa2|?\\x9d\\x96\\xe2\\xc9\\xb4\\x14\\x7f?\\xd0i\\x1d\\xb0\\xe9\\xa61?\\xd8y\\xf1)\\xf7\\xa5,\\xbf\\xe2\\xd0<\\x00\\x1d\\xe3c\\xbf\\x960\\xe2\\xa9\\xbe\\xe1$?\\xfcm\\x08\\xf6\\x86\\xf8a\\xbf0\\xedS/\\xd8\\xfep?\\x10s\\xben,\\xd1Z?\\xdb0\\xbd\\x88\\xb3\\x14n\\xbf\\xd0Q\"\\x93\\x8d\\xb3g\\xbf\\xc0n\\xb4\\x16\\x13\\x9bS?y\\xb5\\xdbL#\\x96_\\xbf\\x82e\\xe8M\\xba\\xbf{?f\\x96R\\x90\\x00\\x90r\\xbf\\xd2\\x16H\\x8fR\\xdev?\\x1b\\xe0\\xd0Zy*r\\xbf2\\x15\\x1b\\xb8\\x9d\\xd0\\x85\\xbftq\\xd9\\x86\\x05\\xf1y?\\x00\\n}]\\xa2\\x03J\\xbf\\x8c#tf\\x83\\x19\\x80?\\x06Q\\xff1\\x96OU?U\\x1e\\xc0\\x95\\x11\\xe5\\x82?\\xd4\\x16\\xf1\\xe6\\xc9\\xb9E?4\\x0f\\xeel\\xbf\\xf1V?\\xd0\\xfe\\x874\\x06\\x17d\\xbf\\x12\\xae\\x0f\\xed\\xe2\\xbb\\x8a\\xbf\\xe0\\xe6K\\x05H\\x81u?\\xa6\\xb0\\xd4\\xe3\\x86<q?\\x99N\\x9e\\xd8b\\xf9\\x89?\\x96\\xf0\\xa0\\x88\\x96\\xddv?\\x94\\x02\\xeadvK\\x80\\xbf b@{\\xa3F0?\\x8e\\xb8\\x10_\\x98!\\x85?\\x9a\\xca&\\xb8\\xef\\x08\\x92?@,\\xc7\\x88\\xfa\\x0fo\\xbf8\\x1a\\xf2w\\xe2\\x18m?T\\xe8#\\xdb\\xa2\\xd4U\\xbfv\\xd7\\xd1\\x83\\xb9\\xf8j?\\x86\\xae)\\x82\\x1bbf?\\xf0\\xa2C(D>j?\\x8e/E\\xb4\\xb6uo\\xbf\\xdc\\xf7\\x105\\xa4Eq\\xbf\\xcb\\xe9\\x03%\\xce\\xe2p\\xbf( \\xa1\\x89\\xa8bp\\xbf\\x88\\xb0Qf\\r\\x11s\\xbf\\xea\\x9c@\\xa9\\xe2\\xeel?i\\xf8\\xab\\xf6G\\xd0{?le\\x0f\\xf8\\xa8\\xa0\\xae?+\\xfd]>)\\xcfq?(\\x06\\xf2`\\xee\\\\\\x8c\\xbf\\x04MWr\\xd5!\\xa4?`\\xad\\xc4\\x9e\\xedz:?p\\xe6X,\\xce\\xa6\\x86?\\xc0\\xe8\"\\xd2>S\\x9b\\xbf\\xc7\\xef\\xe9fs.\\\\\\xbf.\\x8a^\\x9d<\\xbd[?\\xe6\\xa3\\xdc\\x11\\xc9V\\xb7\\xbf\\x16\\xa5\\x81\\x7fD,\\x83\\xbf\"\\xfa\\x88\\xf1\\x17\\x9d\\x98?`[\\x01w\\xc4-\\xb3\\xbfP\\x8b\\xf3\\x88\\x99\\xb7D?\\x18F\\x8dA\\xaf\\xff\\x85\\xbf\\x8c\\xc3F\\x8co+p?\\x1d\\xd1?\\xbf\\xadVc\\xbfw\\xef\\xb0\\xael\\x00V\\xbf\\x08-\\xd0]\\x8e\\x13\\x8c?\\x8a\\x04\\xf0\\xd3\\x84\\x96\\x85?\\xed\\xb7\\x1d\\x98I:\\x88\\xbf\\xf4j*\\x02{M\\x80?^\\xd2\\xb8\\xa9f\\x90\\x82\\xbf\\xac\\xf3/Ew\\xfa\\x82?B\\xc6\\xa1\\xf9\\x97\\xc1G?\\xd0\\xc7\\x1c\\xe4\\xf4\\x1f\\'\\xbfD\\x92\\xdf\\r>]H?\\x84#\\x1eZ05\\x84?hq\\xe8\\xa9?\\x8c|\\xbf\\xc0\\x85q\\xb8L\\xb5\\x84?\\xd0\\x01\\xbc\\xf5\\x12\\xe5\\x81?\\xd1G[N+\\x8d\\x82?liCh\\xf7W\\x86\\xbf@\\xd3\\x9c\\xadI\\x04B?\\x10\\xa1\\xbaN\\xbb\\xcbB\\xbf\\xf8\\xcd\\xf5\\xfeCY3?@\\xff\\xab5\\xd9\\xebc\\xbfP3:u\\x94\\x93`?\\xc8\\xd3?s\\xa7\\xe1z?\\x00\\xeb\\xbd\\xad \\xb9r\\xbf\\xc0\\x0c?v\\x87\\x8bs\\xbf\\xc5\\xbf2\\x89\\x0eFq\\xbfx)\\x81\\x1db\\xb8b\\xbf\\xeb\\x08\\xda\\xcc\\xca\\x0bt\\xbfPG\\xe1\\x13\"\\xec0?0\\x15\\x183\\xe4wP\\xbf0\\xa2ewg\\xc7r\\xbf\\xc0\\\\\\xec3\\xf1\\x10q\\xbf`Y\\xd8\\xd9\\xef\\xf3b?\\x809\\x01nU9O\\xbf0\\xb8\\x12p\\xc5\\x1b\\x7f?\\xd8\\xdf\\x94C\\xb2\\xa0Y\\xbf\\x10x\\xf3\\xd6*\\x8d\\x86?@\\xa2\\xb8p\\xe6][\\xbf\\xe0P{ \\xbe\\xa3m\\xbf\\x00\\xb3\\xa2\\xfcQ\\x99\\x81\\xbf\\xc0\\x13(\\x01{\\nZ\\xbf{}\\x7f\\xc0\\n\\x02j?\\xc0f\\x9c\\x03<\\xf6;\\xbf0\\xa7\\xb0`\\xb5\\xd7b?\\xe2\\xa0\\xa8\\xf58\\xc2p?\\x00\\xcf\\x7fm\\xb7.P?\\xf8&\\x9bnD\\x00\\x86\\xbf\\xd8\\xe9\\x8e\\xac\\xfd1f?l\\x89\\xab\\x94\\x13NZ\\xbf\\xe0\\xee\\xd4~\\x0c\\xd8r?\\xa0Ba\\x0f\\x98cd\\xbf\\x00u\\xcb\\xdb\\x80\\x89$\\xbf 9\\x0cf\\xd6\\xa9^?\\xb4\\x0cb\\x1a\\xb4/\\xc7\\xbf\\xf6\\xfbb\\xc4w\\xf0\\x8c\\xbf\\xc8\\xf3?K\\x19\\xcf\\xab?\\x80Q\\n\\xa9,#\\xce\\xbf\\xf4\\x9f\\x96\\xcb\\xd4#\\x93?0\\xb3J\\xba:\\xe4\\xac\\xbfT\\x92UC[X\\xbb?\\xec\\xdb&\\x07\\x96I\\x8c\\xbfX0\\xa6t\\xce\\xafe\\xbf\\xec{\\x10&\\xde\\x15\\xd7?\\x80\\xe3h\\xe7m\\xe1n?`[\\x01w\\xc4-\\xb3\\xbf.\\'3\\x92\\xda\\x82\\xdf?;\\x92,\\xb5m\\xc4\\x8d\\xbf(\\xe8\\t\\xf4-\\xb7\\xb0?FQ+\\xe1\\xd5\\x02\\x93\\xbf[\\\\GAx\\xa9\\x93?\\x18\\x9dcU\\x85\\r\\x89?\\xf0\\xf5)\\xec(\\x05\\xa8\\xbf\\xd6\\xe0\\x12w\\xad\\x1b\\x97\\xbf\\x89\\xaeGl\\xfd\\x98\\xab?\\xe0Y\\x92Xu}\\xad\\xbf\\x94\\xd96\\x96)\\xe4\\xa5?\\x14\\n\\x90\\xb8tb\\xae\\xbf\\x82C-\\xea\\x8aK\\x84\\xbf\\xa0\\x1f\\x18\\xaa\\xdd\\xeai\\xbf<6o\\x98D\\x11r\\xbfHC$\\xb3\\xdc\\xde\\xaa\\xbf\\xb8\\x9a\\xa6\\xeb\\xb0z\\x99?\\x1e\\xc9\\xbd\\x8fl\\xb9\\xa4\\xbf\\xf0\\xb3\\x8f\\xb0+8\\xa5\\xbf\\x91k\\x1d\\xbb/\\xd4\\xa9\\xbf\"\\xf4}LR\\x95\\xb2?\\xc8>g\\x7fS?x?\\xa8\\t\\xe7\\x01X\\xef\\x86?\\xf6\\x95I<U\\xe2\\x89?\\xf85\\xd2\\xd1{x\\x80?0\\x94\\r\\xf4S6\\x91\\xbf \\xaf%L.&\\xa0\\xbf\\xb0s\\x91\\x9f+O\\x8f?0\\x94\\xd7f\\x85U\\x9b?\\x18\\xf8\\x15\\xa7\\xd8b\\x98?\\xb0F\\xf0\\x92\\x0f\\x1a\\x97?\\xef\\xef\\xceV\\xd6M\\x95?a/\\x9f\\xb8\\x10L\\x8e\\xbf@\\xa0\\xd4fu\\xf4v?\\x00~\\xb0;b \\x82?p\\xab\\x9c\\x89\\x11H\\x9a?\\xb0\\xcf\\x04k\\x8a\\x0c\\x89\\xbf\\xe0\\xd0\\t\\xf5\\xfb\\x86\\x8f?8\\xff\\xffQ\\x85=\\xa4\\xbf\\x90\\xd5\\xda{\\x99\\xc1~\\xbf`p\\x93\\xb8:\\x18\\xa9\\xbf\\xe0\\xb9f\\xb1\\x15\\x96\\x8c?`~\\xcc\\xb7 lz\\xbf\\x00sx\\xbc\\x06\\x0c\\xac?\\xe0\\x0c\\xe0\\x11\\x90\\xfd\\x8c\\xbfm\\xc3H:\\xf1F\\x7f\\xbf \\x08\\xd6H\\xf0\\xd9p?\\xa0(\\xf7\\xa0\\xed\\x13\\x83\\xbfv\\x0b\\xbd\\x7f\\xde\\xfe\\x97\\xbf\\x80\\xa2Wf\\xd7FN?\\x90-\\x86\\x7f\\x064\\xa1?0\\xcf\\xca6_)\\x98\\xbf\\xb7=\\xb3KJ\\xa2\\x88?XT\\xaf\\xb8\\xd8\\x97\\x92\\xbf\\x00\\x1a\\xb8\\x9d\\xbb\\x05\\x89?\\x10!(\\xf7\\xbe\\xd2v\\xbf`\\xbdQ\\xc6\\xc3x\\x90\\xbf\\x80\\xe6\\xaa\\n\\xff\\xb8j?\\x8f\\xe68\\xd6Z\\x85J\\xbfj\\xeci\\xb2DV\\\\?\"G\\xbe\\x03V\\xcf\\xa0?\\n\\x10\\xb1\\x0fZ\\x17p?\\x99\\xae\\x9f\\xd2\\xf29j?\\xa5\\xda\\x9b\\xff\\x1bD\\x93\\xbf\\xc8i:\\x0b\\xa2\\xde_?\\x9c[\\xa2\\xfe\\x88Hp\\xbf\\xa7\\xf5\\xd7\\xd9tg\\x7f?\\xea\\xa1b9\\xf1Zo\\xbf\\\\\\x8b\\xf3\\x88\\x99\\xb7D?=\\x92,\\xb5m\\xc4\\x8d\\xbf\\xa4\\x94\\xcbMx.\\xa2?\\x14\\xd0\\xf23\\x18O\\x81\\xbf\\x88nws\\xd7\\xb1D?0a\\x9eP\\xdc~u\\xbf\\xa0\\xb5V\\x17\\xae\\xc1U?-\\xeb\\xde\\xd8\\x1e`z\\xbf\\xa1\\x92\\xfc$p\\xd8r?\\xaau\\t\"\\x0e:\\\\\\xbf\\xf0\\xcd\\x10\\x9f\\x8e5\\x1d?\\xc2\\x03`B+\\rw\\xbfHIF\\xb0\\xe6\\xda\\x82?\\x8a\\xe6\\xf3\\x0b\\x08+c?Q\\x13\\xa2\\xd5)\\x91a\\xbf\\x97\\x1b\\x8e\\x8e\\xa9\\xc5U\\xbf \\xd2\"m\\xd5H:?\\xa0\\xcbY\\r1\\xd6!?i\\xd3i\\x1b\\xde\\xb7y?\\x80\\xc0\\xe0\\xb2m\\r\\x80\\xbf\\xc4\\xda\\xa7\\x9d\\xfdc\\x89?\\x82\\x93\\xbd\\x93\\x02a\\x8e\\xbfK\\xe2v\\x96\\xf6\\xe0r\\xbfsX\\x01\\xc8\\x81n\\x7f?\\xea`\\xcb\\xc7\\x1ae[?y\\xd31\\x01O?h\\xbf\\xe3I\\x99\\xd30\\x98`?\\xe7{\\t\\x03>gz?\\xffG\\xb7\\xab\\xcd\\xf3{\\xbf\\x03\\xa7B\\x1dz-\\x82\\xbf\\xdd?\\xbc\\xb3_\\x10t\\xbf>\\xfd\\xe9\\xc3\\xa8\\xe76?\\xaa\\x93\\xfal^\\x7f}?-\\xb9](\\xcc<j\\xbf\\n\\xb2\\xc8\\x16\\xd6\\x8a\\x81\\xbf\\xf7\\x89\\xf6%\\x9f\\x1fs?HKqw\\xc2\\xdf\\x91?\\xd7\\x9a\\xa0\\xf4K\\x07Q\\xbf\\xd2\\xeeB\\xaas\\xbbr\\xbfj\\xc7\\xbb0\\x8b\\xb5\\x8e\\xbfBP\\xfb\\x0b\\xe0\\x06|\\xbf\\x0eL\\xbdf\\xdc\\xc0\\x97?#\\xd58\\x89\\x16\\x9e\\x8c\\xbf\\xfcM\\xbf\\x1f\\xdd\\xa4\\x84\\xbf8\\xb0<\\xa7\\x98\\xbb[\\xbf\\x82\\x87m\\'\\xd4\\xf7e?\\x11\\x9agqf&s?`\\x9c\\xfd\\xc80Gf?NP\\x9ez\\xed\\x04b?\\x1a2\\xe9Harf\\xbf\\xa4\\x10\\xe0\\xb32\\xf4U\\xbf\\xa6\\xf6M{\\xbaUn\\xbf\\xca\\xc1\\xdd@\\xd0\\xa3g\\xbf:\\xba\\xd7+x\\xbb[\\xbf\\xf7&!*#\\x0bw\\xbf%\\x9cW\\xa1\\xb2@u\\xbf\\x80\\xf7\\xbe\\x16\\xf8\\xb0\\xf9>1\\xf7\\x1a\\x00\\xfe0\\x7f?\\x94\\xbeX\\xc3\\xdbY\\x9b\\xbfP\\x04\\x84\\x88\\x9b{@?N@Kj\\xd0\\xca\\x86?\\xa4}\\xc7\\xe4\\xddN\\xa7\\xbfT\\x1c\\x82\\xc4\\x9d\\xb4V?\\xa8]\\x7fN\\xc9\\xd3\\x83\\xbf\\x84\\x81\\x0e\\xadc\\xf7\\x92?8ZZ\\xdd\\'\\xa5k\\xbf \\xf7\\xb9w\\xe6\\xa7\\x18?d\\xdae\\xa6 \\x8c\\xa5?\\x90M\\xdbp\\xbe\\x9d_?\\x18F\\x8dA\\xaf\\xff\\x85\\xbf(\\xe8\\t\\xf4-\\xb7\\xb0?\\x14\\xd0\\xf23\\x18O\\x81\\xbfTe\\x92\\xb5\\xbd\\x9e\\x8f?Z\\xd7\\xe4\\xa8\\xb5Nc\\xbf\\x10BW\\x0e{El?\\xd4\\xb8\\xf9\\x0b>6X?\\xd8h\\xa9ElGv\\xbf\\xc4)\\x1b\\xfa\\xbc|d\\xbf\\xd4\\xe2\\xdf\\x06\\x97Ft?\\xf6\\x1cV\\xad\\x07g\\x84\\xbf|\\x12\\xe3\\xe9o\\xf3~?\\xc0\\x95_\\xfd\\x1b\\xa3}\\xbf6&\\xcc\\x07\\xef?U\\xbf\\xd8@\\x9c^\\xe3\\xc2H\\xbf`\\x84\\x85\\xc3-\\xd4\\x14\\xbf\\xa0\\x9d\\x7f\\xf3,\\xa9~\\xbf\\x10\\x91\\xb0*W\\xc2e?\\x10+5\\xc9N{\\\\\\xbf0\\x97x\\x19\\xf8\\xb7d\\xbfp\\xaa\\xb1\\xfaR\\x04\\x7f\\xbf\\xa0!`\\xb7\\x87\\x84\\x80?$\\xf6 \\x9b\\xe5\\xb3b\\xbf\\xf8#6jZCi?\\xde\\xf6TL\\xc7K]?\\x10\\x02\\\\qP\\x05c?\\x00p\\xee\\x12>%9\\xbfL\\xf0\\xd6Na\\xf8x\\xbf\\xe01\\xb4\\x17\\xc4\\x04o?\\xa0\\x82\\xbd\\xb9pu`?\\xf8U\\x93\\x1a\\n^s?\\xc0\\n\\rjs\\x1bM?\\xaa\\x0f\\xfc\\xab\\x89\\x8bY?\\x04\\x92r\\xe8\\x9d#T\\xbf\\x8cp\\xaf\\x10\\x95\\xa5s?\\xd0\\x865?\\xce\\xc5o? 4\\xcf\\xb8\\xfd\\xc2Y?\\xa0\\x02\\xaf\\x8b\\xb7>D\\xbf\\x80\\x9e\\x8d.y\\xc4A?\\xa0eU\\x0c\\x95\\x7fu\\xbfT\\xa7\\x1a\\xf3\\xads^?p\\xcd\\x15\\xcf\\x89\\xea\\x83\\xbf\\xe0\\x1e\\xf6\\n\\xc3{U\\xbf\\x18\\x1b\\xf7\\xcb\\x1dbb?\\xd0\\xd5\\xb1\\xcf\\xed\\x07\\x85?@\\x9f\\xe3\\x10\\x13u^?Vf\\xdc\\xed\\xdf\\xcfc\\xbf\\x00\\x17\\x10\\xac\\xb2\\xa7E\\xbf\\xa8\\xfe\\x08\\x05\\xf0\\x85d\\xbf\\xc0,\\x83<t\\x1bt\\xbfH\\xc5\\xb4\\xe8cO]?d\\xdfU\\xf0\\xdf\\x97~?\\xa4,\\xb0pM\\xa2w\\xbf\\xdd\\xe9\\xbdp :X?\\xc0\\xc6\\x02C\\x9fvn\\xbf\\x80\\xa6\\xea\\xdf\\x9fR;?\\xa0\\x93\\x95vS\\xe3G\\xbf` \\x01\\xa7\\xbe\\x1dO\\xbf\\\\\\x91\\x1b\\xcfX\\n\\x88?\\xd0\\x94\\x98\\xbf\\x9c\\xd4H?\\x90\\x7fe)\\xee\\xefR\\xbf\\xdc\\x04\\xe3\\xd0!>\\x80?\\x1c\\xfc\\x0c\\xd27\\xc73?\\xf0\\x04\\xf0q\\xfbe2\\xbf\\xa0,\\x1c\\xe2\\xbe\\x1cR\\xbf\\xca\\x14\\xf7\\x9b\\x13a\"?[a\\x97o^\\x94S?\\xb4\\xe1\\xaa\\x99~\\xaf\\x92\\xbf\\xaa\\xef\\xb0P))9\\xbf\\x8c\\xc3F\\x8co+p?FQ+\\xe1\\xd5\\x02\\x93\\xbf\\x8anws\\xd7\\xb1D?Z\\xd7\\xe4\\xa8\\xb5Nc\\xbfs\\x8fE\\xbfcI\\x91?\\x08\\x8b\\xc0\\xc9\\xd9\\x10-?\\x1a\\xda\\xbctH_\\x10?\\xfcL\\x88fHa\\x80?!+p\\x86\\x92\\xd4h\\xbf\\xce\\x8edj`\\xafw\\xbfHZ\\xf2\\xc6|\\x91\\x7f?\\x9c\\xd2\\xaeT&\\xc6V\\xbf\\xd8\\x90\\xe3\\x12\\xdf\\xe9i?\\xd6\\x91\\xe7\\xa7\\xf30C\\xbf\\xc4\\xd3m[\\xc6r8\\xbf\\xe0_6\\x9dP\\x02\\'\\xbf\\x80\\xb1\\xa4\\'Yg*\\xbfG\\xceP\\x0f9wt?\\\\\\x89Vw\\x0c\\xebt?XPu&\\xa5hA?)\\x1a\\xb3.]\\xf8w?\\xf7\\x1b\\x07\\x9b\\x95\\xeap\\xbf\\x16\\xb0(i`\\x02~?Mv{\\x08\\xa1\\xd7P?!\\xc0x\\xe3Y\\x80I?\\x18\\xa2\\xa0\\x92\\xbc\\xe7p?`\\x16E\\xb0\\x80\\x04T\\xbf\\xbe\\xe2\\x0f\\x19\\x14h{\\xbf\\xe5\\xa5\\x99\\xb0\\xfd?k?0T\\x96\\x08\\x17\\x11_?\\xe6\\x9c\\xd3\\xe3\\xea\\xdbp?\\xa2%\\x07\\xcd1\\ra?\\x83\\x07\\x1d:3\\x14A\\xbf\\x13\\x14\\xd3\\x8ek\"d\\xbf\\x02\\xf9\\xfb\\x1a\\xab\\xdbs?\\xa8\\xb2\\xea\\xb7\\xa4\\x9cR\\xbf\\xc0\\xc5\\x07M\\xf8\\xf5\\x87\\xbf\\x18\\xd5\\xdc\\xe3\\x90\\xd7C?\\xd88\\xdaj1vQ\\xbfDi4\\x9aJ\\xb4k?\\xd8\\xc0\\x9c1CV\\x7f?v\\x9eyx\\xfe\\x12\\x8d\\xbf\\xfc\\x12\\xd5\\xdd\\xa6\\xffk?\\x11\\x15\\xcc\\xc31\\xcam\\xbf@P\\x1cn\\x07n\\x8d?\\xb0<\\r\\xfd\\xf5\\xf1s\\xbf\\xa04\\xb8b\\x0c\\x98c\\xbf\\xd2Q\\xcctb\\xedg?X%t\\x80O\\xec\\x85\\xbf:\\xcf\\xc7\\x13,\\xbaT\\xbf\\xb0\\xb9\\xfer\\xc6\\xc4b\\xbf*\\xf9\\xa5\\xd0\\xba\\x0c}?\\x06\\xe4\\xf6L\\n}a\\xbf\\xe4\\x96o-\\xb9zb\\xbf\\xb0\\xdajw]E:\\xbf\\xfe\\xc8y\\x0c\\xfe\\x90m\\xbfl\\x08V\\x03\\x98\\tO?\\xc2\\x12\\xb9\\xca\"\\xear?>\\xd9\\xe0\\x1e\\x98H\\x7f\\xbf\\xceOm\"\\x164f\\xbf\\xd0K\\xab\\x9cV\\x197?\\x02\\xc9!\\xf2\\x85\\x9c\\x91\\xbfL\\xf6\\x1eo\\x1e\\x03\\\\\\xbf\\x81<\\xed\\xca\\xe8$\\x81\\xbfr<0\\x91%\\r\\x7f?/\\xe8`\\xcd\\x8b\\xf35\\xbf\\xdc\\xb8\\xb5\\xa9W\\xcfu?$\\xe4]\\xc4\\xb7iz?{\\x13\\x98\\xe6(ik\\xbf\\x1d\\xd1?\\xbf\\xadVc\\xbf[\\\\GAx\\xa9\\x93?2a\\x9eP\\xdc~u\\xbf\\x12BW\\x0e{El?\\x08\\x8b\\xc0\\xc9\\xd9\\x10-?\\x1c\\xa8\\x0b\\xa6\\x0e\\xe2\\x86?\\x9e@\\xea;n\\x85p\\xbf\\xd0\\xa3Z\\xe1\\xcf\\xe6L?\\x0e\\xfc\\xc1\\xa9c![\\xbfw\\xbe\\xa8\\xa3:\\x03`?hN\\xc6\\x85\\x1c4R\\xbf\\xf8\\xf9\\x9b\\xe3\\xd1yB\\xbf\\xa4\\xa2M|\\xaa#a\\xbff\\x9bv\\x93\\xec5[?\\x9a\\xbd\\x1e\\x0e2\\xaal?&1\\xcc[\\xe9MU\\xbf&\\x06\\xa4\\x19\\xe0\\x8bz\\xbf\\xa0=R\\x05n\\xc5o?\\x16\\x12\\x86{\\x83\\x99V?\\xac\\xa3\\x8d\\x13o^e\\xbf{\\xf4\\xc93U\\nm\\xbfH\\xcc\\xf8\\x98\\xe2\\x96\\\\?v\"+\\xf4 Zl\\xbf;\\xfaY\\x15Uw\\x82\\xbf-\\xe0\\xcbVNOg?lj\\xe0\\xdbA\\x89r?\\x96\\xc3\\xc8\\x15\\x9e|\\x94?\\xf7@\\xeb(\\xbf>\\x8d\\xbf\\xc6J\\x9d\\x96\\x1a\\xe9t?\\xec\\x054\\xb0\\xa4\\x97d\\xbf\\'\\xf8~\\xc1=st?\\xd4\\xe0.\\xda\\x80zF?\\xdeh\\xa3Q\\xa2\\x89A?6\\x14D\\xba\\xcdDe\\xbfo\\xca\\x9f\\x13k^\\x8d?\\x11\\x04\\xd2\\xa3\\x91\\xbd\\x88?z\\x95\\xa7K9\\x9d\\x94\\xbf: \\xc1AH\\xa9f\\xbf(\\xad\\x8be\\x1e\\nV?(\\xb9RkA\\xfc|\\xbf\\x90.\\xee\\x97Fd\\x84?Bj\\x90L\\xb2f\\x93\\xbf]\\xe0\\x16\\xfe\\x01\\xdfr?\\xf9\\xac\\x92Z\\xf3\\x92e\\xbf\\xc4y(;\\xe0\\xa8~\\xbf{\\xb2\\xcf\\xdb\\xc7\\x06\\x84?\\x189 k\\x9fw\\x89\\xbfp\\x81}\\x8c\\xd1\\xe1&\\xbf@\\xfa\\xd3z\\x11\\xf7>\\xbf\\x9a\\xe8\\xe9\\x0e-M\\x82?\\xf8\\x14\\x01\\xe1j\\x962?\\x0c\\xac\\xe5f\\xe5N\\\\\\xbfH\\x1e\\xef0\\x03\\x0fO?\\x0e\\x0f\\x0fO\\xc9\\xb83?\\x14\\x94\\xb69)@X?\\x80[\\xee\\x13\\xfe:\\n?\\nb\\xb3\\xa7G\\x04^\\xbf\\x9eq0\\x00\\x9b\\xe8g\\xbf+\\xbb\\x1b\\x9b\\xae\\x11`?\\x88\\xb4#\\xa9\\xc80\\x07\\xbf\\xf0%\\xbbhu\\xe5^\\xbfX\\x15\\xcb\\xe69Fc\\xbfI\\n\\xdd\\xe30\\xdfj?\\xca\\x1b#\\xda\\x81\\xfc9\\xbf`\\xa1u\\x15)\\xfbd\\xbf\\x04%7P\\xa6v>?l\\x8a$\\x1fY`[\\xbf\\x84\\xa4\\x99\\xf1\\x89\\x95\\x83?2@\\x83\\xa2\\xb3O@\\xbfv\\xef\\xb0\\xael\\x00V\\xbf\\x18\\x9dcU\\x85\\r\\x89?\\xa3\\xb5V\\x17\\xae\\xc1U?\\xd4\\xb8\\xf9\\x0b>6X?\\x16\\xda\\xbctH_\\x10?\\x9e@\\xea;n\\x85p\\xbf\\xd6\\xcd\\xa9Z}\\n\\x88?M\\x0ePe\\x91Ks\\xbfjM\\xb0!\\xf9\\x81[?\\xa9\\xfe\\xde.\\xdfga?\\xbe\\xcfR\\xf9\\x13<f\\xbf\\xb4\\xad\\xe1\\xa5\\xcf\\xe2U?\\x94\\xa0\\xbb\\x81\\xa0CJ\\xbfo\\x85\\xd31zS5\\xbf\\x95\\xd0\\xba,e\\xedX\\xbf\\xf5R\\xb1\\x8e\\xf8\\x14l?\\xd1\\xdd\\x97\\xd8\\x0b\\x1bb?\\'U9\\xfct\\xc9e\\xbf)Z\\xa2\\xd7\\xb1\\x9cI\\xbf\\xa9S\\x15AuXc\\xbf\\x84\\\\\\xb7\"\\xbd\\x95T?C\\xc2\\x0b\\xcd\\x98\\xe5^?\\xda\\xfe\\x11[\\xe0:F?\\x9a\\'\\xc1\\xdd\\xca\\xf5\\x85?\\x94Y\\x1b3\\xba\\x9dh?(\\xe7\\x81\\x9eu\\x1a0\\xbf .,\\xd0_\\x08k\\xbfS_\\x94\\xd3l\\x95v?\\xbak\\x8e3T\\xf4L?\\x1e]\\xba\\xf3\\xe9\\x89u\\xbf\\x08\\xcc\\x06\\xae6\\xfe\\x8b?\\xa2\\xb9\\x96\\x85\\x96sp?H\\xe1\\x90u\\x1a\\x16q\\xbf\\x06I\\xc3l\\xb05_\\xbf!{\\xb07\\x97\\x9e~\\xbf\\xc5\\xd7{l\\xc10^\\xbf\\xcd\\x04\\xbd\\xe44\\xc9\\x8a?\\xdf\\x89\\x08X\\xf6\\xda\\x86?\\xa8\\x92\\xd8@&\\xb5h\\xbf\\xd1\\x11;\\xafT\\xcf\\x8d?D))&k\\xe9y\\xbf\\xc5}&\\xcb\\x97\\xfb|?\\xe2\\xa6\\xbe\\x99\\xa6\\xfep\\xbf6\\xb6\\x01\\xea6@g?\\x18\\xff\\x8c\\x91\\x17\\xf4\\x8a?U\\xdc\\xd6>F\\x0b\\x81\\xbf\\xc1N\\xcbh\\xc6\\xe1~?\\xd4\\x86\\x8c\\xe2B X?\\x0e\\x95R\\xbb\\xa6\\xacQ?\\x95`\\xd0\\x12\\xfcc}\\xbf\\xd5\\xb9\\xf1\\xc7I\\x94/?@ \\x98E\\xad\\xe8@?E\\xee\\x15\\x17\\x1c\\x96b\\xbfo\\x1e\\xc4\\x02\\x89m[\\xbf\\xeb\\x99\\xa1i\\xc5\\xc6t\\xbf\\x89m\\x86\\xb9\\xd5U`\\xbfcKWBQea?\\\\\\xb3\\x8agi\\xeep?<?\\xdc\\r\\x18~\\xa3?\\xd6\\x9dg\\xf7\\x19\\xb9}?\\x1c\\x17\\x15GX\\xdb\\\\?nf\\xf0E\\x98\\xb0\\x99?\\x8f&\\x80b\\x03\\xc1}\\xbf8E\\x18: \\xa7B?\\xdc\\x8d\\x1c(\\x03\\xf0\\x91\\xbf\\xf8\\x00\\xd2\\xc6w\\xd4a\\xbf\\x95\\xf2\\xec\\x12>#f?t(\\xb2\\xe7\\xf5o\\xb0\\xbf\\xa2\\xb2_\\xfd[UX?\\x08-\\xd0]\\x8e\\x13\\x8c?\\xf0\\xf5)\\xec(\\x05\\xa8\\xbf-\\xeb\\xde\\xd8\\x1e`z\\xbf\\xd8h\\xa9ElGv\\xbf\\xfcL\\x88fHa\\x80?\\xd1\\xa3Z\\xe1\\xcf\\xe6L?M\\x0ePe\\x91Ks\\xbf\\xc7\\xec\\x06#W\\x0e\\xb3?\\xcc\\xb7\\n1r\\xf5q\\xbf\\x97\\xd7\\xda5\\xc8\\xf7\\xa0\\xbf\\xb1V\\xacLi@\\xa8?u\\x83\\xe4u\\xd9$c?0\\xd0G\\x92\\xe3\\xb9\\x85?\\xe5(/E\\xf5\\x15;?\\xec\\xf1\\x0bo\\xcfv:\\xbfy\\xd1BM\\x99\\xbc0\\xbf\\xa8\\x99J\\xd8`\\xdf\\x87\\xbfMj!\\xce\\t\\xd6c\\xbf\\xdd\\x9e.\\xb5\\xddM\\x86?\\x00N<\\xc3\\xab\\x1f\\x7f\\xbf\\xc0\\x91\\xe8\\xbe\\xa5\\x804?`\\xf8q\\x8f\\xbeRn\\xbfG+Q\\\\\\xe9\\xe1\\x89?\\xd7k\\xaf\\x1a\\x7f4d\\xbfq;l\\xf8K\\xf8\\x7f\\xbf\\xc8\\xba\\xe0\\t1\\xc8a\\xbfjy\\xa9\\rAA\\x89?\\xf9\\xda,|\\xce\\xc5\\x8a?\\x8c\\xba\\xedV\\x99\\x1c[\\xbfK8\\x8a\\x1a\\xbf\\xfc\\x89\\xbf\\x12W\\x0e\\xc9\\xd3\\xbc\\x90\\xbfD\\n%\\xbcT6y\\xbf\\x98cAO\\x1f\\xf0\\x83?\\xe8\\xe7\\xa1\\xd2.Gh?\\xf6H\\x10\\xf6#\\x83w\\xbfRd\\xe7\\x97\\xefR\\x7f\\xbf\\xde\\xecQVG\\xaf|\\xbfpk\\xa03\\x0e\\xb4:?0\\x07\\xfc\\x14\\x8a\\xa2O\\xbf\\xe8*g\\xe2$\\x8d~?\\x12\\xe4\\xa3\\xf6\\x0e+\\x80\\xbf\\xe4\\x9a\\xe7qYw\\x8a\\xbfT\\xe1\\xa7Fdp\\x87?\\xa0\\t\\xcfi\\xca\\xe86\\xbf\\x1c\\x9e\\xd8\\x9a\\xbb\\x00\\x84?R\\xeazw[\\xb2r\\xbfC\\xa6\\xc5\\x80\\x1a\\x92\\x82\\xbf\\xbc\\x99e\\xc4+\\xdeE\\xbf\\x00\\xc8q\\xb6\\x89Y\\xc3\\xbe\\x8a\\xbd\\xa2\\xcf\\xfd\\xa9f?\\x08\\xd8\\x82h\\x00.5?\\x96\\x9d@\\xcf\\r\\to\\xbf\\xcc\\xa34\\xaavor?0\\x0c\\x9f\\x8b\\x98I:\\xbfL\\xf0!\\xba\\xe6Hz?\\x06\\x15\\x91w\\x97\\x97b?\\xbd\\x0b\\xeb\\xf5\\x12?d\\xbf\\xa0\\x9d\\x1a2\\x81\\xcd3\\xbf\\xb7\\xfdT\\xd5\\xe1!\\xa0?\\xefA0\\x01\\xde\\xb8d?\\xb02\\x0c R)\\x80\\xbfx\\xb2\\xa0\\xe1\\\\,\\x93?\\xea\\x08~\\xc9\\xbf\\xd8R?\\x13OX\\xf54Vt?C\\xd4\\x88\\x89j9\\x92\\xbf\\xba\\xa4AK\\x02\\xd2L\\xbf\\xb0;\\xc6X\\x04.<?\\x17\\xd3\\x90o\\xff\\x82\\xa2\\xbf@\\xa9\\xcf\\x81\\xb8\\xecY\\xbf\\x8a\\x04\\xf0\\xd3\\x84\\x96\\x85?\\xd4\\xe0\\x12w\\xad\\x1b\\x97\\xbf\\xa1\\x92\\xfc$p\\xd8r?\\xc4)\\x1b\\xfa\\xbc|d\\xbf!+p\\x86\\x92\\xd4h\\xbf\\x0e\\xfc\\xc1\\xa9c![\\xbfhM\\xb0!\\xf9\\x81[?\\xce\\xb7\\n1r\\xf5q\\xbfNo\\xb0\\xbd\\xc1\\xe3\\x96?T\\\\6\\xfbx\\x10f\\xbf\\x0c\\xc1\\xf3\\xdb\\xfaLz\\xbf\\xaa\\x1b\\x01,\\xcc\\xc6\\x89\\xbf\\x16\\xa3\\x17r7\\x80r?Tu\\xec\\xf2L\\xe0[?63\\xeb[\\x04\\xbbH?\\x0c\\\\=\\xe8\\x1b\\xc3O?\\x06>\\x1cB\\xb35\\x81?gt\\x8d+z\\xed\\x87\\xbf@\\xc2\\xcb\\x08{\\xa0\\x84?\\x1c7\\x19\\t\\xdc\\x07u?\\x06yZ\\xc4\\xe4\\x95\\x7f?\\xd8eQ\\xfd\\x7f\\xd6\\x84\\xbf\\x87\\x0c\\x1d^\\xe7\\xdal\\xbf\\x04\\x83`9wK\\\\\\xbf\\xfc\\xd5\\xde\\xf6;\\xb6H?\\xcb8\\x1b$FFs\\xbfH\\x8d\\xb3W:\\xbcZ?A\\xd5 \\xbc\\x91\\xe5\\x8a?\\xdc\\xd8\\x89\\xbe//w\\xbfP\\xe5#~\\x1c\\x14j\\xbf(\\x99\\x1cpC\\xed{\\xbf\\\\\\x8d\\xa7\\xa8\\xe5\\xd3b\\xbf#O\\xa6\\x9ct\\xf3s\\xbf\\x83\\x9d\\x88\\x9d\\x06\\x83X?\\xd8M\\xa2\\x05r\\xaeu\\xbf\\xf0\\xeb\\xcaq\\xf1\\x9b\\x7f?\\xcdY.\\x89\\x98\\x89\\x95?4\\xede/\\xcf\\xf1`\\xbf\\xb6b,\\ng\\x82u\\xbfy\\xe1\\x07U\\\\\\x15\\x8a\\xbf\\xd4X\\xd1\\xa7g\\xeb\\x8c\\xbf\\xd1\\x0e5\\xdc\\xa0\\xf1\\x9b?\\x99R\\x05\\xeb\"\\xa1\\x8f\\xbfL:\\xd9L\\xf4\\xc5\\x7f\\xbf\\xb3\\x1cO\\xa2t$\\x99\\xbf\\x92z\\x17U\\x81\\x9b\\x85?\\x90\\n\\x83Z\\xe3\\x11E?\\xe0\\x99\\xd6E\\x8f\\x03.?He9\\xe6f\\x08V?\\xf8\\x1e\\xc4\\xfb\\xc1\\xd8T?\\xf0\\xceO1*\\xa6T\\xbf\\x98>K\\xf6\\x9flc\\xbf\\x10y\\x84\\x94\\xd6\\x13B\\xbf8\\xf2\\r\\x8dZ^T?\\x18B.\\xc1y\\xcab?`\\xfcXO\\x04\\x80`\\xbf3F%6\\xaccd\\xbfq\\t}8<\\x1dp\\xbf\\x84\\xeao8\\x8cH\\x9c\\xbfR\\xd2\\x10\\x8d\\x93\\xad\\x84\\xbf`\\xc4\\x85\\xf7\\r\\xa7\\x83\\xbf\\xda\\xd0A\\xb2\\xcaG\\x95\\xbf\\x96\\xc5\\xa2rQ*y?\\x80@\\xa3H7\\x0br?\\xecye\\x0fmZ\\x90?[\\xc1\\xb3\\t\\x16HR?\\xc4a)\\x00u\\xc0V\\xbfR\\x8d\\x86\\xae/\\xa4\\xae?\\x8c\\xf8\\x92\\x8dx\\xa6Q?\\xed\\xb7\\x1d\\x98I:\\x88\\xbf\\x89\\xaeGl\\xfd\\x98\\xab?\\xaau\\t\"\\x0e:\\\\\\xbf\\xd4\\xe2\\xdf\\x06\\x97Ft?\\xce\\x8edj`\\xafw\\xbfu\\xbe\\xa8\\xa3:\\x03`?\\xab\\xfe\\xde.\\xdfga?\\x98\\xd7\\xda5\\xc8\\xf7\\xa0\\xbfT\\\\6\\xfbx\\x10f\\xbf\\x12NF3\\xad\\xd0\\xa1?\\x91Z\\x1a|\\xfdX\\x94\\xbf\\x04P\\x95\\x85\\xaezx?\\xd9M\\t\\x89\\x93P\\x92\\xbf\\xbb\\x81\\x00A\\xf5xF?\\xfc\\x1dd\\xeaI93?\\xa8\\x9ch\\xe3\\xba\\xb2V\\xbfp\\x9c\\xfc\\xf9\\xa8]P?Di\\x9a\\x0b\\xd1\\xe0{?%8\\x9b\\xeb\\xa6\\x1c\\x9e\\xbfL{\\xb7\\xeb!\\x1bf?H\\x9f\\xf9\\xd8Q\\xc2|\\xbfD\\x8a\\xf6\\x973v\\x96?h\\xad\\x98\\xee3\\x99q?D\\xfe\\x1d\\xaa\\x0e\\xd4R\\xbfP\\xd7\\x91\\xfe\\x03\\tq?\\xb0\\x81\\xbc\\x81q\\xcfe?\\\\c\\xfa\\xa0\\x1diw\\xbf\\xc2\\x16\\x9eU\\x1d\\xbd\\x8c\\xbfN}\\xb6\\x08yIs?\\xbc\\xb1#\\np8\\x80?\\r\\x9b\\xdd\\x04\\xe2|\\x8f?Y\\xfb\\x12\\xa69\\xd6\\x87?\\xaeDS\\x84(uR\\xbf\\xe7\\xc9>\\x1c\\x8c\\x13j\\xbf\\xd8Z\\x02\\xda\\x0b\\x1fq?\\x90\\x06\\t~\\xb7Zq\\xbfT\\xb1\\xb5\\xa3n\\xbe\\x80\\xbf\\xc4\\x83c\\x1f\\x96 v?x\\x81\\xa5l\\xc9\\x05s?\\xb4\\x93\\x98\\xb3i9\\x82?\\x95\\x93\\x08 \\xc3Q\\x83?\\x00\\x1f\\xc1A\\xd740?p8{\\'\\x1ehf?\\x90\\xbe\\xc8\\xad\\xe6\\x11\\x82?\\xf8\\xbb\\xb7\\xa7[9\\x86\\xbf\\x80\\xc1K\\xff;>R\\xbf\\xd2%iBY\\xbcr?\\xb8\\xe8\\x83lo\\xcbi?\\xe8&k\\xe6dHf?,\\xff\\x15\\xc9i\\xc6r?d\\xacQ\\x19\\xc7<m\\xbf\\xe0@E\\t\\xc6\\x8ac\\xbf\\xb8e\\xb0\\xfdI\\xeaS?h\\x11M\\x7f\\xba\"7?\\x10\\xd9\\x8f]S<e\\xbf\\x90\\xe4[\\xfcp\\x1cZ?\\xee3\\x8dH\\xd8%f?@\\\\3Q\\xbd\\xed:?\\xc1\\x87j\\xdd\\x98\\xb1\\x99?\\xc7!\\xdd\\x83\\xc5\\xafw?\\xfb\\x17\\xa7\\xd0f\\x02r?B\\x1f\\xa55\\xde\\xb2\\xa1?\\xb6cs U\\xf9\\x85\\xbf\\xf0\\x89\\x93\\xba\\x18Qk\\xbfT\\x9b\\xf70\\x1aq\\x90\\xbf\\xfc\\rv\\x06\\x97\\xa9S?\\xe0\\xb4\\x9d7\\x95\\xebI\\xbf|G;y2l\\xa4\\xbf(\\xc9\\x80P\\xb2\\xa2|?\\xf4j*\\x02{M\\x80?\\xe0Y\\x92Xu}\\xad\\xbf \\xce\\x10\\x9f\\x8e5\\x1d?\\xf6\\x1cV\\xad\\x07g\\x84\\xbfDZ\\xf2\\xc6|\\x91\\x7f?fN\\xc6\\x85\\x1c4R\\xbf\\xbe\\xcfR\\xf9\\x13<f\\xbf\\xb1V\\xacLi@\\xa8?\\x0c\\xc1\\xf3\\xdb\\xfaLz\\xbf\\x91Z\\x1a|\\xfdX\\x94\\xbf\\x9df`\\xe3\\x07\\xfa\\xb2?xiC\\xab%\\xb9d?`\\x98\\x90\\xcf=\\x15\\x99?\\x8d\\x81G\\x08\\xdc#b?\\xf8\\x0568\\x95\\xbfW\\xbf\\xf8\\xa9\\xb8\\x90\\xafb;?\\x84\\xbb\\xab\\xb0\\xbb\\x7fv\\xbf\\xd8\\xac\\xed\\x88\\xb4\\xc6Q?\\xffL\\xfa\\xbe\\x87\\xbar?\\xf2\\x08\\xfd\\xd2\\xe6\\x8e\\x8f\\xbf~9.mP\"p?\\x038Oc:\\x97\\x85\\xbf\\xadVU2l\\x13\\x89?R=\\xc1S\\x9d\\x8dy\\xbfr\\x88P\\xa6tE\\x80\\xbf\\xd8\\xc5>@\\x83\\xefJ?\\x88\\xe4\\xe1\\x81\\xd3L\\x8f?\\x1e\\xbaU^\\x06\\x8c\\x87?\\xf0x\\x91\\x98.\\xca:\\xbf\\xc1\\xadV\\xd2\\xf5\\x1e\\x93\\xbf\\xd3\\xe8o\\xf1\\xf9\\x13\\x87\\xbf\\xa4\\xa5\\x9b\\xcc\\xf9\\xc2p\\xbf#\\x0f4\\xa1Y#\\x86?\\r\\xfe\\x9b\\xaad\\'s?\\xa7\\x8a\\xfa\\x1a\\xe5\\x83\\x85\\xbf\\x81\\xf6\\xfaC\\x91\\xb5\\x81\\xbf<\\x85\\x82\\x0e\\xfe\\xd8~\\xbf\\x82\\xe9\\xfeb\\xbe\\xb1y?\\x94@\\x1b\\xde\\xdf\\x93y\\xbf\\x80\\xa3\\xa1\\xaf\\xe7I\\x8b?\\x81\\xca\\x06b\\xa2\\xcfx\\xbf#\\x889\\x03\\xb4-\\x95\\xbfB\\x80\\x18v=\\xb3\\x89?\\xe0$\\x95\\xdc%\\x87J?\\x088\\xfe\\xef\\xda\\xcd\\x8b?P\\xc4\\x0f\\xd2\\xc0^h\\xbf\\x0fW\\x8b\\xa5\\xa9*\\x86\\xbf\\xc0\\x83\\xcf\\x01\\xb3R$?\\x94\\xc3\\x07\\xe6\\xf1\\xd8n?N\\x80\\xa9n8]b?\\x88iY\\xfeabL\\xbf6\\x05\\xda\\xeer\\xb2o\\xbf \\xe1\\xf5P\\xe6\\xb3{?SUn\\xf0\\x05\\xe6p\\xbf\\xc8\\x15\\xba\\xc3\\x0e{Y?\\xbaZQ\\xed\\xb7\\x8cP\\xbf\\xea1\\xa6#@\\xe0X?e9\\xb0\\xed6\\xe0|?\\xf7\\xb5\\x07\\x15\\x8f\\xe1\\xa1\\xbfI\\xac\\xc5\\xdaCf_?\\x9e\\xa0L\\x15\\xf4Y\\x91?\\xf91)L\\x8b\\xba\\xa3\\xbf\\xac\\xae\\xbcFV\\xb8p?xh\\tL\\xf0\"\\x82\\xbfn(\\x05v\\xd6E\\x9a?\\x16\\xe0\\xaa(\\x8c\\xe8`\\xbf\\xdd\\x81\\xa6\\xceP\\x1e`\\xbf\\xda\\xf2\\xdc|\\xbd\\xcd\\xa2?\\x9d\\x96\\xe2\\xc9\\xb4\\x14\\x7f?^\\xd2\\xb8\\xa9f\\x90\\x82\\xbf\\x94\\xd96\\x96)\\xe4\\xa5?\\xc1\\x03`B+\\rw\\xbf|\\x12\\xe3\\xe9o\\xf3~?\\x9c\\xd2\\xaeT&\\xc6V\\xbf\\xf0\\xf9\\x9b\\xe3\\xd1yB\\xbf\\xb4\\xad\\xe1\\xa5\\xcf\\xe2U?u\\x83\\xe4u\\xd9$c?\\xaa\\x1b\\x01,\\xcc\\xc6\\x89\\xbf\\x04P\\x95\\x85\\xaezx?xiC\\xab%\\xb9d?\\xcc\\x14\\xaf\\xb5\\x9e\\xf0\\xa4?<\\x12\\xfaS\\xd7\\x97\\x88\\xbf\\xacA\\xb9\\xc9z\\x06r\\xbfx3\\xa9\\x96j\\x1f]\\xbf\\xa3\\x83c\\x1f\\xad\\xa2S?\\x00\\xe5M\\xce\\x86Jr\\xbf\\xc0\\xd5X\\xc3\\xf6\\x0eQ?\\xce1\\xc6\\xf7\\x0f\\xfd\\x8b\\xbf \\xc0\\x99\\xb5\\x1b\\x1eD\\xbf\\x8a\\x0f\\t\\xa5\\xc3\\x1f\\xa5\\xbf%\\xbe\\xc9]s~\\xa2?\\xe5n\\xe0{j\\xa2\\x8d?\\xcc[\\xbc\\xd3ieh?\"v\\xae\\x00GBx\\xbf\\xd0\\xfb\\x1c\\t\\xe8u{?\\xd0\\xd6E\\xa9\\xcb\\x82i\\xbf\\x9f)\\xb5\\xeeq\\xb8\\x86\\xbf@Y\\xc9\\x1a\\xb3\\xf9\\x86?\\x00it\\x08n>]\\xbf\"L\\x96+\\xbf3{?\\x18\\xd0\\x18Z\\xc7\\xc7v\\xbf\\xa8\\x9f*\\x92\\x1aV\\x81?\\xb2\\x93*^.Pm?T\\xfb\\xae\\xfb\\xf67\\x8b?x(W\\xff[\\x04\\x81\\xbfd\\xf7\\xb3\\xdf\\xe7\\x80\\x9b\\xbf*i\\xc09K\\xc2\\x80?\\x80h\\xb8[\\xc1\\xacm?\\xc2\\xbcsK\\xc9\\xf7\\x9c?\\xf1z\\x85\\xaa\\x9e\\xdd\\x94?\\x88\\x92\\x03\\x1e9\\x95\\x9f\\xbf\\x02A\\\\\\x02St\\x90?~\\x89\\xc5\\x97\\xe7\\xac\\x95?z\\x11,l\\xd0\\xca\\xa0?\\x00\\xed\\x14\\xa7z\\x17\\x90\\xbfC\\xb5C\\x93\\x99,[\\xbfH\\xcc\\x1e@\\x13\\x1dr\\xbf\\xfc\\xedF\\xa8\\xca\\x1bw\\xbf\\xea?\\xfc$\\xd5\\xb6\\x93\\xbf\\x18\\xe6\\xc8\\xa7\\xb6\\x1d\\\\?\\\\y\\x8b\\x83\\xc8\\x13\\x93?\\xc0\\xe8\\xf7[\\xd2|]\\xbfH\\xec~\\xec\\x8dUr?\\xb0\\x1a\\xcc|7\\xbev\\xbfl\\x84\\r8\\x83#h?\\x80\\xab&\\xb2\\xa4\\xa5W?\\xb0\\x99X\\xb5\\xc2\\xabX\\xbf\\xe4\\x0e\\x94\\xf1\\xfd\\x82\\x97?\\xf9\\xf4bR\\xe46y?\\x004\\x1c@\\xc9/F?8\\xd8Y\\x9d>\\x99\\x93?\\x145<A+\\xf0s\\xbf`\\x92\\xb9Qb\\xc1n\\xbf\\xb8\\x92\\xce5bR\\x93\\xbfr5\\xd4\\x12\\xabXF\\xbf R\\x89\\xc9Ju>?\\xd2Ss\\x1f;\\xaa\\xad\\xbf\\xb0i\\x1d\\xb0\\xe9\\xa61?\\xac\\xf3/Ew\\xfa\\x82?\\x10\\n\\x90\\xb8tb\\xae\\xbfHIF\\xb0\\xe6\\xda\\x82?\\xc8\\x95_\\xfd\\x1b\\xa3}\\xbf\\xd8\\x90\\xe3\\x12\\xdf\\xe9i?\\xa4\\xa2M|\\xaa#a\\xbf\\x90\\xa0\\xbb\\x81\\xa0CJ\\xbf0\\xd0G\\x92\\xe3\\xb9\\x85?\\x16\\xa3\\x17r7\\x80r?\\xd9M\\t\\x89\\x93P\\x92\\xbf`\\x98\\x90\\xcf=\\x15\\x99?<\\x12\\xfaS\\xd7\\x97\\x88\\xbft\\xd8\\xb04\\xee\\x0f\\xa2?s05\\xaac\\xdff?\\xb4\\x95\\xa8o\\xe8tU\\xbf\\xec_.0\\xfbVP?\\xc0\\xb0\\xedh\\x95\\xebQ?\\x80\\xb77\\xd8\\x0fGc\\xbf\\xa6@\\xcd\\xd5+\\x13\\x97?\\xea\\x955\\x85\\xda\\x7f\\x81\\xbf\\xef\\xd76\\x0f\\xdaK\\x99?!\\x08\\x0cL\\x97\\xa9\\xa7\\xbffi\\x18\\x8e\\xc9<\\x92\\xbf\\xf8\\xe7=\\x8d[\\xafp?nl\\xf1\\xef]~b\\xbf\\xb8eQL \\x16`\\xbfhO\\x17\\x8e,L\\x82?T}#\\xbb\\xab\\xdb\\x80?\\x00\\xb5\\xef\\x19\"Sn\\xbf\\xd8\\x94\\xc2\\xc4\\xb2\\x0c\\x8f\\xbfeyr\\xa6,\\\\p\\xbf,\\x0fe[7W\\x7f\\xbf\\xec\\x18h\\x0f}\\xb0=\\xbft\\x18\\xb6\\xfa!\\xb7^?\\xd8b\\xf8t\\xb1Yk\\xbf@P\\x01\\x8f\\xdaiV?`\\x1a\\x0eB\\xac\\xf7j?\\xf8|T\\x87\\x0bKw?\\x9cb\\xde_\\xfc\\xcc\\x8e\\xbf \\t\\x86w\\xa4\\x95k\\xbf\\xa8)m\\xe8\\x9fdl\\xbf\\xc0\\xebJl\\xcc\\x15a\\xbf \\xe2g\\x85\\xf4B\\x82\\xbf@\\x19\\x86\\xcf\\x87\\x86h\\xbf\\xa0R:x+\\xe6r?\\xb8\\xe0\\xdf\\xfbX\\x80\\x84?z\\x08\\xa3\\x8b\\xba\\x8e=\\xbf\\xc0Q\\x1c\\x81\\x04iV\\xbf\\xdcAm\\xfb\\xa8P\\x84?1\\x10\\xe3\\xc8\\xb1\\x01\\x89?\\xa4xN\\x1f\\x82\\xa6v?D\\x83K\\\\\\xb2\\xc9\\x8a\\xbf\\xd0\\x00\\xfd\\t\\xa3\\xfeW?\\xe5\\x07o\\xb7v0y\\xbf\\xd8\\x12\\x85m\\x10\\x87c\\xbf(y~\\xc3\\xf5\\xe0\\x80\\xbf\\xb0\\x15\\xd4\\xe5\\x0f\\x1eZ?\\xf0\\x85\\xffj\\xd1\\x83\\x85?z\\x85\\x11\\xf9;Oc?\\xcdjT\\xbb;MJ\\xbf(i\\xf9,=Jk\\xbfl\\xfb@p\\xbe\\x87t?3{\\xde\\xc0\\x86\\x9bL\\xbf\\x9c\\xe1\\x0ew\\xa4\\x89A?\\x92\\r\\xf1\\xaf\\x1f\\x94a\\xbf\\xe6k\\xe3}\\x0c\\xe9\"?\\xc9\\x16n\\xcfZ\\xadI?\\x0e\\xb41t\\xdd\\x0e~\\xbf\\xdcy\\xf1)\\xf7\\xa5,\\xbf>\\xc6\\xa1\\xf9\\x97\\xc1G?\\x83C-\\xea\\x8aK\\x84\\xbf\\x89\\xe6\\xf3\\x0b\\x08+c?6&\\xcc\\x07\\xef?U\\xbf\\xd6\\x91\\xe7\\xa7\\xf30C\\xbfe\\x9bv\\x93\\xec5[?o\\x85\\xd31zS5\\xbf\\xe5(/E\\xf5\\x15;?Vu\\xec\\xf2L\\xe0[?\\xbc\\x81\\x00A\\xf5xF?\\x8d\\x81G\\x08\\xdc#b?\\xacA\\xb9\\xc9z\\x06r\\xbfs05\\xaac\\xdff?\\xab\\x8d\\xbc\\xec\\xe2\\xa2y?|b\\xcb\\x1f\\xfcL4\\xbf\\x14\\x00\\x93\\xff\\xcb\\xaeD\\xbf\\xed\\xb9s\\xaa\\x14\\xcbg\\xbf\\x94\\xf4\\xc3\\x96\\xf15W?(\\xb5\\x01O\\xb8\\nd?\\xb0\\xce\\xd8\\x81q9b\\xbf` \\xefv6Bu?6B\\x84*\\xfd\\xdet\\xbf0Bs\\x1f\\xbe\\xf0V?\\x82\\x16\\xb5\\xbeHX0\\xbf\\xe6Bl\\x82\\x89VZ?\\xb64)\\x93\\x88bf?\\x9d\\x12*{\\xfb\\xa3\\x8e?V[\\x17\\xb10#p\\xbf\\xb2?\\xc6\\x0cp\\x18T?\\x14\\x96\\x19#zY\\x89\\xbf\\xab\\xb6\\xec\\xa9\\xbaiu?\\xc6x\\xa8\\xcd\\xa1bw?\\xd8Q\\x0f\\xe9\\x8d\\xb4<\\xbfm\\xf4I\\xe4<\\xa9]\\xbf.\\xe5\\xac\\xdd\\x83\\xd0k?\\x9d{\\xc2\\x835Gu?\\x8eC\\x06\\xc3\\xf1\\xee\\x82\\xbfx\\x9a\\xe8\\t\\xa4\\xda|?&\\xa7\\xca\\xed\\xb7tt\\xbf\\t~\\x92J\\x8d\\x19z?X\\xc1\\xacMu7r?\\xa0|\\xe9f\\xdb-@\\xbf`\\xf9\\x87\\xb8qUo\\xbf\\xe9\\xc4~\\x88M\\x94k?\\xac!\\xecr\\x87\\xe3l\\xbf\\xc0\\x16]A\\x1b\\xb6v?\\x1a\\xc26a\\xcd{q\\xbf\\x98E\\x97\\xefI\\x90V?\\x10\\xb4\\xf5\\xa6\\xf7?t?-\\xb4Px\\x01d}?X\\xb7\\x97A\\xb7,1\\xbf@:\\xe0\\xd8 \\x98\\x81\\xbf\\x89\\x85a\\x02C\\xb9[?\\xe0\\x1b\\xf5\\xda\\xe8:`\\xbfh\\x7f\\xa5\\xff\\x9da5?l\\x7f)\\xe8b\\ne\\xbf\\x9d\\xdb\\xa7\\xa3D\\xdbP?\\x96\\x14P\\xa2U\\xf5j?X\\x89x;\\xee\\xb3q\\xbf\\x0e\\xcd\\xf6\\xd4p{k\\xbf\\xd6\\x90\\xdd\\xe0e\\xf7j\\xbf\\x04>`R\\xafQn?\\xe5[\\x96\\x8d\\x98\\xf2g\\xbf*qD/\\xb5\\xaeR\\xbf\\xe4\\x8b)r2DW?\\xda)N\\x93(\\xf3n?\\r5\\xe9Kl\\x98a?\\x90\\xee\\x83\\xa8!\\x9aR\\xbf\\xe2\\xd0<\\x00\\x1d\\xe3c\\xbf\\xc0\\xc7\\x1c\\xe4\\xf4\\x1f\\'\\xbf\\xa0\\x1f\\x18\\xaa\\xdd\\xeai\\xbfQ\\x13\\xa2\\xd5)\\x91a\\xbf\\xd8@\\x9c^\\xe3\\xc2H\\xbf\\xc6\\xd3m[\\xc6r8\\xbf\\x9a\\xbd\\x1e\\x0e2\\xaal?\\x93\\xd0\\xba,e\\xedX\\xbf\\xec\\xf1\\x0bo\\xcfv:\\xbf83\\xeb[\\x04\\xbbH?\\xfc\\x1dd\\xeaI93?\\xfa\\x0568\\x95\\xbfW\\xbfx3\\xa9\\x96j\\x1f]\\xbf\\xb4\\x95\\xa8o\\xe8tU\\xbf|b\\xcb\\x1f\\xfcL4\\xbf\\xcbK$\\xeb\\x8e\\xeev?\\xb2\\x8c$\\xc6\\xbfd4?\\x9e\\xfb\\x9e\\xca\\xc3Dg?\\xdb\\xd1\\xe1\\x10\\x07da\\xbf\\xa8\\x9e\\x17Q\\x85\\x9f=?\\x96[\\xab\\xd8\\xc8\\xf4R?\\x14\\x1a\\x80\\xfbY7Y\\xbf\\xe0AB0\\xe4\\xefZ?\\xd0\\x97\\x84\\x81\\x87\\x96\\x1a\\xbf<\\xd6Wbu\\x89t\\xbf8\\xf2\\xceHj\\xe6C\\xbf\\xbb\\xbd\\xf5\\x8f\\xc4\\xaaf\\xbf\\xf8\\xf3\\xb8\\x14\\x9b\\x03F?\\x1c\\xb7<#\\xbebp?X\\xc06:\\x0bb7\\xbftW\\xef\\x0c\\xa4\\x86\\x82?hT\\x81\\x86_3x\\xbf\\x06a\\xe7n\\xf6\\xe1g\\xbf\\xe5 C&\\x90\\x14h\\xbf\\x0e\\xf4o\\x1e\\xa7\\x16T?O\\xa5\\xdbV\\xb93c?\\xea\"F \\x978w?\\x94(a\\x92\\x14\\x11e?Nb:{W\\xc2\\x81\\xbfa\\x0b\\xacF\\xfe\\xfdx?\\xc4BeD\\xf3E\\x85\\xbfP\\x8b\\xa9i5\\x85S\\xbf\\xe0\\xf9\\r\\x98\\x92\\xe7]?09\\xaf\\x1eO\\xf39?\\xccXq\\xfb\\xf4\\nb\\xbf\\xd7]1q\\x9cx\\x88\\xbf\\x05\\x9an?\\xa9\\xc0q?\\x1d\\xa3\\xf3\\xa3\\x89_]\\xbf@\\xb7\\xb6@\\xd2a#\\xbf\\xe0}\\xd5\\xcd[L;?\\x83G\\xab\\xea\\xa3\\xb0u?\\xe8R\\xac\\x8ak\\x03V\\xbf \\x9e\\r\\x1f\\xd2\\xa8E?\\x80\\xfa\\xe6\\xcdK\\x7f2?,\\xf9\\x8d\\xd8\\xa5\\'T?&\\xb0\\xf41\\xda\\xbcT?\\x80\\x0c\\xc8D\\x9b\\x971?\\x16\\x06\\\\\\x1d\\xc3\\xa0S\\xbf\\xe6=\\xbc\\x8f\\xedso\\xbf \\xdc\\xebS!g6\\xbfA\\xd9\\xbb\\xcfQ\\xdaO?\\xa0\\xcd\\xd8V1P\\x1b\\xbft\\xd8~1;Ff\\xbf\\x00i\\xb4u\\x19\\t-?\\xfc\\x89\\xcd\\x9e[\\xcfQ\\xbfD#u\\xc8@%[?\\xfb\\x82\\xb4\\xbb\\xf4rA?2\\xb8\\x84\\xcf=JB?4\\xa8\\xeb\\x11\\x1fxu\\xbf\\x960\\xe2\\xa9\\xbe\\xe1$?D\\x92\\xdf\\r>]H?<6o\\x98D\\x11r\\xbf\\x97\\x1b\\x8e\\x8e\\xa9\\xc5U\\xbf`\\x84\\x85\\xc3-\\xd4\\x14\\xbf\\xd8_6\\x9dP\\x02\\'\\xbf&1\\xcc[\\xe9MU\\xbf\\xf5R\\xb1\\x8e\\xf8\\x14l?z\\xd1BM\\x99\\xbc0\\xbf\\x0c\\\\=\\xe8\\x1b\\xc3O?\\xa8\\x9ch\\xe3\\xba\\xb2V\\xbf\\xf8\\xa9\\xb8\\x90\\xafb;?\\xa3\\x83c\\x1f\\xad\\xa2S?\\xec_.0\\xfbVP?\\x14\\x00\\x93\\xff\\xcb\\xaeD\\xbf\\xb2\\x8c$\\xc6\\xbfd4?\\xccF\\xb0)\\xf4Kk?>\\xb7\\xab\\xd6\\x9b\\\\h?&\\xd5\\xf0\\xd9\\xe1\\xf8b\\xbf\\x94\\x91\\x96X\\xd9yY?\\x18\\x89\\xa3\\xc9\\xe9[:?\\xe0\\x86\\xee\\x12\\xdf\\x0f]\\xbf\\x08\\xeb\"\\x10\\xfa\\x0f1?f\\x94\\xe1)\\x96\\xf1?\\xbfY\\xee\\xe9\\xc1V\\xa1g?\\x96\\xdb\\xcd\\x1d&l@\\xbf\\xe0\\x9b\\xfc\\x0e\\xbe{R\\xbf\\xca\\xf9\\x8b\\x0e\\xd1ri\\xbf\\xc19\\xd0_::u?\"\\xe9\\x0b\\xfe\\xfd=B?p\\xc8\\xafw@\\xe5E?\\xca\\xa7\\x15\\xe3\\xff\\x9aE?\\x83\\xce\\x8b-jtp\\xbfUVO8\\xed\\xcdN\\xbf\\x8a\\xff{\\xff\\x82\\xaaZ?T\\xd8\\x95\\r~\\x99e\\xbf\\x00\\xbd\\x9f\\xc4\\xd7\\xb5\\x16?\\x18\\xd4K\\xa4\\xcb\\xbdv?\\x12e\"n\\x8c\\xcaY?\\xac\\xb2\\xc5)\\xe1\\x1fV\\xbf?\\xd1\\xfd\\x95\\'\\x08p?\\xa0\\xfb\\xa5\\x9b\\x08\\x03e\\xbf\\xe8kg\\x11\\xa8xg?l@\\xe8K\\xd4\\xbeT\\xbf\\xbfK\\x80z\\xeb\\x06V?\\xe4\\x9f%\\xff\\x8fsa? \\xf7\\x93\\xfc\\xd5\\xbfW\\xbf%\\xc398\\xf4~j? \\x05\\x1ev\\x11//?\\xf8\\xe9\\xef}\\xb3\\xd26?<\\xf0\\x06,\\x1f\\x15d\\xbf\\x00Q\\t\\xaf\\x00\\xb8%\\xbf\\x140\\xa1\\x14m\\x8ac?\\xc0\\xa4\\xd4\\xe0\\x14\\x97S\\xbf,\\xbf\\x10\\x1e\\xbb\\xf9\\'\\xbf\\xef\\x1f\\xfbt\\x95jT\\xbf\\x129\\xa1\\x95\\x95*S\\xbf\\xa8\\t\\xd64\\n\\xfc>?\\x80\\xbe\\xb3r\\x03\\x99\\xfc\\xbe\\xc0\\x9f/\\xcb\\x89\\x83\\x8d?\\xf8\\xcf{Y\\xbc&U\\xbf\\xec\\x13\\xddRu&\\x83\\xbf\\xc8i\\xdb\\x06E*\\x98?\\x80:\\x9a\\xe0DER?`\\x9f\\xf2\\xe0\\x1b\\xd5\\x87?\\xc0\\xa1\\xf1.\\x9f\\xb9t\\xbfd.\\x7f\\xfa\\xf1\\x9cs?>\\xbf\"\\x1b\\xcdEd\\xbf<(\\x18j;\\xbb\\xa8\\xbf\\xf8m\\x08\\xf6\\x86\\xf8a\\xbf\\x84#\\x1eZ05\\x84?PC$\\xb3\\xdc\\xde\\xaa\\xbf \\xd2\"m\\xd5H:?\\xa0\\x9d\\x7f\\xf3,\\xa9~\\xbf\\xc0\\xb1\\xa4\\'Yg*\\xbf\\'\\x06\\xa4\\x19\\xe0\\x8bz\\xbf\\xd3\\xdd\\x97\\xd8\\x0b\\x1bb?\\xa4\\x99J\\xd8`\\xdf\\x87\\xbf\\x06>\\x1cB\\xb35\\x81?\\x80\\x9c\\xfc\\xf9\\xa8]P?\\x84\\xbb\\xab\\xb0\\xbb\\x7fv\\xbf\\x00\\xe5M\\xce\\x86Jr\\xbf\\xc0\\xb0\\xedh\\x95\\xebQ?\\xed\\xb9s\\xaa\\x14\\xcbg\\xbf\\x9e\\xfb\\x9e\\xca\\xc3Dg?=\\xb7\\xab\\xd6\\x9b\\\\h?\\xd8tGP\\xd1\\x1d\\x9c?|\\xe8t\\xbcx\\x90\\x87\\xbf\\xc0G\\xa2\\xbc2\\x05W\\xbf\\xe4`Bf\\xfbc\\x8f? \\xf4\\x16\\xf4o\\x9fe?@\\xa1\\xf8\\xd3}\\xc2h?\\x00&\\x8a\\x00\\xba\\xee\\x03\\xbf(\\xd2\\x9d\\xd9sD`?E3\\xc6(\\x97uj\\xbfvO\\x1704\\x94\\x81\\xbfX\\xad\\xc2\\x86\\xa4E\\x9a\\xbf<\\xb7j\\x93\\x08\"\\x91?LI\\x0fo\\xe5\\xf2v\\xbfTt\\xcb\\x84\\xc7\\x1a\\x95?\\xa4\\xec\\x15\\xea\\xa0/\\x84\\xbf\\xe2H\\xb6{%\\xac\\x80\\xbfJ~\\x19\\x8c+\\x80\\x83\\xbf)\\x04\\xab\\xf5\\xe3\\xb2v?\\x12s\\x0e\\x1b\\xbbE\\x83\\xbf\\x806\\xea4\\x19\\xa7g\\xbf\\xcc\\x8c\\x18\\x9f>\\xd7\\x9c?\\xb4\\xe4\\xe0\\xcc8\\x18\\x85\\xbf@x\\xc9!\\xb7h|?h\\x9fs}\\xd1\\xdf\\x88\\xbf\\xf4\\xcb}\\x8d\\xdc\\x1d\\x8d\\xbf\\x906!\\xda\\xb7\\xd5\\xa0?\\x88\\x8c\\xff\\xdc(\\x19\\x83\\xbf`\\x9a\\xbb\\x8f4Ya\\xbf`y\\x1a&o\\x9d\\x94\\xbf\\x00\\xc1\\xde\\x1f\\x0e\\x8a=?\\xf9\\xa2T\\xa2\\xd2|\\x8e?\\xc0\\xbc\\xa0\\xdb\\x99\\x0fT\\xbf\\x80\\xeb~\\x15\\x16\\xb83?P\\xda\\x9f\\xd0+\\x17a\\xbf\\xc0\\xaf\\xf0`\\x03dS\\xbf\\xa8%\\xf9\\xa2\\xd5\\x99p?\\xc0\\x90\\x13\\x8f\\xb0\\xc0d\\xbfh\\t\\x1fK_\\x92P?@\\x0e\\xf8z(\\xd7_?\\x90\\xdeO_\\x9e9P\\xbf\\x80\\x82v\\xfa\\x0e\\x00/?P\\x95I\\xed\\xa5^m\\xbf\\xc4\\x14\\x8d\\x98\\xf3i\\x94\\xbf\\xf0|6\\xe8\\x06\\xbdF\\xbf\\x10\\xf1\\x06f\\xf8\\xa9t?\\x80&E\\xf0\\x9a\\x07\\x8e\\xbf`R\\x986m\\x847?`\\xb5\\x0e*\\xc4\\x97t\\xbf\\x98\\x8b\\x83\\xd3\\xc4 \\x8a?\\xc5-\\xab\\xeb\\xbb\\xeeR\\xbf`\\x1e+Ln\\xa07?\\x90\\xcb\\x88\\xaf\\xeb\\xa3\\x9d?0\\xedS/\\xd8\\xfep?hq\\xe8\\xa9?\\x8c|\\xbf\\xb8\\x9a\\xa6\\xeb\\xb0z\\x99?p\\xcbY\\r1\\xd6!?\\x10\\x91\\xb0*W\\xc2e?H\\xceP\\x0f9wt?\\x9f=R\\x05n\\xc5o?\\'U9\\xfct\\xc9e\\xbfGj!\\xce\\t\\xd6c\\xbfgt\\x8d+z\\xed\\x87\\xbfDi\\x9a\\x0b\\xd1\\xe0{?\\xd8\\xac\\xed\\x88\\xb4\\xc6Q?\\xc0\\xd5X\\xc3\\xf6\\x0eQ?\\x90\\xb77\\xd8\\x0fGc\\xbf\\x94\\xf4\\xc3\\x96\\xf15W?\\xdb\\xd1\\xe1\\x10\\x07da\\xbf&\\xd5\\xf0\\xd9\\xe1\\xf8b\\xbf|\\xe8t\\xbcx\\x90\\x87\\xbftO\\xca\\xe8\\xdeo\\x95?\\xf4j\\x04\\xf6\\xc8cr\\xbfbm\\x8f\\xef\\xf1]\\x80\\xbf\\x18\\xeb<{xNq?\\x00\\xf6TXG].?\\xc0\\x1dg\\xddN\\x10\"?8\\x12\\x83c\\x8fPu?D\\xc6XaHjw?$E\\xd5R\\xad\\xae{?\\xdc\\xad!G\\xebm\\x80?4\\x9c\\xd9\\xa0n\\xc2\\x92\\xbf\\x10op\\x97\\xd4>o?p\\xbf\\x95\\x88\\x85lq\\xbf:\\xb3\\xcc{$!\\x87?t\\x81\\x04\\xeeC\\x9c}?\\x9b\\xb28P\\xb4ww?\\xbdV\\xa5\\x80:\"}\\xbf\\xf0\\x8e\\x13\\xcee\\x8ee?\\xc0\\xe9#\\x8f\\xe7\\x83g\\xbfd\\xf7\\x1dE\\xec&\\x95\\xbf\\xa4G\\xedEZ8|?\\xd0r\\x1e\\x18_\\xa9r?h0\\xe7\\x07\\xbc\\xa8\\x88?x/\\xf4\\xaf\\x95C\\x86?\\xa8\\xdf\\x17Hm}\\x99\\xbf\\xf0sI#vM\\x88?\\xb0DwB\\x0b|g?\\x10\\xc3\\xfa\\xfe\\x1b\\n\\x9d?p:\\xb8\\xae\\x9e\\x8dy\\xbf\\xd8a\\xc7U\\xdczK\\xbfX/\\xfd\\xb6\\r\\x08q?\\xe0u\\x96\\xbc\\xb1=`\\xbf\\x88\\xf7\\xe2\\xcf\\xfc8g?@\\xdd-m\\x94RT?\\x98\\x0cJ\\xd7\\xb1u\\x7f\\xbf\\x80\\xab\\x98n\\x10\\x915\\xbfv\\x87o\\xe4\\xf6=g\\xbf\\x00h\\x8f\\xa4h\\xf2\\xec>\\xa0\\xd8_\\xe7\\xf1\\x94Y\\xbf0\\x0ei\\x8fh\\x8ca?\\x94\\xdc\\xfc]\\x84\\x93\\x80?\\x10.\\xc2\\xf7o\\xd9\\x89?H\\x94\\x0f|\\xf7\\xd6\\x81?\\xa8zr\\x88\\xc4\\xce\\x89?\\x08\\x18\\x05\\xa4\\xa5\\x1c\\x84?\\xce\\x8b\\x0e\\x95\\xf1\\xc1v\\xbf\\x9a\\x0e\\xc2\\xe2s\\xd8\\x87\\xbfh\\xe6\\xe7|\\x0eK\\x8e\\xbf\\x88EXC\\xf1\\x13\\x15?^\\x80\\xe5\\x1d\\xc2l\\\\?U\\xadX\\xba\\x05\\x80\\xae\\xbf\\ns\\xben,\\xd1Z?\\xc0\\x85q\\xb8L\\xb5\\x84?\\x1c\\xc9\\xbd\\x8fl\\xb9\\xa4\\xbfl\\xd3i\\x1b\\xde\\xb7y?\\x10+5\\xc9N{\\\\\\xbf\\\\\\x89Vw\\x0c\\xebt?\\x16\\x12\\x86{\\x83\\x99V?+Z\\xa2\\xd7\\xb1\\x9cI\\xbf\\xdd\\x9e.\\xb5\\xddM\\x86?@\\xc2\\xcb\\x08{\\xa0\\x84?%8\\x9b\\xeb\\xa6\\x1c\\x9e\\xbf\\xfdL\\xfa\\xbe\\x87\\xbar?\\xce1\\xc6\\xf7\\x0f\\xfd\\x8b\\xbf\\xa6@\\xcd\\xd5+\\x13\\x97?(\\xb5\\x01O\\xb8\\nd?\\xa8\\x9e\\x17Q\\x85\\x9f=?\\x94\\x91\\x96X\\xd9yY?\\xc0G\\xa2\\xbc2\\x05W\\xbf\\xf4j\\x04\\xf6\\xc8cr\\xbf8X\\x8e\"\\x0f\\xc9\\xa8? \\xcfn\\xdfi\\xafz\\xbf\\xecc\\x8eY\\x10`\\x87?\\xccm\\xf5)\\x8e\\x08\\xa3\\xbf\\x90\\x93EF\\xaf\\xa0\\x92\\xbf\\xda\\x0fI\\x82e\\x1dt?\\xfa{\\x8c\\xdd\\xac\\xaeP?\\xba\\x87\\x81\\x03\\xb2\\xefp?}\\xf9\\xfe\\x87h\\x03\\x94?\\xe0\\xfeC\\x99f2f?\\x10\\x08T\\x99$W@\\xbf\\xf9l\\x14\\xe2\\x9aA\\x90\\xbf?\\x9f\\x8f*\\xc4\\xbfq\\xbf\\xe2\\x9e\\xba)\\x1b^\\x88\\xbf\\xf4x\\x13\\xb7\\xba\\xd4T\\xbf\\xe03\\xef\\xbc\\x83k=\\xbf\\xef-3\\xceA\\xbb\\x81?\\xef(\\x9d\\xb0\\xbf\\x8e\\x93?\\xa0]\\xf4+!\\xf3x\\xbfP\\xb1~n_\\xb4f?\\xa8e\\xb5\\x9b\\xff*~\\xbf@O\\xb8~\\x9bu_\\xbfs\\x90d\\xcbE\\xc3c?\\x00\\x8c\\x96\\x1e\\x7f\\x08=\\xbf\\xf4B\\xfaQ\\x93\\xb9\\x8d\\xbf\\xbe\\xc10\\x82LB\\x81\\xbf|\\xaa\\xd5\\x03\\xd3V\\x93?8\\xab8\\xce|\\xa4\\x7f?m\\xb9\\xa5/\\x05`}\\xbf\\xa0Ys\\xfd\\xf2\\xdbC\\xbf\\x00\\x16V\\xf1:\\x057\\xbfy\\xb9\\xe3\\xbe\\xf0$y\\xbf,\\xcdm\\xaa\\xeeuy?\\xf0\\xdb\\xb3y\\xac\\x07P?j\\t|\\xbc\\x9cQ\\x85\\xbfAx\\xc3\\xb4\\xfe\\x9fd\\xbf\\xa4R\\xa3\\x91\\xa0\\x88s\\xbfK\\x10\\xc9\\xc8\\xd4\\xed\\x85\\xbfD\\xddf/o%d\\xbf(+<F\\x0c\\xa2s?\\xe8\\x0bG\\x99`C\\x8b?\\xab\\x92\\xb2\\x9b:\\x9bk\\xbf\\xf0\\xa1\\xbe\\xcfRD\\x89\\xbf\\x00\\xd6\\x15\\x17\\x9b\\xa4`?h\\x1b\\xebi]mw?\\x16\\xfa\\xf4\\x88\\xdc\\x03\\x88?HV\\xe4q:hq?\\x90\\x0e\\xa0\\x8c]\\x98M\\xbfv.T\\x8d\\xa0@a?\\x0e\\xc7\\xb4^\\xb18\\xa2\\xbf\\xdb0\\xbd\\x88\\xb3\\x14n\\xbf\\xd0\\x01\\xbc\\xf5\\x12\\xe5\\x81?\\xf0\\xb3\\x8f\\xb0+8\\xa5\\xbf\\x80\\xc0\\xe0\\xb2m\\r\\x80\\xbf0\\x97x\\x19\\xf8\\xb7d\\xbfPPu&\\xa5hA?\\xab\\xa3\\x8d\\x13o^e\\xbf\\xa9S\\x15AuXc\\xbf\\x00N<\\xc3\\xab\\x1f\\x7f\\xbf\\x1c7\\x19\\t\\xdc\\x07u?L{\\xb7\\xeb!\\x1bf?\\xf2\\x08\\xfd\\xd2\\xe6\\x8e\\x8f\\xbf \\xc0\\x99\\xb5\\x1b\\x1eD\\xbf\\xea\\x955\\x85\\xda\\x7f\\x81\\xbf\\xae\\xce\\xd8\\x81q9b\\xbf\\x96[\\xab\\xd8\\xc8\\xf4R?\\x1c\\x89\\xa3\\xc9\\xe9[:?\\xe4`Bf\\xfbc\\x8f?bm\\x8f\\xef\\xf1]\\x80\\xbf \\xcfn\\xdfi\\xafz\\xbf<\\x15\\xed_\\xech\\x9b?\\x80Y8RmJY\\xbfxLs\\xcb\\x9cz\\x85?\\xcaT5\\x91Z;o?\\xc1\\xf9\\xc5\\xf1\\xbd_\\x80\\xbfz\\xb8G\\x03\\x84\\xd3S\\xbf8^\\xdb\\xe1\\r)l\\xbf6\\x01\\r\\xd5~\\xb6\\x96\\xbf\\x00=I\\xcb\\x0c\\x8d]\\xbf`\\x11x\\x91\\xd6>f\\xbf\\xf4\\x91\\x9fY,\\x86\\x96?\\x8a\\xd1\\x12\\x9bf\\xf3o\\xbf\\xf0\\xe7s0f\\x05P?OY4\\xbaH*\\x86\\xbfI\\x9e\\xc5\\x81@\\x9dm?\\xb0<\\xef\\xaa\\x95c}?xK\\xd5B\\xc8o~\\xbfh\\xa9\\x1d\\xa7\\xae\\xa9v?\\xbaX\\xb1U\\xc1\\xb4\\x88\\xbf`\\x06\\xd5\\xc4a\\n}?\\x90\\x16\\xeaI+\\xe3\\x90\\xbfr\\x06\\xcdB\\xe9\\xd3c?\\xb8\\xc9\\xcd\\x13I\\x9f\\x83?\\xe0\\x98\\x9d\\xb8\\x8fwd\\xbf\\xc0\\x18\\xb6PB\\xca{\\xbf\\x8cu\\xb2\\xe9PO\\x9b\\xbf\\xf0\\xe3\\x9dT\\xd7\\x9aq?J]\\xa0\\x8f\\xf2\\x8a\\x7f?\\xd2\\xa2\\xf2\\x1d\\x8c\\x8bu\\xbfTl\\xa7\\xd1n\\x9ev\\xbf@qG\\xc6\\x0c\\x83L\\xbf\\x80\\xc6\\xc1#[\\xe9A\\xbf$\\x8f\\xfc\\xcav\\x05v?\\x00h\\xdaO\\x13\\xeb\\xf6\\xbe1-\\x14\\xe1\\xdf\\x83f?\\xc0jDN\\x98\\x9fr?\\x8c,\\xec?\\x15\\xfbe?xp\\xc6\\xe5}\\x1aR\\xbf\\x04\\xe9\\xf6\\xdc\\xc4[~\\xbf\\x18}|bBQ\\xa4?v\\x19+\\xe8<\\xe8X\\xbf\\xbb\\xafd\\xb4\\xf2b\\x97\\xbfwn\\xd64~\\xab\\xa3?\\x00<,\\x01\\xf5z\\xd0\\xbe\\x15$\\x1a\\x00\\xbdl\\x91?\\xc6\\x01\\x06t\\xc81\\x9d\\xbf\\xecZ\\x96\\x1bP\\xf8\\'\\xbfH\\xbb\\xaf\\xcb\\x90\\xd62\\xbfs\\xe4]\\xa5\\xa6\\xfe\\xa5\\xbf\\xd0Q\"\\x93\\x8d\\xb3g\\xbf\\xd2G[N+\\x8d\\x82?\\x90k\\x1d\\xbb/\\xd4\\xa9\\xbf\\xc4\\xda\\xa7\\x9d\\xfdc\\x89?p\\xaa\\xb1\\xfaR\\x04\\x7f\\xbf)\\x1a\\xb3.]\\xf8w?{\\xf4\\xc93U\\nm\\xbf\\x84\\\\\\xb7\"\\xbd\\x95T?\\x90\\x91\\xe8\\xbe\\xa5\\x804?\\x04yZ\\xc4\\xe4\\x95\\x7f?H\\x9f\\xf9\\xd8Q\\xc2|\\xbf~9.mP\"p?\\x8a\\x0f\\t\\xa5\\xc3\\x1f\\xa5\\xbf\\xef\\xd76\\x0f\\xdaK\\x99?` \\xefv6Bu?\\x14\\x1a\\x80\\xfbY7Y\\xbf\\xe0\\x86\\xee\\x12\\xdf\\x0f]\\xbf \\xf4\\x16\\xf4o\\x9fe?\\x18\\xeb<{xNq?\\xecc\\x8eY\\x10`\\x87?\\x80Y8RmJY\\xbf\\x12\\x01\\xd9\\x9f\\xf0\\xd2\\xb1?K[\\xcaj\\x08S\\xad\\xbf\\xb1\\xc9\\x9a\\x16A\\x8a\\x97\\xbf\\xd8X<ye\\xaf\\x85?\\xda\\x19-\\xd9TV\\x80?\\x13(\\xfb\\xc4D\\x12\\x82\\xbf\\x0c\\xae\\x98\\x82O\\xfd\\x82\\xbf(\\xce\\xe8m^\\x8dz?z\\xd7]\\xed\\\\\\xda\\x89\\xbf\\xd0S\\xea\\xa58xq?`Ts|\\xed\\xbd~?8**\\xfc\\x8b\\xec\\x91?\\xd0k/\\xa0\\xae\\xd3\\x87\\xbf~\\x8a#O\\x19\\xad\\x7f\\xbf\\x00V\\xc3\\x8c\\x81\\x80\\x93\\xbfP\\xd6\\x1a\\x14v.v\\xbf\\xc3\\xe6\\x8fFI\\xe4\\x9e?\\xf0\\xbc\\xb0h\\x1fbQ? &:\\xd6L,p\\xbf?Pm\\xd2~I\\x96\\xbf\\xfe:&w\\x17\\xc0\\x99\\xbf\\xa2\\xe5?0\\xbb\\xec\\xa0?#h\\x140R\\xdb\\x95\\xbfU\\x19\\xc1\\xe5\\xfc|\\x90\\xbf\\xac\\xa0\"\\x8d\\x0b\\xab\\x9d\\xbfn\\x0ezu\\x95\\xd2\\x94?\\x08\\xbe=E\\xa5\\xf1\\x84?L#\\xf8%\\xb5\\x83v?v\\xd2\\xeb\\xe9\\xdf\\xcf\\x87?jF\\x1b\\xefi\\xc1\\x9d?0\"U\\x82k\\xd5R?~\\xc8\\xac]3\\xb1\\xa0\\xbf4\\xe7\\xd2-\\xa1<l?\\xf1\\x0c\\x14\\xdb\\xa3\\x16\\x88\\xbf\\xf8\\x06\\xb1Q\\x8a2d?\\xc4b\\xa6P\\xce\\xac~\\xbf\\\\\\xd1\\x82yU\\xa0l?\\xbf%nH\\x81#\\x90?d\\x1f\\xf8l\\x03\\xc4\\xa0\\xbf\\x8c\\xd6\\x80\\xa1\\xdd\\x85w\\xbfp]r\\x16R\\x7f}?\\xf0PL\\xb5\\xb6\\xee\\x97\\xbf`\\xe9\\xf5\\x90\\xc8bo?\\xe0:RB\\x06\\xeaR\\xbf\\xf2U\\x85\\xbf\\xa0\\r\\xa0?L\\xabq\\xa5\\xd3\\x86a?\\xc4\\xae\\xd1\\x8e\\xd2Ta\\xbf\\x1c\\x02<F\\xee\\xd8\\xb0?\\xd0n\\xb4\\x16\\x13\\x9bS?liCh\\xf7W\\x86\\xbf\"\\xf4}LR\\x95\\xb2?\\x81\\x93\\xbd\\x93\\x02a\\x8e\\xbf\\xa0!`\\xb7\\x87\\x84\\x80?\\xf7\\x1b\\x07\\x9b\\x95\\xeap\\xbf@\\xcc\\xf8\\x98\\xe2\\x96\\\\?C\\xc2\\x0b\\xcd\\x98\\xe5^?`\\xf8q\\x8f\\xbeRn\\xbf\\xd8eQ\\xfd\\x7f\\xd6\\x84\\xbfD\\x8a\\xf6\\x973v\\x96?\\x038Oc:\\x97\\x85\\xbf%\\xbe\\xc9]s~\\xa2?!\\x08\\x0cL\\x97\\xa9\\xa7\\xbf6B\\x84*\\xfd\\xdet\\xbf\\xe0AB0\\xe4\\xefZ?\\x08\\xeb\"\\x10\\xfa\\x0f1?@\\xa1\\xf8\\xd3}\\xc2h?\\x00\\xf6TXG].?\\xcem\\xf5)\\x8e\\x08\\xa3\\xbfxLs\\xcb\\x9cz\\x85?K[\\xcaj\\x08S\\xad\\xbf\\xbd\\xe5\\x9b\\xf6;\\xd8\\xb6?r\\x8e\\xf8L\\x1a\\x94\\xa4?X)\\x9a`\\x9di}\\xbf`Q\\'\\'\\xace_\\xbf\\x08\\xcaYI\\xeb\\x1dg?(\\x7f\\x12\\xed\\x10Y\\x82\\xbf\\x0c\\xec6 \\xe9\\x0f{\\xbf\\xf0F\\xc2\\xa7\\xb4\\x9a\\x80?\\xd8\\xfda\\x94Q\\xe7\\x8c?4\\xfaU=\\xd0\\xb7[?\\x00\\xaf\\x1d\\x94\\xf7\\x8cs?\\xad\\xeb\\xf08|Sw?\\x94\\x0e;\\xa9\\xbaSR?\\x90\\x81\\xaaU\\x7f\\xa0h?h]m>\\xa7\\xe3\\x81\\xbf\\xc0k\\x1c{Q\\xebu\\xbf\\xa0)\\x8f\\xc4\\xb5\\x92v\\xbf\\xb8\\x18\\x1c\\xf0\\xe1M\\x95?\\x80\\x14\\xa8\\x8bH\\xfc\\x89?\\xf8\\t\\xdd\\x7f,]v?@M\\x17/D\\xbb\\x8b\\xbf\\xec\\xc8\\xe8$\\x10<\\x98?\\x00\\xa9(\\xce5\\xd0\\x84?\\x00\\x11\\x1c^\\x8cux?4\\xd7\\xbb\\x7fYJ\\x96\\xbf\\x9as\\xbe9B\\xf8h\\xbf@1\\x83\\xcc\\xfd\\xb8e\\xbf\\xecE\\x1e3\\x0f\\x0c\\x8c\\xbfZ\\xc4\\xa6\\x01K\\x7f\\x9b\\xbf\\xc0\\x03\\xde\\xb5\\xc4F\\x7f\\xbf\\xd4%\\x92\\xb8X\\xc9\\x9a?\\x00~\\xf0Q\\xe1\"f?\\xd8qA\\xea\\x97\\x8d\\x87?X\\xcfz\\xf7\\xd0\\xbfs?\\x82\\xa0D1\\xb4S\\x8e?8\\xea\\xdd\\x82\\xef\\x84`\\xbf\\x1c\\x82\\x7fa<]\\x92\\xbf(\\x80\\xa1\\xdd\\xb9\\xdd|?\\x90\\x11-K\\x8e\\xfcD? y\\xab\\x150aT\\xbf4\\xaf\\xc9\\\\\\xb1\\x06\\x90?Pr\\xf5X\\xedHH\\xbf\\x02\\x82\\xd9\\xa8\\x7f\\x84y?,x$^Y\\x9ey?0\\xb1\\xd6\\x025\\xc6Z?Y\\xe0\\xb4\\xcb\\x01`_\\xbf\\x1d5$}\"\\x18\\x92?|\\xb5\\xdbL#\\x96_\\xbf@\\xd3\\x9c\\xadI\\x04B?\\xd8>g\\x7fS?x?K\\xe2v\\x96\\xf6\\xe0r\\xbf$\\xf6 \\x9b\\xe5\\xb3b\\xbf\\x16\\xb0(i`\\x02~?t\"+\\xf4 Zl\\xbf\\xd6\\xfe\\x11[\\xe0:F?H+Q\\\\\\xe9\\xe1\\x89?\\x87\\x0c\\x1d^\\xe7\\xdal\\xbfh\\xad\\x98\\xee3\\x99q?\\xadVU2l\\x13\\x89?\\xe5n\\xe0{j\\xa2\\x8d?fi\\x18\\x8e\\xc9<\\x92\\xbf0Bs\\x1f\\xbe\\xf0V?\\xd0\\x97\\x84\\x81\\x87\\x96\\x1a\\xbff\\x94\\xe1)\\x96\\xf1?\\xbf\\x00&\\x8a\\x00\\xba\\xee\\x03\\xbf\\x00\\x1eg\\xddN\\x10\"?\\x90\\x93EF\\xaf\\xa0\\x92\\xbf\\xcaT5\\x91Z;o?\\xb1\\xc9\\x9a\\x16A\\x8a\\x97\\xbfr\\x8e\\xf8L\\x1a\\x94\\xa4?\\xb6\\x9d|\\xfb\\x83+\\xb3?\\x90\\xe1\\xe6\\xfc\\xa9\\x11z\\xbf\\xf0W\\x99\\xa0\\x81ld\\xbf\\xc0\\xf4\\x9d\\x16s$F\\xbfh\\xd6\\x04\\xf0\\xe2\\xb8z\\xbf\\x0c\\xa4\\xf2\\xd0]\\x8b\\x95?\\xc8\\x1d9!\\xce\\x8aM\\xbfH\\x83\\xd6\\x84\\xf7\\xa9c?\\xc2\\x13\\x9fs\\xcc\\xea\\x9a\\xbf\\xa6\\xa3\\x81J\\xd7\\x9d\\x96?j\\xca\\xa9;\\x96\\x04\\x84?\\x96l~\\xb9\\xd7\\xd3T?\\x140\\xb3\\xbd}\\x9f\\x89\\xbfS\\xbcJ\\xed7\\x1f\\x83\\xbf\\xa8FzvJN\\x83?\\x9c\\xac\\xf1\\x05u\\xc6\\x8c\\xbf\\xf0m?\\xd8\\xf6\\xdd\\x83?\\xb0\\x16xz>\\xbe^\\xbf\\xc8\\xfe?G\\x0fBJ\\xbf\\xc0 \\xc30\\xff\"m\\xbf\\xe2\\xec\\x0f\\xa3\\xa0\\x83\\x8d?@\\x95\\xfc\\xeaP\\x02.?\\x1c\\xf9\\x91\\xb9\\xad&\\x8e?2\\x1b\\x99-\\r\\x05\\x94\\xbfT\\xd2\\xb0(1N\\\\\\xbf\\x1bX\\x0b\\xc6\\xe7Lt?\\xa4\\x96mQ\\x85\\xbb\\x99\\xbf\\xbaV8E\\xb4\\x82\\x96\\xbf\\x8d\\xb9\\xb0\\xb0}\\x18\\x83\\xbf\\x1b|h\\x84\\x0f\\xdf\\x97?@\\xa0\\x8f\\x92\\x16LM?\\xc1\\x94\\x16\\xbb\\x82\\xdf|?\\xc6\\x85\\x83\\xdb\\x01\\xd6\\x80?\\x01\\x98f\\xd5O\\x18\\x84?\\xa0\\xae\\xb1\\xd0\\xe6\\xf2U\\xbf<\\x12Z\\xc7\\x9f{\\x83\\xbf\\xe8\\xd4\\x83\\x9c\\x96\\x94p\\xbf\\xec\\x9bf\\xaa\\xb8\\rs?\\xd4{\\xfd{n\\xab~?\\xe0\\x0e\\xe2\\xd6\\xb6qv\\xbf\\x08\\x1bt\\xbb\\x9c2x?\\x92\";\\n8\\x92r?\\xd4x\\x00\\x1d2ws\\xbf\\xf3\\x01\\xf53\\xd7b4?\\x11I\\x1cB\\x17S\\x83\\xbf`\\x8cr[7\\xd6\\\\?\\x84e\\xe8M\\xba\\xbf{?\\x10\\xa1\\xbaN\\xbb\\xcbB\\xbf\\xa8\\t\\xe7\\x01X\\xef\\x86?tX\\x01\\xc8\\x81n\\x7f?\\xf8#6jZCi?Mv{\\x08\\xa1\\xd7P?;\\xfaY\\x15Uw\\x82\\xbf\\x9a\\'\\xc1\\xdd\\xca\\xf5\\x85?\\xd6k\\xaf\\x1a\\x7f4d\\xbf\\x04\\x83`9wK\\\\\\xbfD\\xfe\\x1d\\xaa\\x0e\\xd4R\\xbfR=\\xc1S\\x9d\\x8dy\\xbf\\xc8[\\xbc\\xd3ieh?\\xf4\\xe7=\\x8d[\\xafp?|\\x16\\xb5\\xbeHX0\\xbf<\\xd6Wbu\\x89t\\xbfY\\xee\\xe9\\xc1V\\xa1g?(\\xd2\\x9d\\xd9sD`?8\\x12\\x83c\\x8fPu?\\xda\\x0fI\\x82e\\x1dt?\\xc1\\xf9\\xc5\\xf1\\xbd_\\x80\\xbf\\xd8X<ye\\xaf\\x85?X)\\x9a`\\x9di}\\xbf\\x90\\xe1\\xe6\\xfc\\xa9\\x11z\\xbf\\x99\\xe3\\xbc\\xd3\\xb9\\xdd\\xb1?Z\\xacxt\\xe5\\x8b5\\xbf\\x00\\xecr\\x02\\xb6PC\\xbfj\\x16\\xf1)\\xf2\\x96\\x8a\\xbf@\\x9e\\xb5\\xc2F\\x87r?\\xb8E\\x14\\xeb\\xcaOg?\\x9f9\\xb2&\\xd3\\x8d\\x89\\xbfJ\\xc7\\xbd\\xfb\\xe4\\xaa\\x98?=Y|\\xaeX\\xf3t?\\xa0O\\x96\\x8a\\x07\\xfa\\x9d?\\xd9K\\xd4\\xe4\\xaa\\xd8\\x90\\xbf:\\xdb\\xe6\\x87\\x1e\\xad\\x8d\\xbf\\x0c3\\x07\\xfb7Bt\\xbf\\x88\\xcc|\\xb8\\x05 \\x94?\\x86Jr\\xdb\\xb4|\\x9b?l\\xc932\\xae\\xedu?<6\\xddB\\x1er\\xa4?F\\xd1\\xc5\\xe3~0V\\xbfR\\xb3OV\\xabU\\xa1?\\x94\\x91;X`*\\x95\\xbf\\xb6\\x9a*\\xedud\\x90?v\\xae\\x98$\\x89\\xc0\\xa2?\\xcc\\xd1\\x02\\x18\\x08\\xef\\x8f\\xbf;\\xd5P$\\xfan\\x9e?\\x90\\xb6WU\\x9eqC?\\xd2\\x8c\\xf8U,\\xef|?d\\x03\\x15sG\\xb9\\x86\\xbf\\n\\x9d#I\\xca\\x80|?a\\xb9Wp\\x01\\x9e\\x89\\xbf#\\x82\\xe3\\xf2\\xd3\\xc1\\x8c\\xbf\\xaa3z5\\xd8\\x8d|\\xbf\\x8dI\\xd3\\xb2\\xa8\\xab\\x86\\xbf\\xb1r\\xd8\\xba\\x1b\\xe2\\x88\\xbf\\x9f\\xac\\x0c\\xfd\\xfb\\xf1w?\\xd3\\x03\\xb0\\x04\\x1a\\xbe\\x96?\\x96\\x14^\\xf1JN\\x81?\\x14\\xf0\\xa8b\\x06db\\xbf\\x83\\xf6\\x1cO\\xb8\\xa0u\\xbf\\x96\\xbb/\\x0b\\x1ern?\\x84\\n\\xdea\\x88\\xdde?\\x18\\xb6N\\xc3\\xb9\\x1ab?\\x9b?`r\\xecFx\\xbf\\xa5\\xa6\\x03\\xc9,\\xd9F\\xbf.\\xb1,\\xf7\\x12\\x92F?\\xbbXf\\xeda\\xd2{?f\\x96R\\x90\\x00\\x90r\\xbf\\xf8\\xcd\\xf5\\xfeCY3?\\xf6\\x95I<U\\xe2\\x89?\\xea`\\xcb\\xc7\\x1ae[?\\xde\\xf6TL\\xc7K]?\\x1b\\xc0x\\xe3Y\\x80I?-\\xe0\\xcbVNOg?\\x94Y\\x1b3\\xba\\x9dh?q;l\\xf8K\\xf8\\x7f\\xbf\\xfe\\xd5\\xde\\xf6;\\xb6H?P\\xd7\\x91\\xfe\\x03\\tq?q\\x88P\\xa6tE\\x80\\xbf\"v\\xae\\x00GBx\\xbfjl\\xf1\\xef]~b\\xbf\\xe6Bl\\x82\\x89VZ?8\\xf2\\xceHj\\xe6C\\xbf\\x96\\xdb\\xcd\\x1d&l@\\xbfE3\\xc6(\\x97uj\\xbfD\\xc6XaHjw?\\xf9{\\x8c\\xdd\\xac\\xaeP?z\\xb8G\\x03\\x84\\xd3S\\xbf\\xda\\x19-\\xd9TV\\x80?`Q\\'\\'\\xace_\\xbf\\xf1W\\x99\\xa0\\x81ld\\xbfZ\\xacxt\\xe5\\x8b5\\xbfWz\\xcc\\xe5\\xcd\\x94\\x90?0`T\\x1b\\xb2\\x04q?<P\\xe8\\x07eN\\x8b?p[X?\\x8d\\xb7\\x8b\\xbf\\xc8W:2\\x02\\xe0[\\xbfd\\xf5\\xfbu!^{\\xbf\\xf9\\x8f\\xb5\\xa3\\xa9\\xa7\\x8a?\\xd6\\xeag\\xf2\\xd3\\x9b\\x88?\\x87l\\x04\\x89\\xc3kr\\xbf\\x92o\\x88\\xb9%\\x03t\\xbf\\xb8<(\\xe9\\xb5\\xcfx?\\xf8\\xca,M\\xa1-\\x80?\\x96\\x0f,\\x96u5\\x84\\xbf\\xeb\\xa4_\\xb2\\x0cPg?\\xe4\\x1b\\x02\\x86U\\x9fr?\\xe8Y+\\xd3\\xca\\x1fT\\xbf\\xcd\\xf7u\\xe1\"2t?\\xb0\\xec\\xfc\\xeb/\\xd5]\\xbf\\x12\\x01\\x1f\\xc0\\x8a\\x9eR\\xbf\\xeb.\\x9b\\x8e\\x8e\\xc2w\\xbf\\x98\\x05\\x84\\xfd\\xb1\\x97\\x80?n\\x96#2\\x90$c\\xbf#\\xd8(l\\x07\\xe5\\x10\\xbf|\\x9a\\xa1\\x07\\xeeo]?jV A\\xa1mU\\xbf\\x94/\\xc8v\\xc9%W?R\\xd1\\xbcebD_?p\\xd4\\xf0\\x07~M\\x84\\xbf\\x1a\\xa9C\\x92 \\xc8n\\xbf\\r\\xde\\x92|-\\xe1`\\xbfR\\xff\\x08\\xb0\\x8fjD\\xbf\\xc8\\xfdx\\x94H[\\x1f\\xbfP<\\x9a\\x94\\xca\\x1e\\x11\\xbf6!pS\\xea\\nm?\\x00\\xfbd\\xe2/\\xd4\\x86\\xbf\\x10n\\xc7\\x18m\\xe4\\'?X\\xa8\\xc5V6Bw?(ajT7\\xb7\\x8e\\xbf\\xee\\xe9n\\n\\x80\\xccb?\\xa6\\xa7\\x11\\x8c\\xb0\\xcav\\xbf\\xe0\\xaf3\\x14\\xd0\\x88~?^\\\\\\xf8\\xf6\\x0b\\xd2c\\xbf40\\xf7\\xcb\\xef\\xf8G?0\\xde\\xe0rq\\x1d\\x7f?\\xd2\\x16H\\x8fR\\xdev?@\\xff\\xab5\\xd9\\xebc\\xbf\\x006\\xd2\\xd1{x\\x80?x\\xd31\\x01O?h\\xbf\\x10\\x02\\\\qP\\x05c?\\x18\\xa2\\xa0\\x92\\xbc\\xe7p?lj\\xe0\\xdbA\\x89r?&\\xe7\\x81\\x9eu\\x1a0\\xbf\\xc8\\xba\\xe0\\t1\\xc8a\\xbf\\xcb8\\x1b$FFs\\xbf\\xb0\\x81\\xbc\\x81q\\xcfe?\\xe8\\xc5>@\\x83\\xefJ?\\xd0\\xfb\\x1c\\t\\xe8u{?\\xc8eQL \\x16`\\xbf\\xb64)\\x93\\x88bf?\\xbb\\xbd\\xf5\\x8f\\xc4\\xaaf\\xbf\\xe0\\x9b\\xfc\\x0e\\xbe{R\\xbfvO\\x1704\\x94\\x81\\xbf$E\\xd5R\\xad\\xae{?\\xba\\x87\\x81\\x03\\xb2\\xefp?8^\\xdb\\xe1\\r)l\\xbf\\x13(\\xfb\\xc4D\\x12\\x82\\xbf\\x08\\xcaYI\\xeb\\x1dg?\\xc8\\xf4\\x9d\\x16s$F\\xbf\\x00\\xecr\\x02\\xb6PC\\xbf0`T\\x1b\\xb2\\x04q?\\xa2\\x92\\xda+;\\xd5\\x94?\\xf9,\\xd1:\\x84B\\x9b?\\xb7 \\xc9\\xf6*\\xb8\\xa1\\xbf\\xd4\\xf7\\xe2=>(\\x8d?\\xda7-\\xad\\t\\xda\\x94\\xbf\\x198\\x8d\\x05\\x01\\xe9\\x9c?\\x89\\x12\\x8c\\xcd\\x04\\xdcs?7\\x1a\\x03>*(q?<\\xbb\\xc3P\\xd0\\xb7r\\xbf\\'\\xfc\\xc4+&\\xdc\\x99?\\x14+\\x04\\x1d\\x16\\xc7\\x8b?\\xbd\\x01q2/\\t\\xa9\\xbf.\\xadpp\\x80\\x1e\\x96?\\xe8\\xd6\\x9f\\x0c\\xc7\\xe4~\\xbf1c\\xb9\\xcbkL\\xa0?U\\xa1c\\xe7\\xfaB\\x9f?\\x98m\\x08\\xc2\\x08\\xb8\\x93\\xbfp\\xff\\xd6q\\xe7-n\\xbf\\xe2\\xecc\\xbc\\x1b\\xbd\\x89?\\x04\\'\\xbc}\\x00s\\x93?hFY\\xe4P\\x84p?8o=\\xb6^\\xf1\\x81\\xbf \\x16\\xfb\\nzj2?@\\xfe\\xc4\\xc8h\\xd72\\xbf(\\xca\\r\\x80M$c\\xbf\\xc4\\n\\xee\\xc2\\x07\\xc5m?\\x08N\\xc8\\xbcz\\x0bv\\xbfz\\xeb\\x9a\\x8cd\\xa6y\\xbf\\xbcoS/\\xf3\\xacn\\xbf`\\x9e\\r \\xadUv\\xbf,\\x85\\xdfNj\\x14x\\xbf2\\xf9\\x90<:hc?\\x96\\xc3G\\xd9\\xce~\\x81?\\xd0\\xb5(\\x08M\\xef\\x92?W\\x9d\\rrdVe?\\x101\\xb7\\x11\\xa4ss?X\\xe6V`\"\\n\\x92?\\xc0\\xea&;\\x91\\x15\\x86\\xbf8K \\xff\\x13`\\x90\\xbf \\xb1\\xde\\xd2C\"\\x94\\xbf\\x98\\x95T\\xa4\\xf4\\xedI\\xbf\\r5\\x9e\\xe5c@y?\\xf0\\x12\\x14\\\\\\x84:\\x99\\xbf\\x1e\\xe0\\xd0Zy*r\\xbfP3:u\\x94\\x93`?0\\x94\\r\\xf4S6\\x91\\xbf\\xe3I\\x99\\xd30\\x98`?\\x00p\\xee\\x12>%9\\xbf`\\x16E\\xb0\\x80\\x04T\\xbf\\x96\\xc3\\xc8\\x15\\x9e|\\x94?\".,\\xd0_\\x08k\\xbfjy\\xa9\\rAA\\x89?H\\x8d\\xb3W:\\xbcZ?\\\\c\\xfa\\xa0\\x1diw\\xbf\\x88\\xe4\\xe1\\x81\\xd3L\\x8f?\\xd0\\xd6E\\xa9\\xcb\\x82i\\xbfhO\\x17\\x8e,L\\x82?\\x9d\\x12*{\\xfb\\xa3\\x8e?\\xf8\\xf3\\xb8\\x14\\x9b\\x03F?\\xca\\xf9\\x8b\\x0e\\xd1ri\\xbfX\\xad\\xc2\\x86\\xa4E\\x9a\\xbf\\xdc\\xad!G\\xebm\\x80?}\\xf9\\xfe\\x87h\\x03\\x94?6\\x01\\r\\xd5~\\xb6\\x96\\xbf\\x0c\\xae\\x98\\x82O\\xfd\\x82\\xbf(\\x7f\\x12\\xed\\x10Y\\x82\\xbfh\\xd6\\x04\\xf0\\xe2\\xb8z\\xbfj\\x16\\xf1)\\xf2\\x96\\x8a\\xbf<P\\xe8\\x07eN\\x8b?\\xf9,\\xd1:\\x84B\\x9b?\\xb0s\\xb0\\xf2\\xc2\\\\\\xbf?\\x1c\\xc03\\xa2\\x19\\x83\\xa7\\xbf*\\xe7\\x99\\xd6\\x93U\\x91?\\xf5\\xad\\xacM\\x0c\\x9a\\xb6\\xbf\\xb5\\xbdn;\\n\\xf0\\xa4?,\\x07^\\x96\\xa2\\xad~?%\\xea\\xcf\\x8fm\\x8c\\x7f?\\x11\\x88[i\\xbb\\xbd\\x85\\xbf\\xe8\\x10 \\xd8pS\\xa2?\\xb2\\x12^\\xb0x\\x90\\xad?\\xdf\\x99\\xd2Bw\\xfd\\xb4\\xbf\\t\\xf2&\"-1\\xa3?\\x921\\x1c\\x0e\\xba\\x9d\\xa1\\xbfj\\x9af\\x95\\xec\\xc4\\xa6?\\xa4\\xc8\\x9d#|a\\xa2?\\xacx\\x1b\\xd2X_\\xad\\xbf@\\x05\\x8c\\x18\\xc1T\\x81?`\\xff\\xae\\xbd\\xdb\\x00\\x82?\\x10\\xc3\\xfd\\rC#\\x9c?\\xf8\\xed\\xf5\\x91Q6\\x82?\\xd7#%J\\xf7\\x95\\xa8\\xbf\\xd0w4v\\x84\\x85q?\\x00D\\x9fbw\\xc2s?\\xe8\\xc4\\xb5dd\\xe5\\x8a?\\xd8\\xb7(i\\x18\\x13k?h\\xb1_\\xa6\\t\\'\\x95\\xbf\\xb8\\x1a^\\xc4\\xe2\\x97z?R\\x12\\x04e\\xdb\\x11{\\xbf\\xb0\\xb5\\x1f\\x8c\\xf6:i\\xbfX\\xd6\\x05\\xac\\xa5gs\\xbf \\xa2\\x9b\\xa1\\x88ZC?|\\xaf\\x1d\\x87\\xf6>\\x89?\\x16%f\\xd8L=\\x9f?\\x04\\x88\\xef\\xd1\\x1c(~?\\xd0\\x1c\\x04\\nuMh\\xbf\\xab\\x8b\\x91+\\xc7\\x1e\\xa5?\\xa4Z\\xe1)qy\\x83\\xbf\\xa4e\\xb9yE\\xd9}?\\x1a\\xa6\\xf1\\xf1\\x95\\xfa\\x99\\xbf\\xc2*s\\xf0T\\xf6w?0g\\xc5y\\xe0\\xf0r\\xbf|\\xcax\\x0b\\xca\\x11\\x98\\xbf2\\x15\\x1b\\xb8\\x9d\\xd0\\x85\\xbf\\xc4\\xd3?s\\xa7\\xe1z?$\\xaf%L.&\\xa0\\xbf\\xe7{\\t\\x03>gz?L\\xf0\\xd6Na\\xf8x\\xbf\\xbf\\xe2\\x0f\\x19\\x14h{\\xbf\\xf7@\\xeb(\\xbf>\\x8d\\xbfS_\\x94\\xd3l\\x95v?\\xf9\\xda,|\\xce\\xc5\\x8a?B\\xd5 \\xbc\\x91\\xe5\\x8a?\\xc2\\x16\\x9eU\\x1d\\xbd\\x8c\\xbf\\x1e\\xbaU^\\x06\\x8c\\x87?\\x9f)\\xb5\\xeeq\\xb8\\x86\\xbfU}#\\xbb\\xab\\xdb\\x80?X[\\x17\\xb10#p\\xbf\\x1c\\xb7<#\\xbebp?\\xc19\\xd0_::u?8\\xb7j\\x93\\x08\"\\x91?2\\x9c\\xd9\\xa0n\\xc2\\x92\\xbf\\xe0\\xfeC\\x99f2f?\\x08=I\\xcb\\x0c\\x8d]\\xbf(\\xce\\xe8m^\\x8dz?\\xfc\\xeb6 \\xe9\\x0f{\\xbf\\x0c\\xa4\\xf2\\xd0]\\x8b\\x95??\\x9e\\xb5\\xc2F\\x87r?p[X?\\x8d\\xb7\\x8b\\xbf\\xb7 \\xc9\\xf6*\\xb8\\xa1\\xbf\\x1c\\xc03\\xa2\\x19\\x83\\xa7\\xbf`\\xd5Z&\\xd4\\xaf\\xba?\\xd4\\x19r\\x82\\x11\\xcf\\x9c\\xbf\\xe4\\xe3\\xc5T/d\\x98?6\\x9a\\x1b\\xccB\\xbf\\xb4\\xbf\\x02\\xe4Q\\x9a\\xb3\\x07\\x95\\xbffU\\xd1W\\x8d\\x86u\\xbf8\\xb7\\xc6\\xea\\x02;\\x8c?9%\\xddN}s\\xb0\\xbf\\x14\\xdf\\xd2\\xeeI\\xfa\\x94\\xbf\\xac%\\x03{m6\\xbb?\\x1d \\xbd\\xff\\x9b\\x85\\xa4\\xbf`\\x9eC\\xd9\\x02\\xef\\x7f?\\t\\x11\\xcf\\xed\\xceR\\xa4\\xbf=\\x83\\x9b\\xab\\xd4\\xf6\\xad\\xbf\\xdaw\\x8c\\x17\\xf11\\xa6?\\x10a\\x95\\xa1\\xad\\xe6z?b\\x92\\xd6\\xda\\x1aa\\x8e\\xbf\\x1c<\\xe4\\xc9\\x81\\x01\\x91\\xbf@\\x9b\\xea\\x10\\xebf\\x92\\xbf\\xe2@W[\\xd7\\x99\\x80?(\\x8c\\xc0l\\x88\\xa1X?\\xa69\\r\\x80\\xfb\\x81\\x8f\\xbf(\\x0b\\xf5\\'\\xec\\xbc\\x9b\\xbf\\xbe\\xb7j\\xca9q\\x85\\xbf\\x04\\xd2\\x1b\\xf4/L\\xa4?\\x9a;,\\x03\\xf0R\\x86?[\\xfbA\\xbcSd\\x8a?\\xd7\\x12\\xa2X_\\x85\\x8b?\\x94\\x04\\xd5\\x80?\\x81\\x8c?\\xa9\\xf0KA\\xce\\x98\\x80\\xbf\\xb0\\x8f\\r\\x11U\\xc1\\x96\\xbf\\x9a\\xe9\\xef\\xe7!S\\x96\\xbf8\\xe5\\xaf\\x87\\x0c\\xcdS\\xbfT\\xea8\\x96\\x8e\\x84}?\\x80\\xba$Z\\x884\\x9b\\xbf\\xa02$\\xdb\\xe0\\xbfP?E|\\xd7hw\\xb2\\x82\\xbf\\xa8\\xad\\xff\\x9f\\x99\\xc7\\x8e?\\xc7\\x1c\\x99\\x9c@\\xdfE\\xbfn\\x9e\\xb7\\xc1:0U?\\xf8\\x16\\x1a(\\x8a\\xd6\\x82?rq\\xd9\\x86\\x05\\xf1y?\\x00\\xeb\\xbd\\xad \\xb9r\\xbf\\xb0s\\x91\\x9f+O\\x8f?\\x00H\\xb7\\xab\\xcd\\xf3{\\xbf\\xe01\\xb4\\x17\\xc4\\x04o?\\xe5\\xa5\\x99\\xb0\\xfd?k?\\xc6J\\x9d\\x96\\x1a\\xe9t?\\xbak\\x8e3T\\xf4L?\\x80\\xba\\xedV\\x99\\x1c[\\xbf\\xdc\\xd8\\x89\\xbe//w\\xbfR}\\xb6\\x08yIs? y\\x91\\x98.\\xca:\\xbf@Y\\xc9\\x1a\\xb3\\xf9\\x86?\\x00\\xb5\\xef\\x19\"Sn\\xbf\\xb1?\\xc6\\x0cp\\x18T?\\\\\\xc06:\\x0bb7\\xbf\"\\xe9\\x0b\\xfe\\xfd=B?LI\\x0fo\\xe5\\xf2v\\xbf\\x18op\\x97\\xd4>o?\\x10\\x08T\\x99$W@\\xbf\\\\\\x11x\\x91\\xd6>f\\xbf\\x80\\xd7]\\xed\\\\\\xda\\x89\\xbf\\xf0F\\xc2\\xa7\\xb4\\x9a\\x80?\\xd0\\x1d9!\\xce\\x8aM\\xbf\\xb8E\\x14\\xeb\\xcaOg?\\xc8W:2\\x02\\xe0[\\xbf\\xd4\\xf7\\xe2=>(\\x8d?*\\xe7\\x99\\xd6\\x93U\\x91?\\xd4\\x19r\\x82\\x11\\xcf\\x9c\\xbf\\x87\\x86%\\x90\\xd5\\xc6\\x94?\\xb8\\x0b\\x12\\x83t?\\x8a\\xbf1\\x08Pj\\x8f\\x10\\x9e?\\xb0\\x00@\\x02\\x11\\x82B\\xbf#F\\xc0\\xbb%$n?\\xd0\\xb7\\xe8\\xe9\\x8f\\xf04\\xbf\\xc9\\x92(y\\x91\\xcc\\x94?p)>B\\x80\\xe6w?\\x91\\\\ZYi\\x12\\xa3\\xbf\\xf3\\x8c\\xde\\xdcT\\x99\\x97?X;v\\xf9\\x85F\\x88\\xbf\\xb2h\\xe7\"\\xcfu\\xa1?\\xe6g\\xd0l5\\x0b\\x98?\\x08/D\\xd6\\xfd9\\x95\\xbf@\\x1b\\nG\\x0f\\xd9O\\xbf-\\xb0\\xe1P\\x90m\\x96?\\x80\\xf8\\x82r\\xba\\x7fw?\\xcc\\xd3\\x11C\\x90\\x0c\\x83?\\xdat\\xc3\\xae#\\ny\\xbf\\xa0Z\\xe4\\x13\\xef\\x0c:?\\xe0\\xcb\\xa6e\\xb4\\xbbU?\\x80\\xd8\\x0ek\\x87\\x17b?xI\\x0c\\xdba+R?\\xb0\"\\x1d\\xaf\\x1cS]?X\\x1e\\xf1\\xa5\\xad\\xedV\\xbf\\xe6\\xc3E\\xb1\\x1d\\xf9j\\xbf\\xda\\x99K\\xcc\\xcd\\x95t\\xbf\\xe0\\x80E\\xd2\\x0f\\x87w\\xbf\\xae\\xad\\xe7-{\\x94j?\\x14^\\xdfr\\xcc\\xd9u?\\x18;\\x16\\xa6\\x1d[\\xa0\\xbf\\xb6\\xb8\\x9c*:\\xe6\\x84\\xbfHL\\x8e\\x0b\\xcd\\x91\\x85\\xbf\\xd8\\xe3N\\xc4\\xc5\\xdb\\x98\\xbf\\xe8\\xed\\x11\\xc2bwv?\\xd4\\x07Y\\x84\\x99\\xf5\\x80?8\\xe4\\t\\xbe\\x1b|\\x9e?tc\\x9b\\xf6\\x82rt?|\\x010\\x84p]n?\\x18\\x05\\xfd\\xd3\\xbe\\xa7\\xa0? \\n}]\\xa2\\x03J\\xbf\\xd0\\x0c?v\\x87\\x8bs\\xbf0\\x94\\xd7f\\x85U\\x9b?\\x02\\xa7B\\x1dz-\\x82\\xbf\\xa0\\x82\\xbd\\xb9pu`?0T\\x96\\x08\\x17\\x11_?\\xec\\x054\\xb0\\xa4\\x97d\\xbf\\x1c]\\xba\\xf3\\xe9\\x89u\\xbfK8\\x8a\\x1a\\xbf\\xfc\\x89\\xbfP\\xe5#~\\x1c\\x14j\\xbf\\xbc\\xb1#\\np8\\x80?\\xc3\\xadV\\xd2\\xf5\\x1e\\x93\\xbf\\x00it\\x08n>]\\xbf\\xdc\\x94\\xc2\\xc4\\xb2\\x0c\\x8f\\xbf\\x14\\x96\\x19#zY\\x89\\xbftW\\xef\\x0c\\xa4\\x86\\x82?p\\xc8\\xafw@\\xe5E?Tt\\xcb\\x84\\xc7\\x1a\\x95?p\\xbf\\x95\\x88\\x85lq\\xbf\\xf9l\\x14\\xe2\\x9aA\\x90\\xbf\\xf4\\x91\\x9fY,\\x86\\x96?\\xe0S\\xea\\xa58xq?\\xd8\\xfda\\x94Q\\xe7\\x8c?@\\x83\\xd6\\x84\\xf7\\xa9c?\\x9f9\\xb2&\\xd3\\x8d\\x89\\xbfd\\xf5\\xfbu!^{\\xbf\\xda7-\\xad\\t\\xda\\x94\\xbf\\xf5\\xad\\xacM\\x0c\\x9a\\xb6\\xbf\\xe4\\xe3\\xc5T/d\\x98?\\xb8\\x0b\\x12\\x83t?\\x8a\\xbfvL\\xfa\\xf0q\\xfa\\xb8?2H\\n(UM\\xa4\\xbf\\xe4AO\\xf8\\xee\\x85v\\xbf\\x9c\\x8bK\\x04&*\\x8c\\xbf\\xc4\\x96\\xb3\\x9f\\xe9y}?X;h\\xc8\\x174\\x80\\xbf(\\xea\\xb9\\xa0K\\xb8\\x9b\\xbfF\\xd2Z\\xe4\\x0c\\x9c\\xa8?\\x99\\xb5\\x05\\xca\\xce\\xcf\\xab\\xbf\\xb6}-t\\xe1\\x05\\xaa?\\x9b\\x10\\x8f\\xca\\xba\\x95\\xb1\\xbf:M+\\x14\\xe4V\\x91\\xbf\\xe0\\x7f\\x00\\xdf^)\\xa4?P\\xa0\\x82\\xc8/gt\\xbf\\xb4V\\xc4\\xb0\\xadY\\x93\\xbfx\\xba\\x8d>d9\\xab\\xbfp\\xd2\\xa2\\x80\\x1e\\xc7\\x84?\\xa5\\xf7\\xe3\\xbb1@\\x9f?\\x18?\\xf3+\\xc2ss\\xbf\\xf8\\xcex\\xd5\\xed\\xbep\\xbf\\x9a\\xfb\\xd7\\\\\\x8d\\xba\\x80?X\\x18\\xefU\\xcbJo\\xbf\\xac.\\x8e\\x99\\xc1\\x8c\\x84?\\xa8\\x97\\x98mO\\xff\\x82\\xbf.\\xf9\\x82b\\xa2m\\x7f?`\\xe48\\xa0\\x9c\\xc5x?8r\\xf6\\x10\\xc9\\xbap?x\\xf3y\\xa52`q\\xbf\\xea\\xc1P\\xcd7\\xa5\\x92\\xbf)WXL\\x86i\\x83\\xbf\\xdd\\xca \\x88\\xb1\\x1f|\\xbf\\x021\\xa5\\xb1\\xc0\\xdcr\\xbfe\\x8e\\xb4:\\xac\\xe3\\x96\\xbf\\xdc\\xa0\\x9b\\xf0\\x8e\\xc7\\x85?\\x82\\t#\\x8a4\\xfff\\xbf\\xb6T\\xad\\xf2J\\xf0\\x81?\\x00\\x16:lK]b\\xbf\\xeckZ=\\x14\\xf3a\\xbfFV\\xb8c\\xde\\\\\\x8f?\\x8d#tf\\x83\\x19\\x80?\\xc9\\xbf2\\x89\\x0eFq\\xbf\\x18\\xf8\\x15\\xa7\\xd8b\\x98?\\xdd?\\xbc\\xb3_\\x10t\\xbf\\xf8U\\x93\\x1a\\n^s?\\xe6\\x9c\\xd3\\xe3\\xea\\xdbp?\\'\\xf8~\\xc1=st?\\x08\\xcc\\x06\\xae6\\xfe\\x8b?\\x12W\\x0e\\xc9\\xd3\\xbc\\x90\\xbf(\\x99\\x1cpC\\xed{\\xbf\\x0b\\x9b\\xdd\\x04\\xe2|\\x8f?\\xd3\\xe8o\\xf1\\xf9\\x13\\x87\\xbf\"L\\x96+\\xbf3{?eyr\\xa6,\\\\p\\xbf\\xab\\xb6\\xec\\xa9\\xbaiu?hT\\x81\\x86_3x\\xbf\\xca\\xa7\\x15\\xe3\\xff\\x9aE?\\xa4\\xec\\x15\\xea\\xa0/\\x84\\xbf:\\xb3\\xcc{$!\\x87?@\\x9f\\x8f*\\xc4\\xbfq\\xbf\\x8a\\xd1\\x12\\x9bf\\xf3o\\xbf`Ts|\\xed\\xbd~?4\\xfaU=\\xd0\\xb7[?\\xc2\\x13\\x9fs\\xcc\\xea\\x9a\\xbfJ\\xc7\\xbd\\xfb\\xe4\\xaa\\x98?\\xf9\\x8f\\xb5\\xa3\\xa9\\xa7\\x8a?\\x198\\x8d\\x05\\x01\\xe9\\x9c?\\xb3\\xbdn;\\n\\xf0\\xa4?7\\x9a\\x1b\\xccB\\xbf\\xb4\\xbf1\\x08Pj\\x8f\\x10\\x9e?2H\\n(UM\\xa4\\xbf\\xdd\\xc1\\xd9\\x99\\x18\\xec\\xbc?\\xb6\\xa6\\xbc\\xfd\\x97\\xac\\x9d?\\xa0\\x93p\\x97\\x05\\xbe\\x81\\xbf\\xa4\\xd4\\\\*`\\x1b\\x91\\xbf\\xba%\\xe86LE\\xa2?\\x95#OD&\\x86\\x82?\\x9c]\\xabN\\xa6\\xdb\\xb0\\xbf\\xc6\\x89s\\xd0\\x14\\x12\\xb3?\\x8bq\\xa3S\\x7f\\xab\\x94\\xbf\\xa8\\xda\\xbd\\x18\\x1aD\\xb6?\\x88\\xcf&!\\xa4\\xe5\\x9e?\\xa9\\xd0\\xf1{\\x8d\\x86\\x90\\xbfZ\\x9ea\\xb8\\x14o\\x90\\xbf\\xb4@\\xc9d\\x843\\xa0?\\xfa\\t<\\xba\\xed\\x8f\\x94?\\x1am\\xcbS\\xd9s\\x87?2hQX\\xb8\\xd5{?\\xbc.Sb\\xf7\\x88^?dK\\x82\\x1a\\xf2\\xc5\\x9b?H\\x94\\xd8\\x84p&\\x96?6\\xddTQ\\xd2\\xb5\\x83?\\xf6\\x7f\\xfcy\\x9a*\\xa8\\xbfg\\x8a2\\xa2\\r\\xe5h\\xbf\\xb2[!x\\x05\\xed\\x91\\xbf\\x96\\xa0\\xceA.\\x02\\x92\\xbf\\xf7\\xab\\xb4\\xf5\\xec[\\x91\\xbf!!G\\x10\\xc2$\\x8c?\\x11\\xde\\xdb~\\xdc>\\xa0?\\xec_\\xb7\\xce5\\x11\\x86?\\xc7\\x17J\\xbc,\\xf9y\\xbfs\\xfd\\xa4\\x83+b\\x89\\xbf\\x14q\\x89p\\x96\\xdd\\x8a?\\nPM\\xc7)\\x15s?^\\x1c\\x0f\\x97\\x8f+\\x84?\\xe8\\x97\\xd2\\n~\\x03s\\xbfd\\xf1\\xd7)u2Q\\xbf\\x944\\xa9\\x03\\x08\\xfbb\\xbf\\xc0\\xc4\\x92\\x13\\xf2~\\x9d?\\x06Q\\xff1\\x96OU?p)\\x81\\x1db\\xb8b\\xbf\\xb0F\\xf0\\x92\\x0f\\x1a\\x97?6\\xfd\\xe9\\xc3\\xa8\\xe76?\\xc0\\n\\rjs\\x1bM?\\xa0%\\x07\\xcd1\\ra?\\xd8\\xe0.\\xda\\x80zF?\\xa2\\xb9\\x96\\x85\\x96sp?C\\n%\\xbcT6y\\xbf\\\\\\x8d\\xa7\\xa8\\xe5\\xd3b\\xbfX\\xfb\\x12\\xa69\\xd6\\x87?\\xa4\\xa5\\x9b\\xcc\\xf9\\xc2p\\xbf\\x18\\xd0\\x18Z\\xc7\\xc7v\\xbf,\\x0fe[7W\\x7f\\xbf\\xc6x\\xa8\\xcd\\xa1bw?\\x06a\\xe7n\\xf6\\xe1g\\xbf\\x83\\xce\\x8b-jtp\\xbf\\xe2H\\xb6{%\\xac\\x80\\xbft\\x81\\x04\\xeeC\\x9c}?\\xe2\\x9e\\xba)\\x1b^\\x88\\xbf\\xf0\\xe7s0f\\x05P?8**\\xfc\\x8b\\xec\\x91?\\x00\\xaf\\x1d\\x94\\xf7\\x8cs?\\xa6\\xa3\\x81J\\xd7\\x9d\\x96?;Y|\\xaeX\\xf3t?\\xd7\\xeag\\xf2\\xd3\\x9b\\x88?\\x8a\\x12\\x8c\\xcd\\x04\\xdcs?,\\x07^\\x96\\xa2\\xad~?\\x02\\xe4Q\\x9a\\xb3\\x07\\x95\\xbf\\xc0\\x00@\\x02\\x11\\x82B\\xbf\\xe8AO\\xf8\\xee\\x85v\\xbf\\xb6\\xa6\\xbc\\xfd\\x97\\xac\\x9d?\\x88\\x96\\x96\\xaf\\xc8\\xcf\\xac?\\xb8\\xaadf\\xbfUs\\xbf\\x94\\xc2(\\xf4\\x93\\x98\\x8d\\xbf\\xb4Y6\\xe1\\xb0\\x9ee?\\x00\\xfe\\x93\\xcbA\\x96\\x87\\xbf\\xe8I\\xdf:YL\\x8a\\xbfg\\x93\\x0fX\\x06\\x06\\x88?4d\\xf4Eu\\x89\\x89?\\xa8\\xban\\xca\\xb6\\x9c\\x84?\\xdc\\x9c\\x1e\\xae<\\x99v?\\xc0\\x87\\x0b\\xb9\\xe4\\xe2\\x7f\\xbf0p\\x8a#\\x8a/d?\\xe0=\\x19h\\x93tR\\xbf \\x18\\xfcW\\xb3\\nf?\\x00\\xae\\xb7y\\x19/k\\xbf\\x14\\x12*\\xc47\\x06<?\\x90\\xf1\\xc2xR\\x04G\\xbf\\x10\\xa1\\xde\\x078\\x1fl?\\xd8\\x1f\\xd9|\\x17\\xf8\\x80?@\\x8c\\xea\\xbd\\xeeyj?\\x07\\x0f\\xb6\\xfb\\xc8\\xba\\x95\\xbf\\xa8\\x97a\\xe2,\\x88s?MFL3\\x00Cm\\xbf\\xc0\\xf8>c\\x81\\'G?\\x10Z \\x86H5n?\\xbc\\xf1Qo\\xd5oc?\\xd0\\xd5\\x86\\xc1G\\x9d{?Lr\\xbe\\x13\\xdc\\x95\\x8a\\xbfRi\\x02Lk\\xa1w?[u\\x1cO3\\x0f\\x8e?\\tSc\\xdfy5\\x80\\xbf\\x96\\xd4KZ\\xc8\\xa3L\\xbf\\xe2\\x89\\x1bc\\x1d\\xd1u\\xbf\\x08_\\nz\\x94\\xd44\\xbf\\x01U2\\xc9\\xa5\\xb3e\\xbf;\\xa2\\x9f\\x7fc[S\\xbf\\xba6t\\x82\\x07\\xa9\\x99?U\\x1e\\xc0\\x95\\x11\\xe5\\x82?\\xeb\\x08\\xda\\xcc\\xca\\x0bt\\xbf\\xef\\xef\\xceV\\xd6M\\x95?\\xaa\\x93\\xfal^\\x7f}?\\xa9\\x0f\\xfc\\xab\\x89\\x8bY?\\x83\\x07\\x1d:3\\x14A\\xbf\\xdah\\xa3Q\\xa2\\x89A?H\\xe1\\x90u\\x1a\\x16q\\xbf\\x98cAO\\x1f\\xf0\\x83?#O\\xa6\\x9ct\\xf3s\\xbf\\xaeDS\\x84(uR\\xbf#\\x0f4\\xa1Y#\\x86?\\xa8\\x9f*\\x92\\x1aV\\x81?\\xe0\\x18h\\x0f}\\xb0=\\xbf\\xd4Q\\x0f\\xe9\\x8d\\xb4<\\xbf\\xe5 C&\\x90\\x14h\\xbfUVO8\\xed\\xcdN\\xbfJ~\\x19\\x8c+\\x80\\x83\\xbf\\x9a\\xb28P\\xb4ww?\\xf1x\\x13\\xb7\\xba\\xd4T\\xbfNY4\\xbaH*\\x86\\xbf\\xd0k/\\xa0\\xae\\xd3\\x87\\xbf\\xaa\\xeb\\xf08|Sw?j\\xca\\xa9;\\x96\\x04\\x84?\\xa0O\\x96\\x8a\\x07\\xfa\\x9d?\\x87l\\x04\\x89\\xc3kr\\xbf7\\x1a\\x03>*(q?\\'\\xea\\xcf\\x8fm\\x8c\\x7f?fU\\xd1W\\x8d\\x86u\\xbf!F\\xc0\\xbb%$n?\\x9c\\x8bK\\x04&*\\x8c\\xbf\\xa1\\x93p\\x97\\x05\\xbe\\x81\\xbf\\xb8\\xaadf\\xbfUs\\xbf\\x17\\x03\\xf4V\\x12\\xa0\\xa9?M\\xe5o\\xba\\xc9j\\x82\\xbf\\xdb\\xbf\\xed1p\\x9cV?\\xa0\\x9e+:1\\xf4y?[\\xa0\\x90r\\xdc:\\x87\\xbf\\x802I7\\xdd\\x96`\\xbfm\\xf6v\\xa1Udd?0\\x08\\xc7\\xd8\\x95\\x02&?\\x97\\xbf`\\xc4C\\xe1\\x89?`^\\x8a$D\\x1fg\\xbf>\\x19X\\x97\\xbagZ\\xbf\\x9b\\xbd\\xa6\\xa3\\xc1/b\\xbf\\xc5\\xab\\x9e\\x80H\\x08\\x95?X-\\xe0!^\\x11\\x7f\\xbfT\\xe9\\xd0*e\\xc8R\\xbfh[(\\xe9\\xd8C:\\xbf\\xf1\\xe1\\\\\\xc1\\xc9\\xabp\\xbfmP\\xf4}\\xfeW\\x81\\xbf\\xeec8FO\\xea\\\\?\\xf0\\xf6\\xc4\\xc6\\xa0\\x91v?\\xbe\\x0f\\xf4S\\xa4\\t\\x82\\xbf1Y\\xacp\\xc9\\xc5G\\xbf\"\\x8cZ\\x9b\\xe1\\xb2u\\xbfb\\xeed\\'$\\xe8b\\xbf\\xe0\\xa3S@\\x94vJ\\xbf\\xb9\\xec\\xa0\\xd0\\x8c\\x80u?\\x1c\\x89}\\xe6J\\x88\\x80\\xbf\\x18f^v\\xee\\xfe\\x17?\\xac\\xc5?\\x1aM\\xd9o? B\\xa3\\xc3\\x84Nb\\xbf6\\x08t\\xf71zf\\xbf\\x80\\x9f%\\xb6\\xe8\\xf3\\x17?\\x14v\\xb9\\xa7w\\x87v?\\xe0\\x8e\\xcb\\xacOeV?\\x82\\x8f\\x8e\\xe8+\\x03M\\xbfL[v\\x97N){\\xbf\\xd4\\x16\\xf1\\xe6\\xc9\\xb9E?PG\\xe1\\x13\"\\xec0?a/\\x9f\\xb8\\x10L\\x8e\\xbf.\\xb9](\\xcc<j\\xbf\\x04\\x92r\\xe8\\x9d#T\\xbf\\x15\\x14\\xd3\\x8ek\"d\\xbf6\\x14D\\xba\\xcdDe\\xbf\\x06I\\xc3l\\xb05_\\xbf\\xe8\\xe7\\xa1\\xd2.Gh?\\x83\\x9d\\x88\\x9d\\x06\\x83X?\\xe7\\xc9>\\x1c\\x8c\\x13j\\xbf\\r\\xfe\\x9b\\xaad\\'s?\\xb1\\x93*^.Pm?t\\x18\\xb6\\xfa!\\xb7^?m\\xf4I\\xe4<\\xa9]\\xbf\\x0e\\xf4o\\x1e\\xa7\\x16T?\\x8a\\xff{\\xff\\x82\\xaaZ?*\\x04\\xab\\xf5\\xe3\\xb2v?\\xbeV\\xa5\\x80:\"}\\xbf\\xe03\\xef\\xbc\\x83k=\\xbfI\\x9e\\xc5\\x81@\\x9dm?~\\x8a#O\\x19\\xad\\x7f\\xbf\\x98\\x0e;\\xa9\\xbaSR?\\x97l~\\xb9\\xd7\\xd3T?\\xd9K\\xd4\\xe4\\xaa\\xd8\\x90\\xbf\\x92o\\x88\\xb9%\\x03t\\xbf<\\xbb\\xc3P\\xd0\\xb7r\\xbf\\x11\\x88[i\\xbb\\xbd\\x85\\xbf8\\xb7\\xc6\\xea\\x02;\\x8c?\\xd0\\xb7\\xe8\\xe9\\x8f\\xf04\\xbf\\xbc\\x96\\xb3\\x9f\\xe9y}?\\xa4\\xd4\\\\*`\\x1b\\x91\\xbf\\x94\\xc2(\\xf4\\x93\\x98\\x8d\\xbfM\\xe5o\\xba\\xc9j\\x82\\xbfm8\\x91M\\xef0\\x91?ue\\xeb\\xce\\x9drt\\xbf\\x9c\\\\\\xfaZgaq\\xbf\\xf5\\xfc\\xd5\\xbe\\x80\\xb3\\x86?\\xa2x\\x8ds\\xd1\\xa8v\\xbf\\x9ev\\xed\\xa9\\x04\\xdb\\x82\\xbf\\xc6\\xed\\xf5\\x17\\x8b\\xa8t\\xbf\\xf2\\x93:_\\xfe\\x0c\\x85\\xbf\\x80\\x84\\x11:\\n9 \\xbfh\\xb9\\xe2,\\x18\\x07i?\\xbd\\x0b\\xc0\\xcfF\\xcdz?\\xa4g\\x83h\\xe8\\xf9\\x85\\xbf\\xff\\xa8 \\xa3\\x13\\xfcq?\\xe3ja\\xb3]\\xbeq\\xbf\\xb8\\xdcv\\xdc\\x8er2?\\x00=\\xcd\\x86\\xb3\\x0eH\\xbfg\\x9f\\x15\\xe1TPf\\xbf\\xf4\\x99\\xf9AE\\xfal\\xbf\\xa2\\x8c\\xa27\\x89\\xa0\\x8c?\\x08\\x8d\\xc8,\\x7f\\x7fs?\\xd6)cH\\xc4-f?\\x01\\xed\\x0f\\xf2\\xfcrg?h\\xbe\\x12\\xa5\\xb6<k?\\x04\\xfbKc\\xca\\x92G\\xbfL\\xe1?\\x8f\\xb5\\xc9\\x81\\xbf\\x90h\\x13\\x8fY\\xf2\\x96\\xbfT2\\x06\\xf3\\xa9<|\\xbfpM\\x1f9A\\xdba\\xbf\\x96AOU\\xe5\\x86\\xa2\\xbf51\\xb2\\xd8Q0x?\\xc0!ez\\xbeb\\x7f\\xbf\\xe2\\xcf\\x8f\\x1f\\xcb\\xb8\\x94?\\xe6\\xbe\\x8b6\\x9eLg\\xbfm\\x91L\\x19-\\x7f\\x81?xK\\xce\\t)o\\x84\\xbf4\\x0f\\xeel\\xbf\\xf1V?0\\x15\\x183\\xe4wP\\xbf`\\xa0\\xd4fu\\xf4v?\\n\\xb2\\xc8\\x16\\xd6\\x8a\\x81\\xbf\\x8cp\\xaf\\x10\\x95\\xa5s?\\x02\\xf9\\xfb\\x1a\\xab\\xdbs?m\\xca\\x9f\\x13k^\\x8d?\"{\\xb07\\x97\\x9e~\\xbf\\xf6H\\x10\\xf6#\\x83w\\xbf\\xd8M\\xa2\\x05r\\xaeu\\xbf\\xe0Z\\x02\\xda\\x0b\\x1fq?\\xa7\\x8a\\xfa\\x1a\\xe5\\x83\\x85\\xbfT\\xfb\\xae\\xfb\\xf67\\x8b?\\xe8b\\xf8t\\xb1Yk\\xbf.\\xe5\\xac\\xdd\\x83\\xd0k?O\\xa5\\xdbV\\xb93c?T\\xd8\\x95\\r~\\x99e\\xbf\\x14s\\x0e\\x1b\\xbbE\\x83\\xbf\\xf0\\x8e\\x13\\xcee\\x8ee?\\xed-3\\xceA\\xbb\\x81?\\xb0<\\xef\\xaa\\x95c}?\\x00V\\xc3\\x8c\\x81\\x80\\x93\\xbf\\x80\\x81\\xaaU\\x7f\\xa0h?\\x140\\xb3\\xbd}\\x9f\\x89\\xbf<\\xdb\\xe6\\x87\\x1e\\xad\\x8d\\xbf\\xb8<(\\xe9\\xb5\\xcfx?\\'\\xfc\\xc4+&\\xdc\\x99?\\xe8\\x10 \\xd8pS\\xa2?9%\\xddN}s\\xb0\\xbf\\xc9\\x92(y\\x91\\xcc\\x94?X;h\\xc8\\x174\\x80\\xbf\\xbb%\\xe86LE\\xa2?\\xa8Y6\\xe1\\xb0\\x9ee?\\xdb\\xbf\\xed1p\\x9cV?ue\\xeb\\xce\\x9drt\\xbf\\x06\\xcc\\x04\\x8aC#\\xb3?p|\\xc1\\xa6r.\\x9a?X\\xf2M\\x87]\\r\\xb8\\xbf\\xdd\\xfdhPX\\xea\\x91?@\\xcc\\xd2F\\x9f\\xc5A?\\x80\\xc9\\xdb\\x0cg\\x91\\x90?\\x19\\x82\\xb8\\xedt\\xbb\\xb3?\\xf6\\'\\xda$(:\\xa4\\xbf\\xf4\\xce)\\x13\\xd1\\x92\\x8e\\xbf\\xa6\\xf5\\x12i\\n\\x9e\\x8d?\\x80\\x8f\\xc7\\x93\\xba3Q\\xbf\\xb4\\xfd\\x84\\xbeq#\\x9a?\\x00,-bvA\\x87\\xbf\\xa2\\\\k\\xda\\xda\\xb0\\x7f\\xbf\\x90\\xb1\\xe2#\\xd5\\xb3q?*\\xc4\\xcd\\xd9\\x9c$\\x8a?\\xf23\\xbd\\x0e\\x0e\\xf9\\x80?zyk\\n\\xbdO\\x8c\\xbf\\xa49b@\\x07\\xe3\\x91\\xbfk\\x7f\\xcc\\xe3^\\x80j\\xbfa\\xc7V\\x88n\\xf9\\x85\\xbf\\xe3\\x9b\\xd4Cw\\xda\\x8b\\xbf\\x08\\x89\\xa8\\x06\\xdbHQ?\\xc2\\xb5\\x97w\\xe9\\x16~?\\xc0\\xa4\\x04\\xbb\\x8dA\\x92\\xbf\\xf0\\xca\\xa9H\\xe5a@?\\x10\\x00T\\x08\\xf0\\xb6u?\\xa0\\xb1\\xec\\xa3\\xcc\\xc8z\\xbflCv\\x0f\\xd7{q\\xbf\\xa08(\\x19\\x99\\xa4\\x7f\\xbf\\xc0c/\\xb2C\"v?\\x1c\\x1b9\\x9e\\xa0\\xbbp?\\x02\\xea\\xe5\\xd7\\xe5\\xa9q?\\x00\\xac\\xb1\\xcb:,\\x8a?\\xd0\\xfe\\x874\\x06\\x17d\\xbf0\\xa2ewg\\xc7r\\xbf\\x00~\\xb0;b \\x82?\\xf9\\x89\\xf6%\\x9f\\x1fs?\\xd0\\x865?\\xce\\xc5o?\\xa0\\xb2\\xea\\xb7\\xa4\\x9cR\\xbf\\x11\\x04\\xd2\\xa3\\x91\\xbd\\x88?\\xc4\\xd7{l\\xc10^\\xbfRd\\xe7\\x97\\xefR\\x7f\\xbf\\xf4\\xeb\\xcaq\\xf1\\x9b\\x7f?\\x90\\x06\\t~\\xb7Zq\\xbf\\x7f\\xf6\\xfaC\\x91\\xb5\\x81\\xbfx(W\\xff[\\x04\\x81\\xbf@P\\x01\\x8f\\xdaiV?\\x9e{\\xc2\\x835Gu?\\xea\"F \\x978w?\\x00\\xbd\\x9f\\xc4\\xd7\\xb5\\x16?`6\\xea4\\x19\\xa7g\\xbf\\xc0\\xe9#\\x8f\\xe7\\x83g\\xbf\\xef(\\x9d\\xb0\\xbf\\x8e\\x93?\\x88K\\xd5B\\xc8o~\\xbfP\\xd6\\x1a\\x14v.v\\xbfh]m>\\xa7\\xe3\\x81\\xbfT\\xbcJ\\xed7\\x1f\\x83\\xbf\\x0c3\\x07\\xfb7Bt\\xbf\\xf8\\xca,M\\xa1-\\x80?\\x14+\\x04\\x1d\\x16\\xc7\\x8b?\\xb2\\x12^\\xb0x\\x90\\xad?\\x12\\xdf\\xd2\\xeeI\\xfa\\x94\\xbfp)>B\\x80\\xe6w?(\\xea\\xb9\\xa0K\\xb8\\x9b\\xbf\\x97#OD&\\x86\\x82?\\x00\\xfe\\x93\\xcbA\\x96\\x87\\xbf\\xa0\\x9e+:1\\xf4y?\\x9c\\\\\\xfaZgaq\\xbfx|\\xc1\\xa6r.\\x9a?\\x8c\\t\\xabu\\xc4i\\xb3?hb6B\\x1c\\xe3\\x92\\xbf\\x808\\xa4D#\\x12D\\xbf`\\xa9\\xfcT\\x9a\\xb4\\x8d\\xbf\\xd0p\\xd1\\x8d\\x90Y\\x8a\\xbf\\xc0l4\\xb5\\xa0\\x13\\x97? |a/\\x94\\x1e\\x89?\\xd0\\x9fN\\xce\\x12\\xde\\x97\\xbf\\xc0P[\\x0c\\x04\\x8bd\\xbf\\x00C\\x90\\x01\\xf1:\\x8e?@\\x1d\\x1a\\xbf\\x11\\x12\\x89?\\xd3RBM}:a?\\xa0\\xe1B\\xa0\\x842o?\\x80\\x16\\xb8lW\\x1ag\\xbf\\xb5\\xa3\\x86%\\xf1\\x9c\\x86?\\x889\\x8c>]\\x90m?\\x98\\xecj\\r\\xed\\x05\\x80\\xbf\\xbfA\\x08xU\\xa3\\x9b\\xbf\\x0c\\xb4h\\x90S\\xa0l\\xbf\\x90\\x15\\t\\xe5\\xb7\\x84\\x88\\xbft\\xbc\\xd8\\x8d\\x92\\x94\\x89\\xbf@\\xa7I \\xf5\\xb4E\\xbf\\x84\\xcb#3\\x8c\\xb6\\x83?\\x00\\x8e\\xe1\\xbe\\x13\\xfdm?\\xf0aW\\xbe\\xd9\\x82b?\\x90({\\xaci\\xbfp?\\x00\\xdb\\x8b\\xbf1\\xad\\x94?\\xa8\\x04]^p+e\\xbfP\\x8ap\\xdf\\x7f\\xeax?@mxl\\x06\\x91\\x87\\xbf\\xc7SY\\x11\\x00\\xf7{?\\x138\\xba`\\x04y\\x87\\xbf \\x06K$J\\xf9\\xa3?\\x12\\xae\\x0f\\xed\\xe2\\xbb\\x8a\\xbf\\xc0\\\\\\xec3\\xf1\\x10q\\xbf\\x90\\xab\\x9c\\x89\\x11H\\x9a?HKqw\\xc2\\xdf\\x91? 4\\xcf\\xb8\\xfd\\xc2Y?\\xc0\\xc5\\x07M\\xf8\\xf5\\x87\\xbf{\\x95\\xa7K9\\x9d\\x94\\xbf\\xcd\\x04\\xbd\\xe44\\xc9\\x8a?\\xde\\xecQVG\\xaf|\\xbf\\xcdY.\\x89\\x98\\x89\\x95?T\\xb1\\xb5\\xa3n\\xbe\\x80\\xbf8\\x85\\x82\\x0e\\xfe\\xd8~\\xbfd\\xf7\\xb3\\xdf\\xe7\\x80\\x9b\\xbf`\\x1a\\x0eB\\xac\\xf7j?\\x8eC\\x06\\xc3\\xf1\\xee\\x82\\xbf\\x90(a\\x92\\x14\\x11e?\\x18\\xd4K\\xa4\\xcb\\xbdv?\\xcc\\x8c\\x18\\x9f>\\xd7\\x9c?d\\xf7\\x1dE\\xec&\\x95\\xbf\\xa0]\\xf4+!\\xf3x\\xbfh\\xa9\\x1d\\xa7\\xae\\xa9v?\\xc6\\xe6\\x8fFI\\xe4\\x9e?\\xe0k\\x1c{Q\\xebu\\xbf\\xa8FzvJN\\x83?\\x8a\\xcc|\\xb8\\x05 \\x94?\\x96\\x0f,\\x96u5\\x84\\xbf\\xbd\\x01q2/\\t\\xa9\\xbf\\xdf\\x99\\xd2Bw\\xfd\\xb4\\xbf\\xac%\\x03{m6\\xbb?\\x91\\\\ZYi\\x12\\xa3\\xbfF\\xd2Z\\xe4\\x0c\\x9c\\xa8?\\x9c]\\xabN\\xa6\\xdb\\xb0\\xbf\\xe8I\\xdf:YL\\x8a\\xbf[\\xa0\\x90r\\xdc:\\x87\\xbf\\xf5\\xfc\\xd5\\xbe\\x80\\xb3\\x86?X\\xf2M\\x87]\\r\\xb8\\xbfhb6B\\x1c\\xe3\\x92\\xbf>\\xb0\\x02yy\\x9e\\xca?PZ\\xd2z3)\\xa9\\xbf\\xc0~)\\x1d\\xfd\\x92e?2E-\\xef\\x15\\xc7\\xba\\xbf\\x16R4\\xd1=$\\xbd\\xbf\\xb0N\\xad\\xb2I&\\xb4?\\xf8\\x8baW\\xbe\\x06\\x90\\xbf7QR?\\xc5{\\xa4\\xbfP59]\\xdaQ\\x97\\xbf\\xe0\\x1b\\xa7\\xa4\\x91m}\\xbf\\xe16\\xbeo\\x03o\\xa4?\\xc0\\\\\\xbd\\x97\\xd7\\xda\\\\\\xbf\\x88\\x89\\xb5\\xb8|\\x96\\x83\\xbfup\\xf6c\\xa9\\x89\\x96\\xbf@\\x1f\\x19a\\xc6hu\\xbf\\xb4E~\\x1dj8\\x9d?\\x80\\xca\\xc1\\xa0V\\x1co?<y\\rQZ\\xb6\\x85?hE\\xe7\\xd2\\x93\\xc7\\x7f?\\x88})\\x0e\\xde\\xac\\x8d?\\x10?o\\xaa\\x1a\\x90z\\xbfHp\\x12\\xd9\\x92M\\x93\\xbf ,7\\xc2\\xec:\\x88?\\xc8\\xe7\\xc4\\x1d\\xe5&4?`.\\xcd/-\\x13Z\\xbf@`\\xb1\\xb6\\xddFc?\\xf4_\\xcc\\x10\\x8c\\xc0y?\\xc0K\\xcb\\x13\\x93Gk?\\xf0@\\xb4\\xee\\xa4~\\x7f\\xbf\\xc0nz\\x0bX\\x0fd\\xbfd}}\\xf6\\xdb\\xd3\\x7f\\xbf0\\xa1\\xf4\\xfb%\\x04\\x95\\xbf\\xe0\\xe6K\\x05H\\x81u?`Y\\xd8\\xd9\\xef\\xf3b?\\xb0\\xcf\\x04k\\x8a\\x0c\\x89\\xbf\\xd7\\x9a\\xa0\\xf4K\\x07Q\\xbf\\xa0\\x02\\xaf\\x8b\\xb7>D\\xbf\\x18\\xd5\\xdc\\xe3\\x90\\xd7C?: \\xc1AH\\xa9f\\xbf\\xdf\\x89\\x08X\\xf6\\xda\\x86?@k\\xa03\\x0e\\xb4:?4\\xede/\\xcf\\xf1`\\xbf\\xc4\\x83c\\x1f\\x96 v?\\x82\\xe9\\xfeb\\xbe\\xb1y?&i\\xc09K\\xc2\\x80?\\xf4|T\\x87\\x0bKw?x\\x9a\\xe8\\t\\xa4\\xda|?Lb:{W\\xc2\\x81\\xbf\\x13e\"n\\x8c\\xcaY?\\xb4\\xe4\\xe0\\xcc8\\x18\\x85\\xbf\\xa4G\\xedEZ8|?P\\xb1~n_\\xb4f?\\xbaX\\xb1U\\xc1\\xb4\\x88\\xbf\\xf0\\xbc\\xb0h\\x1fbQ?\\xa0)\\x8f\\xc4\\xb5\\x92v\\xbf\\x98\\xac\\xf1\\x05u\\xc6\\x8c\\xbf\\x86Jr\\xdb\\xb4|\\x9b?\\xef\\xa4_\\xb2\\x0cPg?2\\xadpp\\x80\\x1e\\x96?\\t\\xf2&\"-1\\xa3?\\x1d \\xbd\\xff\\x9b\\x85\\xa4\\xbf\\xf3\\x8c\\xde\\xdcT\\x99\\x97?\\x9b\\xb5\\x05\\xca\\xce\\xcf\\xab\\xbf\\xc6\\x89s\\xd0\\x14\\x12\\xb3?h\\x93\\x0fX\\x06\\x06\\x88?\\x802I7\\xdd\\x96`\\xbf\\xa6x\\x8ds\\xd1\\xa8v\\xbf\\xdd\\xfdhPX\\xea\\x91?\\x808\\xa4D#\\x12D\\xbfPZ\\xd2z3)\\xa9\\xbf\\xc5Gk\\x1e\\x03x\\xb7?YsK\\x11\\xf9z\\xa0\\xbf\\xc0\\xfb\\x9f\\x88\\\\\\x07\\xbd?\\r8A\\xe8\\xe9)\\x95?\\x80\\x82\\xbc\\xb0\\xcb\\xa8w\\xbf\\x08<\\xa5\\xbe1\\xb8\\x92\\xbf7\\r\"\\xa2\\xd5?\\xb0?0o\\xc7\\xc3\\xb1]\\xa6?\\x98\\xb0A\\x08\\xce\\x1c\\x87?X\\xdb\\xb7+H\\xb0Z?\\xf0z\\x12\\x88\\x99Ai?\\xe3\\x9a\\xf5\\xe2\\x10\\x01\\x92?\\x0c\\xbc\\x90\\xc9Y,i\\xbfQr\\xc9\\x16f\\xcf\\x7f?b\\x87\\r\\x85Z5\\x93\\xbf\\x80\\xd1{\\xb4MVo?\\x80\\xce9\\xeca\\x9f\\x85\\xbf\\xbf6\\x95qmC\\x82\\xbf\\x94\\x98\\x95\\xa5\\xda\\x19\\x85\\xbf\\xaa2\\xcdr{\\xfa\\x84?\\x93a\\xc8V\\xfb\\xa1\\x95?\\x10\"\\xbe^\\x1f\\xbd\\x87\\xbf2\\xb9f\\x07#5w\\xbf\\xb0,/5\\xe1\\xd1}\\xbf\\x80\\x1e\\xfc\\x18B\\xdf^?\\xd8p~W\\'vf?\\x08\\xc5\\x10\\xb4\\x8f\\xb4\\x7f?\\xa0\\xd0Y\\x9eF.u?=\\x93\\xafk;\\xf2q?\\x10\\xc5&\\x03EcU?\\xa0\\xc9\\x12\\x0cS6\\x93?\\xa6\\xb0\\xd4\\xe3\\x86<q?\\x809\\x01nU9O\\xbf\\xe0\\xd0\\t\\xf5\\xfb\\x86\\x8f?\\xd2\\xeeB\\xaas\\xbbr\\xbf\\x00\\x9e\\x8d.y\\xc4A?\\xd88\\xdaj1vQ\\xbf0\\xad\\x8be\\x1e\\nV?\\xa6\\x92\\xd8@&\\xb5h\\xbfP\\x07\\xfc\\x14\\x8a\\xa2O\\xbf\\xb6b,\\ng\\x82u\\xbfx\\x81\\xa5l\\xc9\\x05s?\\x94@\\x1b\\xde\\xdf\\x93y\\xbf\\x80h\\xb8[\\xc1\\xacm?\\x9cb\\xde_\\xfc\\xcc\\x8e\\xbf&\\xa7\\xca\\xed\\xb7tt\\xbfa\\x0b\\xacF\\xfe\\xfdx?\\xa8\\xb2\\xc5)\\xe1\\x1fV\\xbf@x\\xc9!\\xb7h|?\\xd0r\\x1e\\x18_\\xa9r?\\xa0e\\xb5\\x9b\\xff*~\\xbf`\\x06\\xd5\\xc4a\\n}? &:\\xd6L,p\\xbf\\xb8\\x18\\x1c\\xf0\\xe1M\\x95?\\xf0m?\\xd8\\xf6\\xdd\\x83?l\\xc932\\xae\\xedu?\\xe5\\x1b\\x02\\x86U\\x9fr?\\xe8\\xd6\\x9f\\x0c\\xc7\\xe4~\\xbf\\x921\\x1c\\x0e\\xba\\x9d\\xa1\\xbfd\\x9eC\\xd9\\x02\\xef\\x7f?X;v\\xf9\\x85F\\x88\\xbf\\xb6}-t\\xe1\\x05\\xaa?\\x8aq\\xa3S\\x7f\\xab\\x94\\xbf4d\\xf4Eu\\x89\\x89?m\\xf6v\\xa1Udd?\\x9ev\\xed\\xa9\\x04\\xdb\\x82\\xbf@\\xcc\\xd2F\\x9f\\xc5A?`\\xa9\\xfcT\\x9a\\xb4\\x8d\\xbf\\xc0~)\\x1d\\xfd\\x92e?YsK\\x11\\xf9z\\xa0\\xbf\\xda\\xe8\\xa8\\x17\\xda\\xec\\xb1?\\xd0\\x9d\\xfa\\xf2\\x95\\x1c\\x9a\\xbf\\xf0\\x8e\\xbbo\\xc2x]\\xbf\\xf0{\\xc3\\xcd\\xe0\\x82\\x9d?\\x00\\xaeJ\\x9b\\xa6Hi\\xbf\\x88\\xe8\\xbdr\\xe6\\xdd\\x89\\xbf\\xc0\\xddA\\xbb\\xb1\\xd2\\x82\\xbf\\xc0X\\xdc\\x07U6\\x81\\xbf\\x02\\xcb5\\xe6\\x06\\x96\\x82?\\xc0Gx\\t\\x84\\x98g\\xbf\\xc0\\xa1\\x87{O\\x85\\\\?\\xa0\\xf28Z\\xa8\\xddL?\\x90\\xf1\\xba\\xaa\\x986T?Txw\\xdf\\xd6F\\x90\\xbf\\xf8\\x88e\\x16\\xbe\\xb5~\\xbfUA\\xd0W3\\xe2p?\\x90\\x99\\xf0t\\xee\\xe2o?\\x10\\xee\\x0ets\\xc6e?`\\'\\x8f]\\xe6\\xa6c\\xbf\\xa8\\x02U\\x02\\xd4\\xc0s\\xbf\\x08\\xeb\\x95\\xcc\\x12o\\x99?a\\xf1Y,\\x12\\xe9v?\\xc0\\xbexV\\rDn\\xbf@r\\x8b\\xa4\\x15\\xc3\\x94?\\x14MO\\xdf\\x1eTp?\\xe0\\x81\\x1a\\xf4\\xe2\\x81\\x88?P\\xfe\\xfew\\xcf\\xe0\\x86\\xbf0\\xe1\\xc2l\\xaf\\x8aF\\xbf\\xda\\xa3\\xbf\\xfc\\xca\\x92\\x87\\xbf@\\x1eF\\xc8\\xe8\\x96\\xa6\\xbf\\x98N\\x9e\\xd8b\\xf9\\x89?0\\xb8\\x12p\\xc5\\x1b\\x7f?8\\xff\\xffQ\\x85=\\xa4\\xbfj\\xc7\\xbb0\\x8b\\xb5\\x8e\\xbf\\xa0eU\\x0c\\x95\\x7fu\\xbfHi4\\x9aJ\\xb4k?,\\xb9RkA\\xfc|\\xbf\\xd1\\x11;\\xafT\\xcf\\x8d?\\xe8*g\\xe2$\\x8d~?y\\xe1\\x07U\\\\\\x15\\x8a\\xbf\\xb4\\x93\\x98\\xb3i9\\x82?|\\xa3\\xa1\\xaf\\xe7I\\x8b?\\xc2\\xbcsK\\xc9\\xf7\\x9c? \\t\\x86w\\xa4\\x95k\\xbf\\t~\\x92J\\x8d\\x19z?\\xc4BeD\\xf3E\\x85\\xbf?\\xd1\\xfd\\x95\\'\\x08p?h\\x9fs}\\xd1\\xdf\\x88\\xbfh0\\xe7\\x07\\xbc\\xa8\\x88?@O\\xb8~\\x9bu_\\xbf\\x94\\x16\\xeaI+\\xe3\\x90\\xbf?Pm\\xd2~I\\x96\\xbf\\x80\\x14\\xa8\\x8bH\\xfc\\x89?\\xb0\\x16xz>\\xbe^\\xbf<6\\xddB\\x1er\\xa4?\\xe8Y+\\xd3\\xca\\x1fT\\xbf0c\\xb9\\xcbkL\\xa0?j\\x9af\\x95\\xec\\xc4\\xa6?\\x0b\\x11\\xcf\\xed\\xceR\\xa4\\xbf\\xb2h\\xe7\"\\xcfu\\xa1?\\x9b\\x10\\x8f\\xca\\xba\\x95\\xb1\\xbf\\xa8\\xda\\xbd\\x18\\x1aD\\xb6?\\xa8\\xban\\xca\\xb6\\x9c\\x84? \\x08\\xc7\\xd8\\x95\\x02&?\\xc6\\xed\\xf5\\x17\\x8b\\xa8t\\xbf\\x80\\xc9\\xdb\\x0cg\\x91\\x90?\\xd0p\\xd1\\x8d\\x90Y\\x8a\\xbf2E-\\xef\\x15\\xc7\\xba\\xbf\\xc0\\xfb\\x9f\\x88\\\\\\x07\\xbd?\\xcc\\x9d\\xfa\\xf2\\x95\\x1c\\x9a\\xbf|\\xf0\\xc5\\xa1.>\\xcb?\\xea\\x8e\\x04\\xcfy\\x05\\xa6?@xM\\xf6\\xf8\\xb3\\x83\\xbf \\xf2\\x0b\\xbbc\\xf4x?\\xc7e\\x1d\\x0f\\x1c4\\xb6?\\xc8s#CQ#\\xaf?\\x10Hr\\x1bJf\\x95\\xbfJ\\x0b\\xc8\\x93\\x02|e?\\xf0%\\xdb\\xf30\\x8e\\x87?`\\xf5\\xdb\\xaeAb\\x92?0\\x88\\xbc\\xc4\\x91\\x17\\x99\\xbf\\xc0\\xa6?\\x03)\\xdfY?\\xf8\\xc1\\x9b\\xd7YZ\\x8b\\xbf\\x88\\xf8\\xf3!\\x12\\xbfs?\\xb2Ff\\x01\\x89\\xda\\x87\\xbf\\x9c\\xc7\\xa3\\xcb\\xb7\\xe5\\x86\\xbf 1\\x15\\x81\\x15S\\x89\\xbf\\x10\\x0bz\\xabWC\\x8e?x\\xa4\\xf8\\x87\\xfb\\xc0\\x9d?\\x99@-\\xf2e\\x91\\x97\\xbf\\x92\\xcf\\xad$\\x0e\\xa7S?\\xb0\\x92\\xe2\\x0e\\x0e\\x9eK?]\\x8e\\x96\\xde\\xc5\\xe8\\x9e\\xbf\\xc2\\xd9\\x14\\xe4f)n?\\xbdV{!\\xb7\\x9bv\\xbf\\xca+)\\x84\\xce\\x9a\\x94?>K,\\xef\\x89}p\\xbf\\xbd+8W\\xe1[\\x7f?\\xc0\\xe1\\xb7E\\xfd2s\\xbf\\x96\\xf0\\xa0\\x88\\x96\\xddv?\\xd0\\xdf\\x94C\\xb2\\xa0Y\\xbf\\x90\\xd5\\xda{\\x99\\xc1~\\xbfAP\\xfb\\x0b\\xe0\\x06|\\xbfT\\xa7\\x1a\\xf3\\xads^?\\xd8\\xc0\\x9c1CV\\x7f?\\x90.\\xee\\x97Fd\\x84?D))&k\\xe9y\\xbf\\x12\\xe4\\xa3\\xf6\\x0e+\\x80\\xbf\\xd4X\\xd1\\xa7g\\xeb\\x8c\\xbf\\x95\\x93\\x08 \\xc3Q\\x83?\\x81\\xca\\x06b\\xa2\\xcfx\\xbf\\xf2z\\x85\\xaa\\x9e\\xdd\\x94?\\x9c)m\\xe8\\x9fdl\\xbfV\\xc1\\xacMu7r?R\\x8b\\xa9i5\\x85S\\xbf\\xa0\\xfb\\xa5\\x9b\\x08\\x03e\\xbf\\xf4\\xcb}\\x8d\\xdc\\x1d\\x8d\\xbfy/\\xf4\\xaf\\x95C\\x86?s\\x90d\\xcbE\\xc3c?r\\x06\\xcdB\\xe9\\xd3c?\\xfe:&w\\x17\\xc0\\x99\\xbf\\xf8\\t\\xdd\\x7f,]v?\\xbc\\xfe?G\\x0fBJ\\xbfJ\\xd1\\xc5\\xe3~0V\\xbf\\xcd\\xf7u\\xe1\"2t?U\\xa1c\\xe7\\xfaB\\x9f?\\xa5\\xc8\\x9d#|a\\xa2?=\\x83\\x9b\\xab\\xd4\\xf6\\xad\\xbf\\xe6g\\xd0l5\\x0b\\x98?:M+\\x14\\xe4V\\x91\\xbf\\x88\\xcf&!\\xa4\\xe5\\x9e?\\xdb\\x9c\\x1e\\xae<\\x99v?\\x97\\xbf`\\xc4C\\xe1\\x89?\\xf2\\x93:_\\xfe\\x0c\\x85\\xbf\\x17\\x82\\xb8\\xedt\\xbb\\xb3?\\xc0l4\\xb5\\xa0\\x13\\x97?\\x16R4\\xd1=$\\xbd\\xbf\\r8A\\xe8\\xe9)\\x95?\\xf0\\x8e\\xbbo\\xc2x]\\xbf\\xe9\\x8e\\x04\\xcfy\\x05\\xa6?\\x90\\xc6\\xc6a\\x86\\x18\\xc3?fg\\xe6\\xa6\\xe0\\xfa\\xae\\xbf@j\\x84(\\x99\\xd1/\\xbf\\x10\\x857\\xf9,U\\xab?\\xc2\\xf8&\\xe3\\xf0\"\\x98?\\x94]m\\xd6\\xbb\\xd0b?\\xfb\\x1d\\x88\\x19,I\\xa0?\\x1e\\x18\\x94\\x01)\\xbb\\x81\\xbf\\x08\\xdf9\\xe0n\\xfe\\\\\\xbf\\x10\\xe30\\xe6\\xe79\\xa0?6w\\x1a \\xeb\\x0c\\x84?\\x07\\xba\\xc5\\xecX\\xba\\x86\\xbfrJZ\\xca60\\xa0\\xbf\\x8b\\xefD\\x84\\xecwp\\xbf\\x06\\x83\\xb4+\\xdc@\\x91\\xbf\\x1d\\xfe\\xe5vQ:\\x94\\xbf\\xdd5\\x08E\\xf3\\xbbq?t\\xa3\\xf2\\xec\\xac\\x9f\\x92?\\xb0\\x85t<\\xa89\\xa1? \\xcf\\xecr\"~f?\\xc0\\xe0)\\xd2\\xf0\\x13\\x9a\\xbf\\x90\\xe1d\\xd8N6\\xaf?H\\xb0\\x9d\\xf1E\\x87z?\\x98~\\x81\\xe1(1\\xa2?P\\x7ffi\\x19W\\x9e\\xbf\\x86\\x04\\xe8\\xf1J\\xa1\\x81?(:\\x11,\\xeb\\xb0\\x82\\xbf\\x80L\\xeeV\\xf6\\x8e\\x9c\\xbf\\x94\\x02\\xeadvK\\x80\\xbf\\x10x\\xf3\\xd6*\\x8d\\x86?`p\\x93\\xb8:\\x18\\xa9\\xbf\\x0eL\\xbdf\\xdc\\xc0\\x97?p\\xcd\\x15\\xcf\\x89\\xea\\x83\\xbfx\\x9eyx\\xfe\\x12\\x8d\\xbfAj\\x90L\\xb2f\\x93\\xbf\\xc5}&\\xcb\\x97\\xfb|?\\xe4\\x9a\\xe7qYw\\x8a\\xbf\\xd4\\x0e5\\xdc\\xa0\\xf1\\x9b?\\x00\\x1f\\xc1A\\xd740?#\\x889\\x03\\xb4-\\x95\\xbf\\x88\\x92\\x03\\x1e9\\x95\\x9f\\xbf\\xc0\\xebJl\\xcc\\x15a\\xbf\\xa0|\\xe9f\\xdb-@\\xbf\\xe0\\xf9\\r\\x98\\x92\\xe7]?\\xe8kg\\x11\\xa8xg?\\x906!\\xda\\xb7\\xd5\\xa0?\\xb0\\xdf\\x17Hm}\\x99\\xbf\\x00\\x8c\\x96\\x1e\\x7f\\x08=\\xbf\\xb8\\xc9\\xcd\\x13I\\x9f\\x83?\\xa2\\xe5?0\\xbb\\xec\\xa0?@M\\x17/D\\xbb\\x8b\\xbf\\xc0 \\xc30\\xff\"m\\xbfR\\xb3OV\\xabU\\xa1?\\xbc\\xec\\xfc\\xeb/\\xd5]\\xbf\\x98m\\x08\\xc2\\x08\\xb8\\x93\\xbf\\xacx\\x1b\\xd2X_\\xad\\xbf\\xdaw\\x8c\\x17\\xf11\\xa6?\\x10/D\\xd6\\xfd9\\x95\\xbf\\xe0\\x7f\\x00\\xdf^)\\xa4?\\xa9\\xd0\\xf1{\\x8d\\x86\\x90\\xbf\\xc0\\x87\\x0b\\xb9\\xe4\\xe2\\x7f\\xbf_^\\x8a$D\\x1fg\\xbf\\x00\\x84\\x11:\\n9 \\xbf\\xf6\\'\\xda$(:\\xa4\\xbf |a/\\x94\\x1e\\x89?\\xb0N\\xad\\xb2I&\\xb4?\\x80\\x82\\xbc\\xb0\\xcb\\xa8w\\xbf\\xf0{\\xc3\\xcd\\xe0\\x82\\x9d? xM\\xf6\\xf8\\xb3\\x83\\xbfdg\\xe6\\xa6\\xe0\\xfa\\xae\\xbf\\x0c\\x16\\xfc:\\xf3r\\xd3?\\xdc\\xf3\\xdd\\x96\\n\\x8e\\xbf\\xbf0\\xe3\\t(o\\xe8\\x85\\xbf\\x8c\\xc6\\\\\\xe1*\\xc4\\xc5\\xbfl\\x9b\\xe4U\\xb3\\xf3\\xb0?\\xe9/g\\xce\\xdd`\\xb3?\\x885j\\xf2\\xce\\xaf\\x91?@\\x8d\\n\\xcf\\xe3\\x0e`?`\\xc9\\xdaX]\\x01`\\xbf0\\x91\\x86c%_\\x8d\\xbf\\xa0I2\\xda\\x80\\x07\\x94\\xbf\\x00\\xca\\xbd\\x072\\x82\\xa1\\xbf\\x00\\x8a\\x96)\\n\\x1b@\\xbf \\xb3O\\xf1Juw?\\xa0d\\xad\\xf2\\xb3G\\x8d\\xbf\\x80\\xf6TX\\xbfVU\\xbf\\x00\\x9d\\x0e\\xabC\\xe3U?\\x00\\xe8\\x9a\\x93>{+?\\xec\\x11\\x10\\xab\\\\\\xe8Z\\xbf\\x90W\\xfd\\xb5\\x032r?\\x00H\\x9fG-\\x14P\\xbft\\xe4e\\xd7\\xb4\\x1ds\\xbf\\xe0\\xff\\xde\\xe6\\x0c\\x05w\\xbf`!\\xcb\\x19\\x07jz?\\xfc\\xb4\\xa1\\xa3\\x16\\x14[\\xbf\\xd0\\x17\\xfa\\x92\\xd8*g?`\\x9a=\\xc7\\xea\\xa2\\x88? b@{\\xa3F0?@\\xa2\\xb8p\\xe6][\\xbf \\xbaf\\xb1\\x15\\x96\\x8c?#\\xd58\\x89\\x16\\x9e\\x8c\\xbf\\xe0\\x1e\\xf6\\n\\xc3{U\\xbf\\xfc\\x12\\xd5\\xdd\\xa6\\xffk?]\\xe0\\x16\\xfe\\x01\\xdfr?\\xe2\\xa6\\xbe\\x99\\xa6\\xfep\\xbfV\\xe1\\xa7Fdp\\x87?\\x99R\\x05\\xeb\"\\xa1\\x8f\\xbf\\x808{\\'\\x1ehf?B\\x80\\x18v=\\xb3\\x89?\\x02A\\\\\\x02St\\x90? \\xe2g\\x85\\xf4B\\x82\\xbf`\\xf9\\x87\\xb8qUo\\xbf09\\xaf\\x1eO\\xf39?p@\\xe8K\\xd4\\xbeT\\xbf\\x88\\x8c\\xff\\xdc(\\x19\\x83\\xbf\\xf0sI#vM\\x88?\\xf4B\\xfaQ\\x93\\xb9\\x8d\\xbf\\xe0\\x98\\x9d\\xb8\\x8fwd\\xbf#h\\x140R\\xdb\\x95\\xbf\\xe8\\xc8\\xe8$\\x10<\\x98?\\xe2\\xec\\x0f\\xa3\\xa0\\x83\\x8d?\\x94\\x91;X`*\\x95\\xbf\\x12\\x01\\x1f\\xc0\\x8a\\x9eR\\xbfp\\xff\\xd6q\\xe7-n\\xbf@\\x05\\x8c\\x18\\xc1T\\x81?\\x10a\\x95\\xa1\\xad\\xe6z?@\\x1b\\nG\\x0f\\xd9O\\xbfP\\xa0\\x82\\xc8/gt\\xbfZ\\x9ea\\xb8\\x14o\\x90\\xbf0p\\x8a#\\x8a/d?B\\x19X\\x97\\xbagZ\\xbfh\\xb9\\xe2,\\x18\\x07i?\\xf4\\xce)\\x13\\xd1\\x92\\x8e\\xbf\\xd0\\x9fN\\xce\\x12\\xde\\x97\\xbf\\xf8\\x8baW\\xbe\\x06\\x90\\xbf\\x08<\\xa5\\xbe1\\xb8\\x92\\xbf\\x00\\xaeJ\\x9b\\xa6Hi\\xbf \\xf2\\x0b\\xbbc\\xf4x?\\xc0j\\x84(\\x99\\xd1/\\xbf\\xdc\\xf3\\xdd\\x96\\n\\x8e\\xbf\\xbf\\x02\\x08\\xabW\\xcfR\\xb9?@\\xd4\\xa4\\xc1\\xd0\\xc9Z\\xbf\\xc0gU\\xf2&\\xf7\\xac?\\xa4\\xf0\\xd4R\\xe4t\\xae\\xbfi\\x08k7\\x9a\\xf0\\x92\\xbf\\xd0\\xd1\\xa1\\xbc\\xbd\\x81d\\xbf\\xe0\\x0c\\x91{\\xa3\\xe0{\\xbf\\xc0\\xf1\\xbax~\\x86>\\xbf\\x10]\\xaff>\\xd0d\\xbf\\xf2~\\xb2|L\\xe1\\x9a?\\xa2\\xedD\\xfa\\xcf$\\x9a?\\x8a\\'\\xd0/\\xac,z?\\x90\\xad\\xa9\\xe2\\xfb\\xf3\\x82?+R\\xf6\\xd0M\\x8e\\x96?\\xe0\\x92\\x05\\x077\\x17k\\xbf\\x80\\xea\\x8f\\xd0[q\\x8f\\xbf\\x18\\xbc1\\xdc&\\xb9\\x95\\xbf\\x84\\x92\\xd2\\x0eYEJ? \\r\\xe6\\x0f\\xdcRw?\\x9c\\xe3$\\x18\\x89}\\x92\\xbf\\xd0\\xbe\\xde>\\xea\\xf2L?Po\\x18Ik\\xd7x?h\\xcd\\'\\xd1\\x1f$\\x88?\\x01\\x15od\\xdf\\x8cR?\\xc09lJ\\xd4\\xeay\\xbf\\xa0l\\x11\\xe8l\\x97t\\xbf\\x8e\\xb8\\x10_\\x98!\\x85?\\xf0P{ \\xbe\\xa3m\\xbf`~\\xcc\\xb7 lz\\xbf\\xfcM\\xbf\\x1f\\xdd\\xa4\\x84\\xbf\\x18\\x1b\\xf7\\xcb\\x1dbb?\\x11\\x15\\xcc\\xc31\\xcam\\xbf\\xf9\\xac\\x92Z\\xf3\\x92e\\xbf6\\xb6\\x01\\xea6@g?p\\t\\xcfi\\xca\\xe86\\xbfL:\\xd9L\\xf4\\xc5\\x7f\\xbf\\x90\\xbe\\xc8\\xad\\xe6\\x11\\x82?\\xe0$\\x95\\xdc%\\x87J?~\\x89\\xc5\\x97\\xe7\\xac\\x95?@\\x19\\x86\\xcf\\x87\\x86h\\xbf\\xe9\\xc4~\\x88M\\x94k?\\xccXq\\xfb\\xf4\\nb\\xbf\\xbfK\\x80z\\xeb\\x06V?`\\x9a\\xbb\\x8f4Ya\\xbf\\xb0DwB\\x0b|g?\\xbe\\xc10\\x82LB\\x81\\xbf\\xc8\\x18\\xb6PB\\xca{\\xbfW\\x19\\xc1\\xe5\\xfc|\\x90\\xbf\\x00\\xa9(\\xce5\\xd0\\x84?@\\x95\\xfc\\xeaP\\x02.?\\xb6\\x9a*\\xedud\\x90?\\xeb.\\x9b\\x8e\\x8e\\xc2w\\xbf\\xe2\\xecc\\xbc\\x1b\\xbd\\x89?`\\xff\\xae\\xbd\\xdb\\x00\\x82?b\\x92\\xd6\\xda\\x1aa\\x8e\\xbf-\\xb0\\xe1P\\x90m\\x96?\\xb4V\\xc4\\xb0\\xadY\\x93\\xbf\\xb4@\\xc9d\\x843\\xa0?\\xe0=\\x19h\\x93tR\\xbf\\x9c\\xbd\\xa6\\xa3\\xc1/b\\xbf\\xbc\\x0b\\xc0\\xcfF\\xcdz?\\xa6\\xf5\\x12i\\n\\x9e\\x8d?\\xc0P[\\x0c\\x04\\x8bd\\xbf6QR?\\xc5{\\xa4\\xbf7\\r\"\\xa2\\xd5?\\xb0?\\x90\\xe8\\xbdr\\xe6\\xdd\\x89\\xbf\\xc7e\\x1d\\x0f\\x1c4\\xb6?\\x10\\x857\\xf9,U\\xab?0\\xe3\\t(o\\xe8\\x85\\xbf@\\xd4\\xa4\\xc1\\xd0\\xc9Z\\xbf\\xac>e\\xbba~\\xc1?d\\xdf5\\xa3|\\xfe\\xa5?\\xc0\\xdc\\xd2\\xbb\\xf5\\xd2w?\\xb0|\\xddB\\x9a\\xf0\\xa2?\\x90\\t\\xd7\\xa3gqP\\xbf`f\\x18\\x1f\\xfaI\\x86?\\x88[\\xc5^\\xfe\\x10\\xaa?\\x02\\x85\\x9c\\x98]\\x83z?\\xd0E\\x97\\xf2\\x93\\xfdl?\\xc0\\xd8\\x9e\\x97\\x7fF]?\\xcbU\\xe6\\xcaC\\x8dp\\xbf@\\xd3\\xbf\\x0c\\xe0\\xf80\\xbf\\xc8%\\xb7\\xd91\\x1b`\\xbf\\xd6\\x9c\\x8d+\\xc1\\xe5\\x83?\\xb0\\xa7\\t>_\\x0bj?\\xc0$\\xee\\x89\\x18\\xbc\\xa0\\xbf\\x9eE\\xcc\\xe1o\\xd6\\x88?h\\\\\\x184\\x0e\\xb4\\xa4?\\x80\\xf44\\xf5qG\\xa5\\xbf`|Zg\\xab\\xe7t?\\xc0fhg\\xec\\xa8\\x8f\\xbf`\\xb37d\\xc9\\xcc\\x8b?89lN\\xcc\\x8el\\xbf\\xed\\x8b\\xc5zz\\x04\\x8c\\xbf\\xb0\\xe5\\x1a+\\xd5Q\\xa8?\\x9b\\xca&\\xb8\\xef\\x08\\x92?\\x00\\xb3\\xa2\\xfcQ\\x99\\x81\\xbf\\x00sx\\xbc\\x06\\x0c\\xac?8\\xb0<\\xa7\\x98\\xbb[\\xbf\\xd0\\xd5\\xb1\\xcf\\xed\\x07\\x85?@P\\x1cn\\x07n\\x8d?\\xbcy(;\\xe0\\xa8~\\xbf\\x1a\\xff\\x8c\\x91\\x17\\xf4\\x8a?\\x1c\\x9e\\xd8\\x9a\\xbb\\x00\\x84?\\xb3\\x1cO\\xa2t$\\x99\\xbf\\x00\\xbc\\xb7\\xa7[9\\x86\\xbf\\x088\\xfe\\xef\\xda\\xcd\\x8b?z\\x11,l\\xd0\\xca\\xa0?\\xa0R:x+\\xe6r?\\xac!\\xecr\\x87\\xe3l\\xbf\\xd1]1q\\x9cx\\x88\\xbf\\xe4\\x9f%\\xff\\x8fsa?`y\\x1a&o\\x9d\\x94\\xbf\\x10\\xc3\\xfa\\xfe\\x1b\\n\\x9d?\\x8c\\xaa\\xd5\\x03\\xd3V\\x93?\\x84u\\xb2\\xe9PO\\x9b\\xbf\\xac\\xa0\"\\x8d\\x0b\\xab\\x9d\\xbf\\x00\\x11\\x1c^\\x8cux?\\x18\\xf9\\x91\\xb9\\xad&\\x8e?v\\xae\\x98$\\x89\\xc0\\xa2?\\x98\\x05\\x84\\xfd\\xb1\\x97\\x80?\\x04\\'\\xbc}\\x00s\\x93?\\x10\\xc3\\xfd\\rC#\\x9c?\\x1c<\\xe4\\xc9\\x81\\x01\\x91\\xbf\\x80\\xf8\\x82r\\xba\\x7fw?x\\xba\\x8d>d9\\xab\\xbf\\xfe\\t<\\xba\\xed\\x8f\\x94? \\x18\\xfcW\\xb3\\nf?\\xc5\\xab\\x9e\\x80H\\x08\\x95?\\xa4g\\x83h\\xe8\\xf9\\x85\\xbf\\x80\\x8f\\xc7\\x93\\xba3Q\\xbf\\xc0B\\x90\\x01\\xf1:\\x8e?P59]\\xdaQ\\x97\\xbf6o\\xc7\\xc3\\xb1]\\xa6?\\xc0\\xddA\\xbb\\xb1\\xd2\\x82\\xbf\\xc8s#CQ#\\xaf?\\xc2\\xf8&\\xe3\\xf0\"\\x98?\\x8c\\xc6\\\\\\xe1*\\xc4\\xc5\\xbf\\xc0gU\\xf2&\\xf7\\xac?l\\xdf5\\xa3|\\xfe\\xa5?6\"Ejo\\xf9\\xd6?\\xb4\\x89\\xccc\\x85\\x93\\xc0\\xbf\\x08=\\xd4\\xa5\\xa0\\xcaZ?\\x00\\xbex\\xc91\\x181\\xbf@<`lr\\x8fv?@\\xbd\\x9fn\\xd7|\\xaa\\xbfh\\x7f\\x00?\\xed\\x9a\\xa1?\\xe0\\xe3\\xe2\\xe3H\\x94\\x85\\xbf\\xb8un9Z\\xc5\\x97\\xbf\\x80_=o\\xbe\\xec\\x84\\xbf o\\xf7!nK\\xa4\\xbf\\x10\\xbc\\xe26\\x0c\"\\x83\\xbf\\xf0\\xfb6\\x1f\\xcf\\xce\\x8d?T\\xf1\\xc3\\xd9\\xdcg\\xa6?`\\xa11\\x13\"\\x98\\x81\\xbf\\x12\\xf9\\x88Bo\\xdeh\\xbf\\xa0&\\x0cB_t|\\xbf\\x10\\xed\\x87\\t=\\xab\\x85\\xbf\\xa0\\xfa\\xdcu\\xc3rg\\xbf\\xa0\\xd1#\\xe4;\\xefu\\xbf\\x80\\x10\\xae\\x8c\\xb2Iw?\\x98\\n\\xdb\\xc2\\xac=0\\xbf\\xa8\\xddb\\xc3\\x00|}?`\\xbd\\xe2\\xa2\\xe3?\\x93\\xbf@,\\xc7\\x88\\xfa\\x0fo\\xbf\\xc0\\x13(\\x01{\\nZ\\xbf\\xe0\\x0c\\xe0\\x11\\x90\\xfd\\x8c\\xbf\\x88\\x87m\\'\\xd4\\xf7e?@\\x9f\\xe3\\x10\\x13u^?\\xb0<\\r\\xfd\\xf5\\xf1s\\xbf{\\xb2\\xcf\\xdb\\xc7\\x06\\x84?U\\xdc\\xd6>F\\x0b\\x81\\xbfN\\xeazw[\\xb2r\\xbf\\x92z\\x17U\\x81\\x9b\\x85?\\x80\\xc1K\\xff;>R\\xbfP\\xc4\\x0f\\xd2\\xc0^h\\xbf\\x00\\xed\\x14\\xa7z\\x17\\x90\\xbf\\xb8\\xe0\\xdf\\xfbX\\x80\\x84?\\xc0\\x16]A\\x1b\\xb6v?\\x05\\x9an?\\xa9\\xc0q? \\xf7\\x93\\xfc\\xd5\\xbfW\\xbf\\x00\\xc1\\xde\\x1f\\x0e\\x8a=?p:\\xb8\\xae\\x9e\\x8dy\\xbf8\\xab8\\xce|\\xa4\\x7f?\\xf0\\xe3\\x9dT\\xd7\\x9aq?n\\x0ezu\\x95\\xd2\\x94?4\\xd7\\xbb\\x7fYJ\\x96\\xbf2\\x1b\\x99-\\r\\x05\\x94\\xbf\\xcc\\xd1\\x02\\x18\\x08\\xef\\x8f\\xbfn\\x96#2\\x90$c\\xbfhFY\\xe4P\\x84p?\\xf8\\xed\\xf5\\x91Q6\\x82?@\\x9b\\xea\\x10\\xebf\\x92\\xbf\\xcc\\xd3\\x11C\\x90\\x0c\\x83?p\\xd2\\xa2\\x80\\x1e\\xc7\\x84?\\x1am\\xcbS\\xd9s\\x87?\\x00\\xae\\xb7y\\x19/k\\xbfZ-\\xe0!^\\x11\\x7f\\xbf\\xff\\xa8 \\xa3\\x13\\xfcq?\\xb4\\xfd\\x84\\xbeq#\\x9a?@\\x1d\\x1a\\xbf\\x11\\x12\\x89?\\xe0\\x1b\\xa7\\xa4\\x91m}\\xbf\\x98\\xb0A\\x08\\xce\\x1c\\x87?\\xc0X\\xdc\\x07U6\\x81\\xbf\\x10Hr\\x1bJf\\x95\\xbf\\x94]m\\xd6\\xbb\\xd0b?l\\x9b\\xe4U\\xb3\\xf3\\xb0?\\xa4\\xf0\\xd4R\\xe4t\\xae\\xbf\\xc0\\xdc\\xd2\\xbb\\xf5\\xd2w?\\xb4\\x89\\xccc\\x85\\x93\\xc0\\xbf\\xca3&\\x1b\\x07\\xdd\\xba?\\x08\\xa2\\xa3\\xc7\\xd9\\xa5\\x8c\\xbf \\xf8\\x0e;2\\xefc\\xbf\\x00\\xa0\\xd3^\\x0b|\\'\\xbfR+vN\\xc7#\\x85?`O\\xfc\\x86\\xaa\\x14n\\xbf\\x00\\x98\\xc1\\x86\\x10EP?@S\\x04\\xe9\\x86\\x95p?\\x80\\x10\\xbf\\xfa\\x8bV[?\\xa8\\xb0\\xa8B\\xcfD\\x8c?\\x80[1\\xc2\\xd7\\xacg\\xbf\\x08+j\\x81O\\x94x\\xbfH\\xf1*\\'\\x93^\\x8a\\xbf\\xf3\\xfdo\\xaa\\xc9$z\\xbf\\xb6\\xb6\\xd9j\\xd7]u?\\xa7E6}\\xddl\\x83\\xbf\\xf9Z\\xbc8U\\xf2~\\xbf~\\xefJ\\x83\\xa2\\xbd\\x86?\\xb3\\xf54EWn\\x91?\\xef\\x03\\x8a\\xc68\\xf5\\x8a?\\xcc\\xdc}YB\\xc0M?\\x93\\x7f3\\xdd\\x9d\\xcfl\\xbf\\x99\\x92><\\xe8\\xdfN\\xbf7\\x1a\\xf2w\\xe2\\x18m?y}\\x7f\\xc0\\n\\x02j?j\\xc3H:\\xf1F\\x7f\\xbf\\x11\\x9agqf&s?Vf\\xdc\\xed\\xdf\\xcfc\\xbf\\xa04\\xb8b\\x0c\\x98c\\xbf\\x189 k\\x9fw\\x89\\xbf\\xbfN\\xcbh\\xc6\\xe1~?C\\xa6\\xc5\\x80\\x1a\\x92\\x82\\xbf\\x91\\n\\x83Z\\xe3\\x11E?\\xd3%iBY\\xbcr?\\rW\\x8b\\xa5\\xa9*\\x86\\xbfC\\xb5C\\x93\\x99,[\\xbff\\x08\\xa3\\x8b\\xba\\x8e=\\xbf\\x1a\\xc26a\\xcd{q\\xbf\\x1d\\xa3\\xf3\\xa3\\x89_]\\xbf%\\xc398\\xf4~j?\\xf9\\xa2T\\xa2\\xd2|\\x8e?\\xdea\\xc7U\\xdczK\\xbfm\\xb9\\xa5/\\x05`}\\xbfJ]\\xa0\\x8f\\xf2\\x8a\\x7f?\\x06\\xbe=E\\xa5\\xf1\\x84?\\x98s\\xbe9B\\xf8h\\xbfT\\xd2\\xb0(1N\\\\\\xbf;\\xd5P$\\xfan\\x9e?\\xf5\\xd7(l\\x07\\xe5\\x10\\xbf8o=\\xb6^\\xf1\\x81\\xbf\\xd4#%J\\xf7\\x95\\xa8\\xbf\\xdf@W[\\xd7\\x99\\x80?\\xd9t\\xc3\\xae#\\ny\\xbf\\xa5\\xf7\\xe3\\xbb1@\\x9f?0hQX\\xb8\\xd5{?\\x1c\\x12*\\xc47\\x06<?H\\xe9\\xd0*e\\xc8R\\xbf\\xe4ja\\xb3]\\xbeq\\xbf\\x02,-bvA\\x87\\xbf\\xceRBM}:a?\\xe16\\xbeo\\x03o\\xa4?X\\xdb\\xb7+H\\xb0Z?\\x03\\xcb5\\xe6\\x06\\x96\\x82?J\\x0b\\xc8\\x93\\x02|e?\\xfb\\x1d\\x88\\x19,I\\xa0?\\xe9/g\\xce\\xdd`\\xb3?i\\x08k7\\x9a\\xf0\\x92\\xbf\\xb0|\\xddB\\x9a\\xf0\\xa2?\\xfe<\\xd4\\xa5\\xa0\\xcaZ?\\x0b\\xa2\\xa3\\xc7\\xd9\\xa5\\x8c\\xbf,\\x055\\xc2\\x8b\\xac\\xc1?<]\\xca\\\\\\xde\\xdf.?V\\xc5~7\\x90\\xc2\\xa0?\\xc5\\xd0\\xf4\\x81g\\xb0\\xac?\\x1a\\xd6&m\\x00w\\x83?\\xec\\x99\\xd6i0\\x95\\xa5\\xbf:h^<@\\x1e\\xa9\\xbf\\x82\\xf0F\\xe1\\x85\\x81~\\xbf\\x10`Q\\x8f\\xa2*\\x93\\xbf\\xa9\\x1b\\x89\\x0b\\xebb\\x97\\xbf\\xa4\\x87\\x1b\\xe4(}\\x81?\\xf9\\x99\\xd8*\\x98|\\x96?@\\xff\\xf7>M\\xc7Z?\\x80\\xf1\\xe6h\\x0b6\\x12\\xbf\\xe0b\\x0b\\xc0Y\\\\Z\\xbf\\xd0\\xe7\\xfbl\\xdfqy?\\\\\\xa7\\x81\\x9b\\xe7SQ\\xbf\\xc8$\\xf6\\xdcD3b? H\\x9f\\xe9\\x08\\xffg\\xbf \\xe3\\xe80\\xc0\\xddV?^@+\\xa4\\x15\\xd6P\\xbf\\x90\\xe27\\xd9\\x8d\\xa8{?T\\xe8#\\xdb\\xa2\\xd4U\\xbf\\x80f\\x9c\\x03<\\xf6;\\xbf \\x08\\xd6H\\xf0\\xd9p?`\\x9c\\xfd\\xc80Gf?\\x00\\x17\\x10\\xac\\xb2\\xa7E\\xbf\\xd2Q\\xcctb\\xedg?\\xa0\\x81}\\x8c\\xd1\\xe1&\\xbf\\xd4\\x86\\x8c\\xe2B X?\\xa4\\x99e\\xc4+\\xdeE\\xbf\\xe0\\x99\\xd6E\\x8f\\x03.?\\xb8\\xe8\\x83lo\\xcbi?\\x80\\x83\\xcf\\x01\\xb3R$?L\\xcc\\x1e@\\x13\\x1dr\\xbf\\xc0Q\\x1c\\x81\\x04iV\\xbf\\x95E\\x97\\xefI\\x90V?@\\xb7\\xb6@\\xd2a#\\xbf(\\x05\\x1ev\\x11//?\\xc0\\xbc\\xa0\\xdb\\x99\\x0fT\\xbfX/\\xfd\\xb6\\r\\x08q?\\x80Ys\\xfd\\xf2\\xdbC\\xbf\\xd2\\xa2\\xf2\\x1d\\x8c\\x8bu\\xbfH#\\xf8%\\xb5\\x83v?@1\\x83\\xcc\\xfd\\xb8e\\xbf\\x1bX\\x0b\\xc6\\xe7Lt?\\x90\\xb6WU\\x9eqC?x\\x9a\\xa1\\x07\\xeeo]? \\x16\\xfb\\nzj2?\\xd0w4v\\x84\\x85q?\\x10\\x8c\\xc0l\\x88\\xa1X?\\xa0Z\\xe4\\x13\\xef\\x0c:?\\x18?\\xf3+\\xc2ss\\xbf\\xbf.Sb\\xf7\\x88^?\\x90\\xf1\\xc2xR\\x04G\\xbfv[(\\xe9\\xd8C:\\xbf\\xb8\\xdcv\\xdc\\x8er2?\\xa2\\\\k\\xda\\xda\\xb0\\x7f\\xbf\\xa0\\xe1B\\xa0\\x842o?\\xc0\\\\\\xbd\\x97\\xd7\\xda\\\\\\xbf\\xf0z\\x12\\x88\\x99Ai?\\xc0Gx\\t\\x84\\x98g\\xbf\\xf0%\\xdb\\xf30\\x8e\\x87?\\x1e\\x18\\x94\\x01)\\xbb\\x81\\xbf\\x805j\\xf2\\xce\\xaf\\x91?\\xd0\\xd1\\xa1\\xbc\\xbd\\x81d\\xbf\\xa0\\t\\xd7\\xa3gqP\\xbf\\x00\\xc0x\\xc91\\x181\\xbf \\xf8\\x0e;2\\xefc\\xbf\\xc0\\\\\\xca\\\\\\xde\\xdf.?\\x9c\\xfa*\\x04\\xae\\x12\\x91?\\xe81\\x1b\\xb9\\x18\\x82z\\xbf\\x00]\\x96\\xca\\xb2\\xd4[\\xbf\\xdc\\xad\\xcc\\x8fs/\\x82\\xbf\\x1cv\\xec\\x9d\\xc5\\xfer?\\x98\\x81cJyAl\\xbf\\xe0\\xce\\xcdr\\xb3\\xb2i\\xbf0\\x14n9\\x85\\xe2h\\xbf\\x03\\xbbs\\xa7@)p\\xbf\\xe8\\xa8\\x87\\xbb\\x7f1d?\\x14\\xcc\\x03\\xfaNPx?\\xc0Y\\x81\\xa8\\x02zu\\xbf\\xa4\\x0b!\\xb3WyI\\xbf\\x00|a\\xc6\\xa6Lb\\xbf\\x00\\xe39\\x04X\\x98Y?\\xd4\\xca\\x98\\x80Y4g\\xbf\\x80Fy\\xbd\\xbb\\xfc9?\\x80\\x0f>s%\\x19I?7@\\x96\\xa5\\xa5\\xf0a?4\\xe5\\x91\\xcf5\\xa2U\\xbf\\xf0\\xda\\xc3\\xc9\\x1f\\x82\\x85\\xbfv\\xd7\\xd1\\x83\\xb9\\xf8j?0\\xa7\\xb0`\\xb5\\xd7b?\\xa0(\\xf7\\xa0\\xed\\x13\\x83\\xbfNP\\x9ez\\xed\\x04b?\\x98\\xfe\\x08\\x05\\xf0\\x85d\\xbfX%t\\x80O\\xec\\x85\\xbf`\\xfa\\xd3z\\x11\\xf7>\\xbf\\x0e\\x95R\\xbb\\xa6\\xacQ?\\x00\\xd0q\\xb6\\x89Y\\xc3\\xbeHe9\\xe6f\\x08V?\\xe8&k\\xe6dHf?\\x92\\xc3\\x07\\xe6\\xf1\\xd8n?\\xfc\\xedF\\xa8\\xca\\x1bw\\xbf\\xdcAm\\xfb\\xa8P\\x84?\\x10\\xb4\\xf5\\xa6\\xf7?t?\\xe0}\\xd5\\xcd[L;?\\x00\\xea\\xef}\\xb3\\xd26?\\x80\\xeb~\\x15\\x16\\xb83?\\x00v\\x96\\xbc\\xb1=`\\xbf\\x00\\x16V\\xf1:\\x057\\xbfTl\\xa7\\xd1n\\x9ev\\xbfv\\xd2\\xeb\\xe9\\xdf\\xcf\\x87?\\xecE\\x1e3\\x0f\\x0c\\x8c\\xbf\\xa4\\x96mQ\\x85\\xbb\\x99\\xbf\\xd2\\x8c\\xf8U,\\xef|?nV A\\xa1mU\\xbf\\x00\\xfe\\xc4\\xc8h\\xd72\\xbf\\x00D\\x9fbw\\xc2s?\\xa69\\r\\x80\\xfb\\x81\\x8f\\xbf\\xe0\\xcb\\xa6e\\xb4\\xbbU?\\xf8\\xcex\\xd5\\xed\\xbep\\xbfdK\\x82\\x1a\\xf2\\xc5\\x9b?\\x08\\xa1\\xde\\x078\\x1fl?\\xf1\\xe1\\\\\\xc1\\xc9\\xabp\\xbf\\x10=\\xcd\\x86\\xb3\\x0eH\\xbf\\x90\\xb1\\xe2#\\xd5\\xb3q?\\x80\\x16\\xb8lW\\x1ag\\xbf\\x88\\x89\\xb5\\xb8|\\x96\\x83\\xbf\\xe3\\x9a\\xf5\\xe2\\x10\\x01\\x92?\\xc0\\xa1\\x87{O\\x85\\\\?`\\xf5\\xdb\\xaeAb\\x92?\\x08\\xdf9\\xe0n\\xfe\\\\\\xbf@\\x8d\\n\\xcf\\xe3\\x0e`?\\xe0\\x0c\\x91{\\xa3\\xe0{\\xbf`f\\x18\\x1f\\xfaI\\x86?@<`lr\\x8fv?\\x00\\xa0\\xd3^\\x0b|\\'\\xbfV\\xc5~7\\x90\\xc2\\xa0?\\xe81\\x1b\\xb9\\x18\\x82z\\xbf*i\\xacf\\x9c\\r\\xbe?\\xe3\\xaf\\xde\\x04\\x1ce\\xb0?\\x9c\\xdf\\x8f\\xc7=\\x8c\\x91?\\xf4\\xb8\\xecY\\'\\xdc\\xbf\\xbf\\x98&\\x05\\x9787t\\xbf\\xba\\x8d\\xed\\xba\\x9b+\\x8e\\xbf\\xec\\x10\\xc8\\x11g\\xe0\\x92\\xbf\\xa0\\xb5P\\xae\\x96%\\x97\\xbf(\\xdf\\x96eP\\xd6\\x88?\\xfb\\x1a\\xdd\\x9f\\t\\xcf\\x9e?\\xf8\\x05\\xdb\\xd4D\\xbcx?\\xfe\\xb1(\\xafy\\x8ac\\xbff\\xfe\\x05z\\x1f\\xfd\\x8d\\xbf@\\xe7\\x86(\\x87\\x96~\\xbf\\xc2e\\x11\\x87\\xe6:q\\xbf\\xa0\\x7f\\x12\\x9e\\xdfN0?\\xe4\\x9b\\x97\\x08\\xf3\\x9c\\x80?\\xc8h\\x9btr[R\\xbf\\x1f\\xe5J\\xfd\\xc6T\\x87?n\\x9a\\x7f\\xf7)\\x1f\\x9e\\xbf\\x86\\xae)\\x82\\x1bbf?\\xe6\\xa0\\xa8\\xf58\\xc2p?t\\x0b\\xbd\\x7f\\xde\\xfe\\x97\\xbf\\x182\\xe9Harf\\xbf\\xc0,\\x83<t\\x1bt\\xbf:\\xcf\\xc7\\x13,\\xbaT\\xbf\\x9a\\xe8\\xe9\\x0e-M\\x82?\\x96`\\xd0\\x12\\xfcc}\\xbf\\x86\\xbd\\xa2\\xcf\\xfd\\xa9f?\\xf8\\x1e\\xc4\\xfb\\xc1\\xd8T?,\\xff\\x15\\xc9i\\xc6r?L\\x80\\xa9n8]b?\\xea?\\xfc$\\xd5\\xb6\\x93\\xbf1\\x10\\xe3\\xc8\\xb1\\x01\\x89?-\\xb4Px\\x01d}?\\x83G\\xab\\xea\\xa3\\xb0u?<\\xf0\\x06,\\x1f\\x15d\\xbfP\\xda\\x9f\\xd0+\\x17a\\xbf\\x88\\xf7\\xe2\\xcf\\xfc8g?v\\xb9\\xe3\\xbe\\xf0$y\\xbfPqG\\xc6\\x0c\\x83L\\xbfjF\\x1b\\xefi\\xc1\\x9d?Z\\xc4\\xa6\\x01K\\x7f\\x9b\\xbf\\xbaV8E\\xb4\\x82\\x96\\xbfd\\x03\\x15sG\\xb9\\x86\\xbf\\x94/\\xc8v\\xc9%W?(\\xca\\r\\x80M$c\\xbf\\xe8\\xc4\\xb5dd\\xe5\\x8a?(\\x0b\\xf5\\'\\xec\\xbc\\x9b\\xbf\\x80\\xd8\\x0ek\\x87\\x17b?\\x96\\xfb\\xd7\\\\\\x8d\\xba\\x80?H\\x94\\xd8\\x84p&\\x96?\\xd8\\x1f\\xd9|\\x17\\xf8\\x80?mP\\xf4}\\xfeW\\x81\\xbfe\\x9f\\x15\\xe1TPf\\xbf*\\xc4\\xcd\\xd9\\x9c$\\x8a?\\xb2\\xa3\\x86%\\xf1\\x9c\\x86?up\\xf6c\\xa9\\x89\\x96\\xbf\\x04\\xbc\\x90\\xc9Y,i\\xbf\\xa0\\xf28Z\\xa8\\xddL?1\\x88\\xbc\\xc4\\x91\\x17\\x99\\xbf\\x10\\xe30\\xe6\\xe79\\xa0?\\x80\\xc9\\xdaX]\\x01`\\xbf\\x80\\xf2\\xbax~\\x86>\\xbf\\x88[\\xc5^\\xfe\\x10\\xaa?@\\xbd\\x9fn\\xd7|\\xaa\\xbfR+vN\\xc7#\\x85?\\xc6\\xd0\\xf4\\x81g\\xb0\\xac?\\x00]\\x96\\xca\\xb2\\xd4[\\xbf\\xe4\\xaf\\xde\\x04\\x1ce\\xb0?ma\\xdd?Bx\\xc7?H \\x8ec\\x13\\xf8\\\\?8\\x98\\xe2\\xe9w(\\xb9\\xbf\\x80Ng\\xb9\\x9f\\xa8Z?O\\x8e>\\x00\\x04=\\x93\\xbfX4;\\xe8 \\xd3P\\xbfP\\xe4(\\xb1+\\xd5\\x96\\xbf\\x02L\\xe5}\\xe7\\xff\\x8e?t\\xed\\xa5\\xfe\\xab~\\x92?\\x18\\xd6&\\xa4\\xa7\\xeds\\xbf\\xe3\\xaa\\xbc\\xcf4\\xb4Z?\\xe8K\\xc5t\\xb5\\xf7m?\\xf4\\xeamb)h\\x86\\xbf\\xb3z\\x8cAu\\xc7`?\\xe0\\x93ywP\\xbeZ\\xbf\\xe0\\xd1\\x93\\xda\\xa5\\x81e?\\xfa\\x88\\xe1\\xd2\\x96&Z\\xbf\\x80\\x19\\xdc\\xd3.xD\\xbf\\xd0\\xc3bu\\x14\\x1b}\\xbf\\xf0\\xa2C(D>j?\\x00\\xcf\\x7fm\\xb7.P?\\x80\\xa2Wf\\xd7FN?\\xa4\\x10\\xe0\\xb32\\xf4U\\xbfH\\xc5\\xb4\\xe8cO]?\\xb0\\xb9\\xfer\\xc6\\xc4b\\xbf\\xf8\\x14\\x01\\xe1j\\x962?\\xd5\\xb9\\xf1\\xc7I\\x94/?\\x08\\xd8\\x82h\\x00.5?\\xf0\\xceO1*\\xa6T\\xbfd\\xacQ\\x19\\xc7<m\\xbf\\x88iY\\xfeabL\\xbf\\x18\\xe6\\xc8\\xa7\\xb6\\x1d\\\\?\\xa4xN\\x1f\\x82\\xa6v?X\\xb7\\x97A\\xb7,1\\xbf\\xe6R\\xac\\x8ak\\x03V\\xbf\\xf8P\\t\\xaf\\x00\\xb8%\\xbf\\xc0\\xaf\\xf0`\\x03dS\\xbf@\\xdd-m\\x94RT?,\\xcdm\\xaa\\xeeuy?\\x80\\xc6\\xc1#[\\xe9A\\xbf0\"U\\x82k\\xd5R?\\xc0\\x03\\xde\\xb5\\xc4F\\x7f\\xbf\\x8d\\xb9\\xb0\\xb0}\\x18\\x83\\xbf\\n\\x9d#I\\xca\\x80|?R\\xd1\\xbcebD_?\\xc6\\n\\xee\\xc2\\x07\\xc5m?\\xd8\\xb7(i\\x18\\x13k?\\xbc\\xb7j\\xca9q\\x85\\xbfxI\\x0c\\xdba+R?`\\x18\\xefU\\xcbJo\\xbf6\\xddTQ\\xd2\\xb5\\x83?@\\x8c\\xea\\xbd\\xeeyj?\\xeec8FO\\xea\\\\?\\xf4\\x99\\xf9AE\\xfal\\xbf\\xf23\\xbd\\x0e\\x0e\\xf9\\x80?\\x889\\x8c>]\\x90m?@\\x1f\\x19a\\xc6hu\\xbfSr\\xc9\\x16f\\xcf\\x7f?\\x90\\xf1\\xba\\xaa\\x986T?\\xc0\\xa6?\\x03)\\xdfY?6w\\x1a \\xeb\\x0c\\x84?0\\x91\\x86c%_\\x8d\\xbf\\x10]\\xaff>\\xd0d\\xbf\\xfe\\x84\\x9c\\x98]\\x83z?h\\x7f\\x00?\\xed\\x9a\\xa1?`O\\xfc\\x86\\xaa\\x14n\\xbf\\x1a\\xd6&m\\x00w\\x83?\\xdc\\xad\\xcc\\x8fs/\\x82\\xbf\\x9c\\xdf\\x8f\\xc7=\\x8c\\x91?T \\x8ec\\x13\\xf8\\\\?\\x1f\\xf9n\\xbd\\xd3\\x94\\x92?\\xcc\\x8d\\x84*\\xbc\\xcf\\x97\\xbf\\xect\\x07\\xb2\\x15Tx\\xbfo;64\\xc4\\x19`\\xbf\\xba\\x8e>\\xa5\\xe2\\xbas\\xbf\\xe0\\xc5\\x9c\\xe2\\x124f\\xbf\\x90\\xf3r\\xbauWB?\\xd0rq\\x1b \\xfa|?\\xd0\\xc3{\\x7f\\xc5\\x88\\x97\\xbf@\\x08C\\x07\\xd4\\x06-\\xbf\\xf2,\\x95\\xa7\\x94\\xad\\x90?\\x10\\xb5\\x97g,4\\x98\\xbf\\xb0\\x00:\\x8d\\x18\\xb2F?H\\x82\\xb8\\x1c\\xb6Z\\x86\\xbf\\xe8h\\xaa\\x8ad\\x07\\x81?$V\\xf2\\x13\\x1b\\x038\\xbf\\xe4\\xca\\xad\\xb6\\x8c\\xea_\\xbf\\xd02r\\x1c\\x95<\\xa0?\\x8e/E\\xb4\\xb6uo\\xbf\\xf8&\\x9bnD\\x00\\x86\\xbf\\x90-\\x86\\x7f\\x064\\xa1?\\xa6\\xf6M{\\xbaUn\\xbfd\\xdfU\\xf0\\xdf\\x97~?(\\xf9\\xa5\\xd0\\xba\\x0c}?\\x14\\xac\\xe5f\\xe5N\\\\\\xbf@ \\x98E\\xad\\xe8@?\\x96\\x9d@\\xcf\\r\\to\\xbf\\x98>K\\xf6\\x9flc\\xbf\\xe0@E\\t\\xc6\\x8ac\\xbf6\\x05\\xda\\xeer\\xb2o\\xbf\\\\y\\x8b\\x83\\xc8\\x13\\x93?D\\x83K\\\\\\xb2\\xc9\\x8a\\xbf@:\\xe0\\xd8 \\x98\\x81\\xbf \\x9e\\r\\x1f\\xd2\\xa8E?\\x150\\xa1\\x14m\\x8ac?\\xa8%\\xf9\\xa2\\xd5\\x99p?\\x98\\x0cJ\\xd7\\xb1u\\x7f\\xbf\\xf0\\xdb\\xb3y\\xac\\x07P?,\\x8f\\xfc\\xcav\\x05v?~\\xc8\\xac]3\\xb1\\xa0\\xbf\\xd4%\\x92\\xb8X\\xc9\\x9a?\\x1b|h\\x84\\x0f\\xdf\\x97?a\\xb9Wp\\x01\\x9e\\x89\\xbfp\\xd4\\xf0\\x07~M\\x84\\xbf\\x08N\\xc8\\xbcz\\x0bv\\xbfh\\xb1_\\xa6\\t\\'\\x95\\xbf\\x04\\xd2\\x1b\\xf4/L\\xa4?\\xb0\"\\x1d\\xaf\\x1cS]?\\xa4.\\x8e\\x99\\xc1\\x8c\\x84?\\xf6\\x7f\\xfcy\\x9a*\\xa8\\xbf\\x07\\x0f\\xb6\\xfb\\xc8\\xba\\x95\\xbf\\xf0\\xf6\\xc4\\xc6\\xa0\\x91v?\\xa2\\x8c\\xa27\\x89\\xa0\\x8c?zyk\\n\\xbdO\\x8c\\xbf\\x98\\xecj\\r\\xed\\x05\\x80\\xbf\\xb4E~\\x1dj8\\x9d?b\\x87\\r\\x85Z5\\x93\\xbfXxw\\xdf\\xd6F\\x90\\xbf\\xf8\\xc1\\x9b\\xd7YZ\\x8b\\xbf\\x07\\xba\\xc5\\xecX\\xba\\x86\\xbf\\xa0I2\\xda\\x80\\x07\\x94\\xbf\\xf2~\\xb2|L\\xe1\\x9a?\\xd0E\\x97\\xf2\\x93\\xfdl?\\xe0\\xe3\\xe2\\xe3H\\x94\\x85\\xbf\\x00\\x98\\xc1\\x86\\x10EP?\\xec\\x99\\xd6i0\\x95\\xa5\\xbf$v\\xec\\x9d\\xc5\\xfer?\\xf6\\xb8\\xecY\\'\\xdc\\xbf\\xbf8\\x98\\xe2\\xe9w(\\xb9\\xbf\\xcc\\x8d\\x84*\\xbc\\xcf\\x97\\xbf\\xa2\\xb3\\xd7\\xac\\x14^\\xc9?\\xa4\\xaa\\xd0U\\xcfY\\x8a?\\xa3wO\\x80K\\xc0\\x99?\\xd2\\xd6\\xd3\\x0e\\xca\\x82\\x92?\\xee\\xda\\x9d\"\\xd3\\xea\\xa2?c^\\xdd-#\\xf6\\x93\\xbf[\\xaf\\xc8\\xfd\\x05\\x16\\xad\\xbf\\x94\\xe6\\xf3\\xae\\x98\\x86\\x96?\\x07\\x04\\x81b\\xb1\\x8fg\\xbf\\xc8H1\\x1e\\x82\\xdes\\xbf\\xdc\\xc7\\xe9\\xc445\\x99?0\\x19\\xc3\\xca\\xc08z\\xbf\\xc0+}X\\x85\\x86T\\xbf\\x98w \\xb0\\x03\\xcb\\x8d\\xbf\\x90\\xeb\\xe1\\'\\xac#!?\\xd4m\\x1f\\x80A\\xbbK?\\xa83w=$\\xa9\\x8b\\xbf\\xdc\\xf7\\x105\\xa4Eq\\xbf\\xd8\\xe9\\x8e\\xac\\xfd1f?(\\xcf\\xca6_)\\x98\\xbf\\xc8\\xc1\\xdd@\\xd0\\xa3g\\xbf\\xa4,\\xb0pM\\xa2w\\xbf\\x05\\xe4\\xf6L\\n}a\\xbfH\\x1e\\xef0\\x03\\x0fO?D\\xee\\x15\\x17\\x1c\\x96b\\xbf\\xcc\\xa34\\xaavor?\\x10y\\x84\\x94\\xd6\\x13B\\xbf\\xb8e\\xb0\\xfdI\\xeaS? \\xe1\\xf5P\\xe6\\xb3{?\\xc0\\xe8\\xf7[\\xd2|]\\xbf\\xd0\\x00\\xfd\\t\\xa3\\xfeW?\\x89\\x85a\\x02C\\xb9[?\\x80\\xfa\\xe6\\xcdK\\x7f2?\\xc0\\xa4\\xd4\\xe0\\x14\\x97S\\xbf\\xc0\\x90\\x13\\x8f\\xb0\\xc0d\\xbf\\x80\\xab\\x98n\\x10\\x915\\xbfj\\t|\\xbc\\x9cQ\\x85\\xbf\\x00h\\xdaO\\x13\\xeb\\xf6\\xbe4\\xe7\\xd2-\\xa1<l?\\x00~\\xf0Q\\xe1\"f?`\\xa0\\x8f\\x92\\x16LM?#\\x82\\xe3\\xf2\\xd3\\xc1\\x8c\\xbf\\x1a\\xa9C\\x92 \\xc8n\\xbfz\\xeb\\x9a\\x8cd\\xa6y\\xbf\\xb8\\x1a^\\xc4\\xe2\\x97z?\\x9a;,\\x03\\xf0R\\x86?X\\x1e\\xf1\\xa5\\xad\\xedV\\xbf\\xa8\\x97\\x98mO\\xff\\x82\\xbfa\\x8a2\\xa2\\r\\xe5h\\xbf\\xa8\\x97a\\xe2,\\x88s?\\xbe\\x0f\\xf4S\\xa4\\t\\x82\\xbf\\x08\\x8d\\xc8,\\x7f\\x7fs?\\xa49b@\\x07\\xe3\\x91\\xbf\\xbfA\\x08xU\\xa3\\x9b\\xbf`\\xca\\xc1\\xa0V\\x1co?\\x80\\xd1{\\xb4MVo?\\xf8\\x88e\\x16\\xbe\\xb5~\\xbf\\x88\\xf8\\xf3!\\x12\\xbfs?rJZ\\xca60\\xa0\\xbf\\x00\\xca\\xbd\\x072\\x82\\xa1\\xbf\\xa2\\xedD\\xfa\\xcf$\\x9a?\\xc0\\xd8\\x9e\\x97\\x7fF]?\\xb0un9Z\\xc5\\x97\\xbf@S\\x04\\xe9\\x86\\x95p?:h^<@\\x1e\\xa9\\xbf\\x98\\x81cJyAl\\xbf\\x90&\\x05\\x9787t\\xbf\\x80Ng\\xb9\\x9f\\xa8Z?\\xect\\x07\\xb2\\x15Tx\\xbf\\xa4\\xaa\\xd0U\\xcfY\\x8a?\\xd7\\xaemf]n\\xa7?\\x02\\xb3\\xc4:\\x89\\x82q?\\x1f\\xfa\\xd7N\\xf9|\\x95?\\xa5\"\\x97\\r\\xa7\\x0b\\x95?\\xb8P=\\xac\\xd5\\x0ce\\xbfM~\\x8a\\xbf\\x00\\xf7\\x92\\xbfXc\\x84\\x16\\x0e\\x04^\\xbf\\xee\\x12\\x89,\\xd5\\xcb\\'\\xbf,\\xc6.\\xdb\\xedj]?\\xfc\\xda\\xaf\\xf2\\x1e\\ra\\xbf 8@Yu\\x8d@\\xbf\\x9aN/o\\xe41d\\xbf\\xb0tA\\x9a\\xa5\\x85_?\\xc0}\\xa3%\\x98~\\xe2>\\xe5\\xef\\xdb6\\xf0pD?\\xd6\\xfa\\xf9\\xa3\\xb7\\x96\\x80?\\xca\\xe9\\x03%\\xce\\xe2p\\xbfl\\x89\\xab\\x94\\x13NZ\\xbf\\xb8=\\xb3KJ\\xa2\\x88?:\\xba\\xd7+x\\xbb[\\xbf\\xdb\\xe9\\xbdp :X?\\xe4\\x96o-\\xb9zb\\xbf\\n\\x0f\\x0fO\\xc9\\xb83?p\\x1e\\xc4\\x02\\x89m[\\xbf0\\x0c\\x9f\\x8b\\x98I:\\xbf8\\xf2\\r\\x8dZ^T?h\\x11M\\x7f\\xba\"7?SUn\\xf0\\x05\\xe6p\\xbfH\\xec~\\xec\\x8dUr?\\xe5\\x07o\\xb7v0y\\xbf\\xe0\\x1b\\xf5\\xda\\xe8:`\\xbf,\\xf9\\x8d\\xd8\\xa5\\'T?,\\xbf\\x10\\x1e\\xbb\\xf9\\'\\xbfh\\t\\x1fK_\\x92P?v\\x87o\\xe4\\xf6=g\\xbfAx\\xc3\\xb4\\xfe\\x9fd\\xbf1-\\x14\\xe1\\xdf\\x83f?\\xf1\\x0c\\x14\\xdb\\xa3\\x16\\x88\\xbf\\xd8qA\\xea\\x97\\x8d\\x87?\\xc1\\x94\\x16\\xbb\\x82\\xdf|?\\xaa3z5\\xd8\\x8d|\\xbf\\x0e\\xde\\x92|-\\xe1`\\xbf\\xbcoS/\\xf3\\xacn\\xbfR\\x12\\x04e\\xdb\\x11{\\xbf[\\xfbA\\xbcSd\\x8a?\\xe6\\xc3E\\xb1\\x1d\\xf9j\\xbf.\\xf9\\x82b\\xa2m\\x7f?\\xb3[!x\\x05\\xed\\x91\\xbfMFL3\\x00Cm\\xbf.Y\\xacp\\xc9\\xc5G\\xbf\\xd4)cH\\xc4-f?k\\x7f\\xcc\\xe3^\\x80j\\xbf\\n\\xb4h\\x90S\\xa0l\\xbf<y\\rQZ\\xb6\\x85?\\x80\\xce9\\xeca\\x9f\\x85\\xbfUA\\xd0W3\\xe2p?\\xb2Ff\\x01\\x89\\xda\\x87\\xbf\\x8b\\xefD\\x84\\xecwp\\xbf\\xe0\\x89\\x96)\\n\\x1b@\\xbf\\x8a\\'\\xd0/\\xac,z?\\xcbU\\xe6\\xcaC\\x8dp\\xbf\\x80_=o\\xbe\\xec\\x84\\xbf\\x80\\x10\\xbf\\xfa\\x8bV[?\\x82\\xf0F\\xe1\\x85\\x81~\\xbf\\xe0\\xce\\xcdr\\xb3\\xb2i\\xbf\\xba\\x8d\\xed\\xba\\x9b+\\x8e\\xbfO\\x8e>\\x00\\x04=\\x93\\xbfo;64\\xc4\\x19`\\xbf\\xa3wO\\x80K\\xc0\\x99?\\x02\\xb3\\xc4:\\x89\\x82q?r\\xab\\xa4Io\\x0f\\x83?\\xa3\\xc2V\\x8e\\xd2j}?\\x1c\\xc2\\xab\\nL-\\x84?\\x0fB\\x1e\\xf8\\xbbtx\\xbf\"R\\\\\\xb2\\xd4\\xea\\x8e\\xbf\\x94+\\x0be\\x91\\r\\x92?,k\\xc5\\xeb\\x94\\xa7G\\xbf\\x10\\xcdD\\xed\\xd5\\xedz\\xbfH(\\x16\\xe3\\xc0\\x1d\\x8f?r\\x85\\xd7L96d\\xbf\\xcc\\x080*\\xc5$r?`\\xf6=#\\x97\\x1dr\\xbf\\xd4\\x00\\xcd*\\xaapE\\xbf\\x9c\\x8b\\xe2\\x83\\x8cAb?\\xc0\\xb2\\xf6I\\x07\\xca\\x96\\xbf( \\xa1\\x89\\xa8bp\\xbf\\xd8\\xee\\xd4~\\x0c\\xd8r?XT\\xaf\\xb8\\xd8\\x97\\x92\\xbf\\xf7&!*#\\x0bw\\xbf\\xc0\\xc6\\x02C\\x9fvn\\xbf\\xb0\\xdajw]E:\\xbf\\x14\\x94\\xb69)@X?\\xeb\\x99\\xa1i\\xc5\\xc6t\\xbfL\\xf0!\\xba\\xe6Hz?\\x18B.\\xc1y\\xcab?\\x14\\xd9\\x8f]S<e\\xbf\\xbc\\x15\\xba\\xc3\\x0e{Y?\\xb0\\x1a\\xcc|7\\xbev\\xbf\\xd8\\x12\\x85m\\x10\\x87c\\xbfh\\x7f\\xa5\\xff\\x9da5?&\\xb0\\xf41\\xda\\xbcT?\\xef\\x1f\\xfbt\\x95jT\\xbf@\\x0e\\xf8z(\\xd7_?\\x00`\\x8f\\xa4h\\xf2\\xec>\\xa4R\\xa3\\x91\\xa0\\x88s\\xbf\\xc0jDN\\x98\\x9fr?\\xf8\\x06\\xb1Q\\x8a2d?X\\xcfz\\xf7\\xd0\\xbfs?\\xc6\\x85\\x83\\xdb\\x01\\xd6\\x80?\\x8dI\\xd3\\xb2\\xa8\\xab\\x86\\xbfR\\xff\\x08\\xb0\\x8fjD\\xbf`\\x9e\\r \\xadUv\\xbf\\xb0\\xb5\\x1f\\x8c\\xf6:i\\xbf\\xd3\\x12\\xa2X_\\x85\\x8b?\\xde\\x99K\\xcc\\xcd\\x95t\\xbf`\\xe48\\xa0\\x9c\\xc5x?\\x95\\xa0\\xceA.\\x02\\x92\\xbf\\xc0\\xf8>c\\x81\\'G?\"\\x8cZ\\x9b\\xe1\\xb2u\\xbf\\x02\\xed\\x0f\\xf2\\xfcrg?a\\xc7V\\x88n\\xf9\\x85\\xbf\\x90\\x15\\t\\xe5\\xb7\\x84\\x88\\xbfhE\\xe7\\xd2\\x93\\xc7\\x7f?\\xbc6\\x95qmC\\x82\\xbf\\x90\\x99\\xf0t\\xee\\xe2o?\\x9c\\xc7\\xa3\\xcb\\xb7\\xe5\\x86\\xbf\\x06\\x83\\xb4+\\xdc@\\x91\\xbf \\xb3O\\xf1Juw?\\x90\\xad\\xa9\\xe2\\xfb\\xf3\\x82?@\\xd3\\xbf\\x0c\\xe0\\xf80\\xbf o\\xf7!nK\\xa4\\xbf\\xa8\\xb0\\xa8B\\xcfD\\x8c?\\x10`Q\\x8f\\xa2*\\x93\\xbf0\\x14n9\\x85\\xe2h\\xbf\\xec\\x10\\xc8\\x11g\\xe0\\x92\\xbfX4;\\xe8 \\xd3P\\xbf\\xba\\x8e>\\xa5\\xe2\\xbas\\xbf\\xd2\\xd6\\xd3\\x0e\\xca\\x82\\x92?\\x1f\\xfa\\xd7N\\xf9|\\x95?\\xa3\\xc2V\\x8e\\xd2j}?U4\\xe0\\x9e\\x8fX\\x99?E,\\xc1\\xe19\\xd7\\x90?\\x06\\x13!>\\x96\\xc7z\\xbf\\xf1\\xa95\\xf8\\xc5\\xf6\\x95\\xbfH\\x9d\\xa0J\\xa5\\xe4v?\\xc9<\\xbf\\xaf[\\xbab\\xbfPm\\x95\\x18\\xd1\\xcdW\\xbf\\x14E\\xf9OSe\\x80?\\xca\\xc3\\xdf\\xb05\\x08]\\xbf\\xa0\\t\\x88R\\xf1}c?\\xa8\\xa7\\x00KL\\x1eq\\xbfJ\\x02\\xea\\'\\xe7\\x9a=\\xbfR`\\x16\\x8bU\\tB\\xbf\\xd4\\xbd\\xef\\x9dF_\\x8e?\\x88\\xb0Qf\\r\\x11s\\xbf\\xa0Ba\\x0f\\x98cd\\xbf\\x00\\x1a\\xb8\\x9d\\xbb\\x05\\x89?%\\x9cW\\xa1\\xb2@u\\xbf\\x80\\xa6\\xea\\xdf\\x9fR;?\\xff\\xc8y\\x0c\\xfe\\x90m\\xbf\\x80[\\xee\\x13\\xfe:\\n?\\x87m\\x86\\xb9\\xd5U`\\xbf\\x06\\x15\\x91w\\x97\\x97b?`\\xfcXO\\x04\\x80`\\xbf\\x98\\xe4[\\xfcp\\x1cZ?\\xb4ZQ\\xed\\xb7\\x8cP\\xbfl\\x84\\r8\\x83#h?(y~\\xc3\\xf5\\xe0\\x80\\xbfl\\x7f)\\xe8b\\ne\\xbf\\x80\\x0c\\xc8D\\x9b\\x971?\\x129\\xa1\\x95\\x95*S\\xbf\\x90\\xdeO_\\x9e9P\\xbf\\xa0\\xd8_\\xe7\\xf1\\x94Y\\xbfM\\x10\\xc9\\xc8\\xd4\\xed\\x85\\xbf\\x8c,\\xec?\\x15\\xfbe?\\xc4b\\xa6P\\xce\\xac~\\xbf\\x82\\xa0D1\\xb4S\\x8e?\\x01\\x98f\\xd5O\\x18\\x84?\\xb1r\\xd8\\xba\\x1b\\xe2\\x88\\xbf\\xb8\\xfdx\\x94H[\\x1f\\xbf.\\x85\\xdfNj\\x14x\\xbfX\\xd6\\x05\\xac\\xa5gs\\xbf\\x94\\x04\\xd5\\x80?\\x81\\x8c?\\xe0\\x80E\\xd2\\x0f\\x87w\\xbf8r\\xf6\\x10\\xc9\\xbap?\\xf7\\xab\\xb4\\xf5\\xec[\\x91\\xbf\\x0eZ \\x86H5n?`\\xeed\\'$\\xe8b\\xbfh\\xbe\\x12\\xa5\\xb6<k?\\xe3\\x9b\\xd4Cw\\xda\\x8b\\xbft\\xbc\\xd8\\x8d\\x92\\x94\\x89\\xbf\\x88})\\x0e\\xde\\xac\\x8d?\\x94\\x98\\x95\\xa5\\xda\\x19\\x85\\xbf\\x10\\xee\\x0ets\\xc6e? 1\\x15\\x81\\x15S\\x89\\xbf\\x1c\\xfe\\xe5vQ:\\x94\\xbf\\xa0d\\xad\\xf2\\xb3G\\x8d\\xbf,R\\xf6\\xd0M\\x8e\\x96?\\xc8%\\xb7\\xd91\\x1b`\\xbf\\x10\\xbc\\xe26\\x0c\"\\x83\\xbf\\x80[1\\xc2\\xd7\\xacg\\xbf\\xa9\\x1b\\x89\\x0b\\xebb\\x97\\xbf\\x03\\xbbs\\xa7@)p\\xbf\\xa0\\xb5P\\xae\\x96%\\x97\\xbfP\\xe4(\\xb1+\\xd5\\x96\\xbf\\xe0\\xc5\\x9c\\xe2\\x124f\\xbf\\xee\\xda\\x9d\"\\xd3\\xea\\xa2?\\xa5\"\\x97\\r\\xa7\\x0b\\x95?\\x1c\\xc2\\xab\\nL-\\x84?E,\\xc1\\xe19\\xd7\\x90?\\xa4\\xf1hRNt\\x99?\\x18V\\x16L\\x16a\\x7f\\xbff\\xd2v\\x9e+\\x03\\x99\\xbf\\xa0tY\\xb5Lef\\xbf\\xec\\xc2i`\\x84v2?\\x80\\x81\\x9a\\x18\\xad\\xad?\\xbf`\\x1cPai\\xbaP\\xbf\\xb0\\xf1\\\\\\x9d\\x8c\\xd7B?\\x10\\xde]\\xfd\\xcf\\x96`?\\x80\\x00\\x88\\x98\\x9cSd?(iYoz\\x178?\\xc2;P@kQX\\xbf\\x80\\x9c9256D?\\xea\\x9c@\\xa9\\xe2\\xeel?\\x00u\\xcb\\xdb\\x80\\x89$\\xbf\\x10!(\\xf7\\xbe\\xd2v\\xbf@\\xf7\\xbe\\x16\\xf8\\xb0\\xf9>\\xa0\\x93\\x95vS\\xe3G\\xbfp\\x08V\\x03\\x98\\tO?\\x0eb\\xb3\\xa7G\\x04^\\xbfcKWBQea?\\xbe\\x0b\\xeb\\xf5\\x12?d\\xbf3F%6\\xaccd\\xbf\\xee3\\x8dH\\xd8%f?\\xea1\\xa6#@\\xe0X?\\x80\\xab&\\xb2\\xa4\\xa5W?\\xb0\\x15\\xd4\\xe5\\x0f\\x1eZ?\\x9d\\xdb\\xa7\\xa3D\\xdbP?\\x16\\x06\\\\\\x1d\\xc3\\xa0S\\xbf\\xa8\\t\\xd64\\n\\xfc>?\\x80\\x82v\\xfa\\x0e\\x00/?0\\x0ei\\x8fh\\x8ca?D\\xddf/o%d\\xbfxp\\xc6\\xe5}\\x1aR\\xbf\\\\\\xd1\\x82yU\\xa0l?8\\xea\\xdd\\x82\\xef\\x84`\\xbf\\xa0\\xae\\xb1\\xd0\\xe6\\xf2U\\xbf\\x9f\\xac\\x0c\\xfd\\xfb\\xf1w?`<\\x9a\\x94\\xca\\x1e\\x11\\xbf4\\xf9\\x90<:hc? \\xa2\\x9b\\xa1\\x88ZC?\\xa9\\xf0KA\\xce\\x98\\x80\\xbf\\xae\\xad\\xe7-{\\x94j?x\\xf3y\\xa52`q\\xbf!!G\\x10\\xc2$\\x8c?\\xbc\\xf1Qo\\xd5oc?\\xe4\\xa3S@\\x94vJ\\xbf\\x04\\xfbKc\\xca\\x92G\\xbf\\x08\\x89\\xa8\\x06\\xdbHQ?@\\xa7I \\xf5\\xb4E\\xbf ?o\\xaa\\x1a\\x90z\\xbf\\xac2\\xcdr{\\xfa\\x84?`\\'\\x8f]\\xe6\\xa6c\\xbf\\x10\\x0bz\\xabWC\\x8e?\\xdc5\\x08E\\xf3\\xbbq?\\x80\\xf6TX\\xbfVU\\xbf\\xe0\\x92\\x05\\x077\\x17k\\xbf\\xd7\\x9c\\x8d+\\xc1\\xe5\\x83?\\xf0\\xfb6\\x1f\\xcf\\xce\\x8d?\\x18+j\\x81O\\x94x\\xbf\\xa4\\x87\\x1b\\xe4(}\\x81?\\xe8\\xa8\\x87\\xbb\\x7f1d?(\\xdf\\x96eP\\xd6\\x88?\\x02L\\xe5}\\xe7\\xff\\x8e?\\x90\\xf3r\\xbauWB?c^\\xdd-#\\xf6\\x93\\xbf\\xb8P=\\xac\\xd5\\x0ce\\xbf\\x0fB\\x1e\\xf8\\xbbtx\\xbf\\x02\\x13!>\\x96\\xc7z\\xbf\\x18V\\x16L\\x16a\\x7f\\xbf\\x8b;|k\\x07\\x98}?$\\x8e\\x9d\\x02(.\\x89?@\\xbc\\xdd\\x0b\\xff\\x11U?F2\\x15`\\x94\\xebk?@\\xd5:hC\\x94S?`\\xcd\\xcd\\xb2H\\x0ft?\\x9c\\x8d\\xb2x\\x8e\\xb7U?t\\xaf\\xce\\xea\\xe1\\x16q?`\\x11j\\xd5\\x0e\\xb5l\\xbf\\xd0f\\x8c\\xb4f\\x93\\x18?\\xc0\\t\\x92\\x8f_\\xd1o\\xbf\\xa0]\\xa8*\\x93?w\\xbfi\\xf8\\xab\\xf6G\\xd0{? 9\\x0cf\\xd6\\xa9^?`\\xbdQ\\xc6\\xc3x\\x90\\xbf1\\xf7\\x1a\\x00\\xfe0\\x7f?` \\x01\\xa7\\xbe\\x1dO\\xbf\\xc2\\x12\\xb9\\xca\"\\xear?\\x9cq0\\x00\\x9b\\xe8g\\xbfZ\\xb3\\x8agi\\xeep?p\\x9d\\x1a2\\x81\\xcd3\\xbfq\\t}8<\\x1dp\\xbf@\\\\3Q\\xbd\\xed:?f9\\xb0\\xed6\\xe0|?\\xb0\\x99X\\xb5\\xc2\\xabX\\xbf\\xf0\\x85\\xffj\\xd1\\x83\\x85?\\x94\\x14P\\xa2U\\xf5j?\\xe6=\\xbc\\x8f\\xedso\\xbf\\x80\\xbe\\xb3r\\x03\\x99\\xfc\\xbeP\\x95I\\xed\\xa5^m\\xbf\\x94\\xdc\\xfc]\\x84\\x93\\x80?(+<F\\x0c\\xa2s?\\x04\\xe9\\xf6\\xdc\\xc4[~\\xbf\\xbf%nH\\x81#\\x90?\\x1c\\x82\\x7fa<]\\x92\\xbf<\\x12Z\\xc7\\x9f{\\x83\\xbf\\xd3\\x03\\xb0\\x04\\x1a\\xbe\\x96?6!pS\\xea\\nm?\\x96\\xc3G\\xd9\\xce~\\x81?|\\xaf\\x1d\\x87\\xf6>\\x89?\\xb0\\x8f\\r\\x11U\\xc1\\x96\\xbf\\x10^\\xdfr\\xcc\\xd9u?\\xea\\xc1P\\xcd7\\xa5\\x92\\xbf\\x11\\xde\\xdb~\\xdc>\\xa0?\\xd0\\xd5\\x86\\xc1G\\x9d{?\\xb9\\xec\\xa0\\xd0\\x8c\\x80u?L\\xe1?\\x8f\\xb5\\xc9\\x81\\xbf\\xc2\\xb5\\x97w\\xe9\\x16~?\\x84\\xcb#3\\x8c\\xb6\\x83?Hp\\x12\\xd9\\x92M\\x93\\xbf\\x92a\\xc8V\\xfb\\xa1\\x95?\\xb0\\x02U\\x02\\xd4\\xc0s\\xbfx\\xa4\\xf8\\x87\\xfb\\xc0\\x9d?t\\xa3\\xf2\\xec\\xac\\x9f\\x92?\\x00\\x9d\\x0e\\xabC\\xe3U?\\x80\\xea\\x8f\\xd0[q\\x8f\\xbf\\xb0\\xa7\\t>_\\x0bj?X\\xf1\\xc3\\xd9\\xdcg\\xa6?H\\xf1*\\'\\x93^\\x8a\\xbf\\xf9\\x99\\xd8*\\x98|\\x96?\\x14\\xcc\\x03\\xfaNPx?\\xfb\\x1a\\xdd\\x9f\\t\\xcf\\x9e?t\\xed\\xa5\\xfe\\xab~\\x92?\\xd0rq\\x1b \\xfa|?[\\xaf\\xc8\\xfd\\x05\\x16\\xad\\xbfM~\\x8a\\xbf\\x00\\xf7\\x92\\xbf\"R\\\\\\xb2\\xd4\\xea\\x8e\\xbf\\xf1\\xa95\\xf8\\xc5\\xf6\\x95\\xbff\\xd2v\\x9e+\\x03\\x99\\xbf$\\x8e\\x9d\\x02(.\\x89?\\xf5kZ\\xf1\\xad\\xc5\\xa4?\\xfb\\xfeV\\x98q\\xc0\\xb3?\\xe4\\xc9\\x03\\x87Q6\\x89?fx\\xfd\\x1c\\xf2@\\x7f\\xbfz\\xb6z\\xcf@+\\xa4\\xbf\\xc2E#\\xe1\\xbd\\xcc\\x80?\\x9a\\\\*\\xc8\\x9e3U\\xbf\\xd0\\xfd\\xcc]h\\xf8\\x83\\xbf\\xc8\\xddc\\xb5\\xcc\\xf8\\x90\\xbf\\x14`\\xc7S]sl?\\xfcd\\xd6E\\x96\\xfd\\xb0\\xbf4G\\x1fsO\\xf9\\x9e\\xbf\\r\\x0e=\\x86\\xc5w\\x8f?d\\x84\\xa9\\x90\\xc4\\xe4\\x82?\\x01\\xdc\\xb7\\xdd\\xdb\\x06\\x94\\xbf\\xc1\\x19\\xf4)s\\xa7s?x\\xa1\\xc5-\\x1f\\x8eg?\\xb9{\\xee\\xcd\\xa8\\x80j?\\xc4s\\x01\\xbc\\xcc\\xd4T?\\xf2\\x8f\\x0e\\x94wN|\\xbf\\xa0\\xc5uE\\xb6Sr?\\x8f\\xa4s|t\\xdfa?z\\x1ba\\x93\\xfb\\x82u?Hz\\xf6\\xc3\\xc4Ax\\xbfR\\xa1\\xdf\\x8b\\t\\xccv?L\\x0c\\xc6\\xbe\\xb4\\xcbe\\xbf\\xc5\\x0e\\x0f \\x84Wq\\xbf\\xa27\\x0cb\\x8d\\x13K?\\xc0\\x98!\\xaf}L\\x82?\\xe46\\x9aq\\x98w|\\xbf\\xf2\\x0e\\x94e\\xd1\\x07w\\xbfz\\x12\\xbb\\xc6gX}?\\xf4\\x14&\\xef\\xb9\\x0cw?\\xc0u\\xde\\xf6\\xednY\\xbf!\\xdcH%\\x04\\xd1g\\xbf\\x00vQ\\xe6\\x93\\xaf\\xf2\\xbe\\x1ea\\x90Yh\\x03e?\\xc0\\xc6pB\\t\\xdf\\x13\\xbf: \\x9d\\xf30bp\\xbf\\xc0\\xe7\\xcb\\xd0\\xa8\\xf7P?\\x98\\xfc\\xa0\\xaa\\x04\\xfa+\\xbf\\xb6\\xae\\xdak\\xf7\\xd0`\\xbf\\xc0\\xef\\xf1n\\xd1\\xd9i?\\xb0q oJ\\x8fs\\xbfn74\\x1b\\xe8{m\\xbfX\\x15\\x9a\\xd6h\\x9fS\\xbf\\xa8\\xd6\\xfc <\\x1bf\\xbf\\x00\\'\\x12\\x85\\x06\\x8cz\\xbf\\xe0O|)\\x1f\\xfcq?X\\nr\\x93\\x9e\\xd9h?\\\\L\\t\\xd8\\xa7n\\x83\\xbf\\x80\\xe2\\x97\\xec\\x95(Y?p\\x9f\\x99\\x82\\x1evq\\xbf\\xc0\\x85\\xe4+|}G\\xbf\\xa0))s\\xf7XJ\\xbf\\xe8C\\xe3\\xbeH\\xd2o\\xbf\\xac\\xcf\\x8b}\\x01Y\\x80\\xbf\\xc0\\xe5\\xedY[\\xfa3\\xbf\\xcb\\xc2]\\xa1\\xac\\x87z?8.\\x1a\\x8d\\xb9\\xd7K\\xbfHgp\\xd8\\xdf\\x00W\\xbf\\xe9\\xdeW\\xbbQxt?\\xd4\\xcb\\x04\\x0e\\x94\\xe9F\\xbf\\x95\\x0c\\x9e\\xba\\x1e\\x0ew?\\xa0\\x90\\x08[\\xf2\\x82Q\\xbfH\\xac\\xfao0[X\\xbf0\\xf3\\x85\\x1c*;^?\\xa0\\xb3F\\x9e1\\xbb6?\\xa0\\x8a\\xf0w^]E? \\xbe\\x14\\xaau%^\\xbf\\xe4\\xc9\\x03\\x87Q6\\x89?\\xbf\\x89}\\xcfLGy?\\xdc`Y\\xc2\\xdcu;?.\\x11\\xdcB\\xf8Qz\\xbf\\xec\\x13\\xafI6\\xe80\\xbf\\xb1Z\\xe1\\x93o\\x9cQ\\xbf\\xd8\\xb4\\x0e\\xfbR.M\\xbf\\xee\\x1et\\x9c\\xfd[i\\xbf\\x92\\x93f\\xf3\\xd0\\xf6I?\\xac\\xffXD\\xd8\\xd2\\x87\\xbf\\x80b\\xe3\\xab\\x03\\xe7\\xf4>\\x8b\\x17n\\x89\\xe1\\x16a?T\\x8ey\\r\\xe8\\x80_?\\xce\\xd5\\xb6\\x1b\\xb3\\x9dw\\xbf\\x84\\rQ\\xa2\\xe6pR?\\xfc\\x06\\x81\\x92\\xbd\\x8d\\x19\\xbf\\xf2\\xdb\\x8f\\x99\\x97\\xf9\\xf7>mR\\r[\\xe9\\x024?:B6\\xce!uV\\xbf\\x9e\\xe0\\xd0\\x94\\xbb\\xa2^?a\\xf4\\xee\\xbe}Z;?,=\\xe6\\nFe6\\xbf\\x8cfV\\x1d(_V\\xbf0\\x8e\\x91Z\\xc4=5\\xbf\\xbc\\xf3\\x00b\\xcf\\x1cH\\xbf\\xba\\xd8\\xeb\\xf5\\x7f\\xceR\\xbfg1\\xed\\xabc\\x1a7?\\xdc\\x15\\xd3\\x0bs\\'a?\\xc8\\xaeD\\xe7\\x99VR\\xbf\\xcb\\xbcJ\\x9bP8Q\\xbf.\\xa7AL\\xbdwS?hX\\x88\\xbc\\xed\\xce0\\xbfH\\xf4\\xf7\\x11\\xa1\\xe3U?\\xa4\\xce#\\xf6?\\x8dY\\xbf\\x9c0\\x90<\\t\\x11]\\xbfoU\\xe7\\xc0 ;D?\\xc4\\x1e\\xd9\\xf9c{*?P\\xb4\\x12>\\x9a\\xc5O\\xbf \\xc2l\\xfc\\x17\\xd4A?\\r\\xbd\\xa11\\x86\\x8e)\\xbf\\xcbO\\x15\\xf7npC\\xbf\\x00\\x88\\xf4\\xd9\\x93\\xa7\\x0c\\xbf\\xf4\\xa1\\x1a\\xe1z\\xb5_\\xbf@\\xd9\\xd9X\\xe2\\xe8[\\xbf|L\\xe4\\xeb\\x10\\xd5@?\\x93U\\xf2 j1S\\xbf\\xbc\\x89\\x9b\\x88\\xf8\\xa2C\\xbf\\x00S\\x17\\xd1\\x84\\xcaO?@\\xd8\\xe5\\x9aa\\x06\\x13?\\xd0g\\xfd\\xd6\\xef7b\\xbf\\x80R\\x00\\n(\\xc87?\\xf8Y\\xa2A\\xb6\\xe8B?\\x00c\\xfc\\x9dG\\\\G?D\\xa7\\x05\\xa9\\x18.J\\xbf\\xf0\\xe4\\x9e\\xd3-\\x9c%?\\xd0P\\xe8\\xf2\\xbf\\xceV\\xbf\\xf0\\xbad46P??34\\xe9\\x85\\xfb1b? \\x94k:\\xd9&,\\xbf(M;[\\xffP+\\xbf\\x1e\\xf2;+0.W?r\\xa8sy\\x96\\x16\\x15?#J\\xcb\\xc1\\xdf5>?PR\\x85\\xe4X\\x9d>\\xbf`>\\x0fg$A\\x10?|\\xf3\\xef\\xd7\\xba\\xf6P?\\x90\\x0bW\\x93\\xc1N\"?\\x00\\xa2\\xd9{\\xf5\\xce\\xec\\xbe8\\xd8\\xee\\x8b\\xd3\\xecO\\xbffx\\xfd\\x1c\\xf2@\\x7f\\xbf\\xdd`Y\\xc2\\xdcu;?d\\x93\\x93\\x9d\\xe3\\x84y?\\n\\xc0*-\\xe4\\xb8]?\\x85Z\\x87|\\x150T\\xbf\\xa7\\xadD\\x16\\x83\\xdaa\\xbfm\\x14{!\\xeb\\x85Y?\\xb1\\xc6\\xfdIC\\xe5Q?\\x91\\\\\\x0b\\xd7\\xebE8\\xbf\\xcc\\xbf\\xf6~Y\\xfb\\x84?\\x8cP\\xce\\xf4\\xf5\\x07h?\\nw7\\xeeE\\xf7a\\xbf9\\x07yb\\xec}c\\xbf)\\r>\\x1a\\x84\\x81W?\\x84&\\x83u\\x93z=?\\x1b\\xbd\\xd4\\xcci \\x03?\\x0c,$|\\xac\\x93E\\xbf\\xd4\\x05\\x8f\\xd1>T\\x06\\xbf)>F2]pT?\\x87\\xe7\\xe1QsFF\\xbf\\x8a\\x14i9H\\xc4a\\xbf\\xae*\\x18\\xf7\\xc9!b\\xbf)N\\xb7\\xd0\\xcdd^?<v\\xf3\\x0b\\xf9\\r_\\xbf\\x90]\\x1c\\x93\\x8cz\\x03\\xbf`\\x9d\\xf3E\\xdc>\\xd3\\xbe\\x81\\x0f\\xdb\\x07\\x8f\\xf4\\x16?\\\\:\\xbb\\xd0\\x8c8Z\\xbf\\xd4\\xd4\\xeb.\\x8f\\x0e=?dG\\x07\\x98b\\x15Y?/6\\xe1\\xeb \\xd0%?f\\xf0\\xae6\\xcc\\xc4i\\xbfN\\xde1\\x1c}\\xbe]?\\nx\\x7f\\x8a\\x9a\\x96T?s;\\xb5\\xde\\xc2\\xa8W\\xbf\\x80R\\x8fd\\x83Y\\x1c\\xbf\\x1a\\xf5|G\\xb0I@?\\\\\\xf5\\x15f\\xc3\\xc49?4\\x95\\xb0I\\xff$D?\\xf6\\x87\\x91\\xd4\\xc1\\x06@?\\x88\\x1cxr^S8\\xbf\\xf2\\xecq\\'\\x01\\xd7Q\\xbf0,\\xb5\\x04\\x9eH)\\xbf\\x14/@]K\\xfaM\\xbf\\xea\\x19}\\xe2\\x05\\x85W?*\\x9d\\xe74k\\xe95\\xbf(\\x82\\xdc;\\xa1\\xa5:?\\xe0\\xf9\\x991\\x05&\\'\\xbf\\xbc\\x91/\\x14\\x1c\\xd3I\\xbf\\xe0\\xe7@h>\\xa9\\x18?@\\x1dc\\x00:\\x8b4?,\\x04\\x9d\\xfe\\xe8LC? \\xd4[\\x92E\\xee.\\xbf\\xd0i\\x9c~\\xf6\\xd52?\\x18b\\xe7\\xfby\\xdd\\\\?\\xbc!X\\x13\\xa8\\x87R?\\x00{\\xcc\\xcd\\xdb\\xdf/?(\\x97!? \\xe7T\\xbf\\xa2\\xcb\\xe1\\xc6\\xa87\\x17\\xbf/\\xa3\\xe3\"[\\x02G?\\xcc\\xac2\\xd9\\xb4\\xd9L\\xbf\\x1d\\xd3!M\\xa2E(\\xbfE\\'\"X\\xcf\\xcaI\\xbf\\xc5;3\\xbf\\xf5hD?\\xfa\\x19\\xc0\\x04)\\xd0E?\\x8cE\\tc\\x1c\\x033?\\x00q\\xa8\\x17,k\\x07?@\\xbf*@\\xbc\\xbf-\\xbf0\\xe8\\xa4\\x083t;\\xbfy\\xb6z\\xcf@+\\xa4\\xbf0\\x11\\xdcB\\xf8Qz\\xbf\\n\\xc0*-\\xe4\\xb8]?\\x18;\\x9e\\xe7\\xa4\\xe8\\xb1?\\xe0\\x80\\xf6\\xdd\\x07\\x91\\x81\\xbf%\\xb2{\\xaf\\x9b\\x80\\x80?\\xd8s\\x1f\\x9d\\xb1\\xe7x\\xbf]ke\\xc6zx\\x90?\\xb8\\xac\\xc2\\x92>\\xf0e\\xbf\\x0c\\xe4\\x100\\xc5\\xd7\\x83?!\\t\\xa3\\xe0\\xd8\\xac\\x9a?\\xe9Q\\x06;\\x9c\\'r\\xbf(!\\x93\\xc4\\xa3\\xcb\\xab\\xbfS \\xce\\xbd\\xd4\\xcc\\x96?\\xd3\\x1e\\x8c\\x7fj\\xb7\\x86\\xbfx\\xa1X\\x06\\xef\\x84V?\\x07\\t\\xa1\\xe1\\xf5\\xc1u\\xbfG\\x1b\\r\\x05tm`\\xbf\\xe0\\xf9\\xe8\\x1e\\xc5G{?\\xb8\\x0b\\x14L\\xd0.Q\\xbf\\x12\\x87A\\xdb\\x9b\\xf7l\\xbfH\\x0b\\x97#T}\\x81\\xbf\\xfcR3obmq?\\x0c\\xc1\\xf4\\x81\\x9b\\xeb\\x82\\xbfP\\r\\xe6x\\x88\\xd7>?S\\x18\\\\\\xc5m\\tq?\\x10J\\x10\\x98\\x89\\xdf>\\xbf\\xa4\\x1b:\\xbd\\x05\\x93p?@\\xa8X_\\x14{e?\\xc4`\\x1e\\xfdW\\x91k?\\xbb\\xa2T\\xb38\\x01j?\\xecP\\x9b~I\\xe9v\\xbf\\x0e~\\xde\\xd1\\x18\\xd7\\x84?\\xfa\\x07\\x83\\x19\\xf5k[?\\x9cp\\xc0\\xa4\\xe6\\rh\\xbf\\xc8\\xcb\\xdc\\xfd\\x92\\x17Y\\xbf\\xc0\\xae\\xd3\\xc6Y\\xaa<\\xbf`J\\xc9?\\xcc\\xd9c?\\xd0\\xa6\\x9a\\xa8\\xc9Bo\\xbf0\\t\\xda\\xfe\\x0cG\\x1d\\xbfx\\xb4E\\xf1\\x16\\xc4e?\\x80\\x82\\xc5\\xdb\\xc6\\xc5A\\xbf(\\xa5.-\\x94\\x9bp\\xbf@\\xfb\\xf9=$(/?\\xf4\\xe2\\x88\\xd9\\xee\\xd6`?\\x00v\\x14\\xa4\\xa1\\xdch?\\xca\\xc0\\xeb\\x9a\\xf2z\\x81? \\xdeK\\xeaZ\\x05a\\xbfH\\xb9\\x1a\\xbf\\xf5me\\xbf\\xcc\\xd5\\x0b\\x919\\xcfx?\\x80\\xc2\\x18\\xd9\\xe4\\x12a\\xbf4\\xca\\xf2h\\xd3gp?X7\\xf4\\x94O\\xbf\\x87?Lnm\\xb4\\xc8\\x05b\\xbf\\xce\\x8ay\\xe3!Eq?\\xa8*\\xe2c\\x08\\xb7p\\xbf@$\\xb4\\xd8w$[?&8\\t\\x08\\xa2\\xa0i\\xbf\\xb7\\x18\\x0e,\\x85\\xc2R?h\\'\\xfa\\x8cX\\xc5g\\xbf\\x053\\x8d2\\x1c\\x14n\\xbf\\xc1O\\xc3\\xc1\\xeb\\x8cC\\xbfH O&3\\xcbR\\xbf@\\xed\\xea\\xf9\\nvU?\\xa0[~\\xe7\\xcd\\x93O?@v\\xcb\\x9b\\xe2\\xadG\\xbf\\xb0\\x11\\xb4\\x9f\\xbb~G\\xbf@\\xeds\\x1c\\xcb\\x14.\\xbf\\xb0\\x8e`\\xfe\\xda\\xf4X?\\xc2E#\\xe1\\xbd\\xcc\\x80?\\xec\\x13\\xafI6\\xe80\\xbf\\x82Z\\x87|\\x150T\\xbf\\xe0\\x80\\xf6\\xdd\\x07\\x91\\x81\\xbf\\x91\\x05\\x0e\\x98\\xbaht?>\\xd6j\\\\\\x0e\\xaaE?\\xc0\\x9f1/.\\xfdF\\xbf{j\\xa7\\xc4\\xec\\x04g\\xbf&\\xe0\\x1f\\t\\xaaB2?TT\\xf3u\\xf3\\xa6t\\xbf[t\\xfb\\x88U\\xcc{\\xbf\\xb4d\\xda\\x9c\\xcf\\x8c^?8\\x91:*\\xe1\\x93a?\\xe8\\xc1\\n\\xf8\\xbdNR?0\\xdbS\\x1f\\xaa\\xddJ?#\\xa9\\xeaQ9b7?\\xee\\xc9\\xdb%i6\\'?\\xf0a\\xb4\\xcf\\x88UF?8>\\xe6\\xca/\\x8a#\\xbf\\x00.|\\x05^\\x13\\x1b?\\xaa\\xd7\\x84\\xa1c\\xde@\\xbf0Lt<\\x86G?\\xbf\\xb0g\\xa2\\x9c\\x88\\xd8L?TE\\xb7J\\x1c\\x83Q?\\xe0\\x17\\xec\\x8e>2\\x1e\\xbf\\x10\\x84\\x99\\x88\\xe9\\x14M\\xbf0\\\\\\x14\\xbbq\\x01\\x01?\\x00\\xb4\\x0fx\\x17}\\x13\\xbf\\x80E\\xa0B\\xe7xQ\\xbf \\xb3\\x06o\\t7\\x16\\xbf\\xab\\t9#\\x11*Z?\\xe0\\xb4\\xd3m\\xc1\\x84L?\\xd0\\xe8\\xcf\\xccf$T\\xbf\\xfc\\xd5\\xda\\x97\\xb5\\xd2D\\xbf\\xf8\\x80\\xf2L*i<\\xbf\\xe8tt\\xab~+L?\\xb0\\xc7\\xa5\\\\~U!\\xbf\\x085\\x19\\xdc\\xc6\\x1dG\\xbf\\x00\\xc0*\\x12x\\xbc\\xf6>/b\\xee\\xc5\\x85\\xf5B\\xbf\\x1c\\xae\\xf5?\\x0e<8\\xbf\\xa0\\xeb\\x01\\xf1=sL?\\xa0\\xa2fu\\xd3\\x961?\\x84\\xf5a\\x982\\x80b\\xbf\\x80\\xd7\\xab\\x04>\\x04\\n?\\xe0\\xf7\\xe4\\xf3\\xb4eA?X\\x8a\\xcb\\x8b\\x9e,]\\xbf\\x00\\xf0\\x82\\x85\\x9b\\x15C?\\xe8\\x164\\xb3\\x91TP?\\xa0\\'\\r\\r\\xed\\xbcJ\\xbf\\x00\\xc4\\xaf1\\xfb\\xc3\\x17?P\\xd3M\\xb6\\xdf!V\\xbf@\\xe8\\x07\\xe0\\x89\\tR\\xbf0\\xb5\\x90\\xe7\\xe9\\xda;?\\xe0E\\xee\\xbe\\xe7\\xeeA\\xbf\\x000M\\x93\\xe7d\\xe9>\\x98#\\xee4\\xc0/H\\xbfj\\xf0\\x85\\xd8\\xd1^K?\\xf0\\xf8\\xad\\xd7\\x92\\x8b1\\xbf8F\\xecU\\xdej4?\\x80j\\x13\\xe7\\xdd\\x84\\xed\\xbe\\x9e\\xc2N\\xdf\\xa4Y\"\\xbf\\xa6\\xd3\\xee\\xcc\\x02\\xe9H? \\x8am\\xa8\\xb3\\x9f$\\xbf\\x00\\xd3\\x02\\xe2,\\xf0\\xf4\\xbe\\xd0~<h$\\x18>\\xbf\\x00(s\\xc0\\x17\\xcd\\xed\\xbe\\x00\\xb8\\xa0\\x96\\x18[\\xcc\\xbe\\x00\\xb0Ho z\\xdd>\\x9a\\\\*\\xc8\\x9e3U\\xbf\\xb1Z\\xe1\\x93o\\x9cQ\\xbf\\xa7\\xadD\\x16\\x83\\xdaa\\xbf%\\xb2{\\xaf\\x9b\\x80\\x80?B\\xd6j\\\\\\x0e\\xaaE?\\x1d\\xd5\\xbe\\xe3\\xc9Ky?\\x94\\xa7\\xa9\\x1c\\xb8\\xb6X\\xbf\\x12\\x0f\\xf3\\x83\\n\\xc0R?&\\xdd\\xd49\\xc4|+\\xbf\\x00v\\x0f\\x178z\\x1c?P\\xcf\\x1f\\xe1\\x98\\x8cd?\\x88\\x07\\xf4\\xcc\\xd2\\xb9K?$9q\\x8e^\\xe9\\x87\\xbf\\x92\\x0f1A\\xe41d?\\x8e0\\x8c\\x08\\x19\\x18Y\\xbfP\\x85\\xe3\\xc3\\xe6U\\xeb\\xbe\\xd4\\x13+B\\x1c\\x9dM\\xbf\\x98Bqv\\xcb\\x8f/\\xbf\\x90\\xf3\\x02\\xe9F-f?\\xb4\\xd0U!\\x00\\xc9@?\\x0e\\xa1\\xa8$\\x8d\\x89S\\xbf\\x9f\\xbf\\x0e\\x93%\\xach\\xbf\\x00+\\xc7i\\x9a\\x8e\\xfe>\\xca\\x91Bv\\xaa\\x9dg\\xbf\\xc0~\\x97\\\\.\\xbc\\x06\\xbfP\\xb8G\\x0cK\\xb3+?\\x00\\x05\\x81\\x96R\\xa3\\xc9>\\x80t\\xc1@\\x81\\xf6!?\\x08s\\x16\\xd1\\xc5\\xecC\\xbf\\x900\\xcf\\xff\\xed\\x8f>\\xbfE\\x877Y`\\x01j?0\\\\\\xbd\\xf1W\\x0c=?\\x88\\xa2\\x18\\xf1.,[?\\xed\\xda\\xbf#\\xb44S\\xbf\\x08\\x87\\xcc\\x94VzU\\xbf`\\xc4\\xc2L\\x81Y\\x18?\\x16\\x89\\x05d9\\xae@\\xbf\\xfc{\\x1e$\\x8bwD\\xbf@#i<=\\x89Q\\xbf\\xcd|\\xb5\\xe7U\\xf9F\\xbf\\x1ax\\x07\\xcbs\\x94M?`\\xeao\\x01W\\xdfH?\\x00\\xbd\\xc28\\xe1\\xbbH\\xbf;W\\xf7il\\x9fY\\xbf4\\x88\\xdd\\xaa\\xef\\xe6H?\\xf6\\x1c\\xe0\\xc7X\\xf6K?\\xc0b\\xe9\\xa0\\xb2XB?\\x00\\xb6kc\\xe6{*?@@\\\\\\xc3y\\x1c/?\\x80\\x051d\\x9c\\x85\\x1d?\\x00\\x1aMf\\x13B&\\xbf`nG\\xe1{\\t.\\xbf\\xe0%\\x1c\\xf3\\x00\\x17X?\\xc0\\xdbd\\xe0\\xf3\\xc6,\\xbf \\x1bV/\\xff\\xbfE?0\\xca\\xd7E\\xdbpV\\xbf\\x80\\xb8>\\xb8\\xa2\\xa6\\x10\\xbf\\xa4~\\x8fC\\x80^B?\\xd8\\xd0/\\x9c8$\\x18?\\xdc\\'\\x1e\\x0b7(J\\xbf\\xb6kHu0fI\\xbf\\x88\\x1e\\xe4\\xc68G\\x1b\\xbf@\\x19\\xea\\x8d4\\x8c??\\xf8\\x9a~\\xa1=\\xbcA?`i\\xc9-U\\x95\\x13\\xbf Kw\\xf9\\xedM!?d\\r\\xb5M\\xdc7H?\\x00f\\xf9(\\x91*\\xf3\\xbe\\x805\\xbe@O)\\x0f\\xbf\\xd0\\xfd\\xcc]h\\xf8\\x83\\xbf\\xd8\\xb4\\x0e\\xfbR.M\\xbfm\\x14{!\\xeb\\x85Y?\\xd8s\\x1f\\x9d\\xb1\\xe7x\\xbf\\xc0\\x9f1/.\\xfdF\\xbf\\x94\\xa7\\xa9\\x1c\\xb8\\xb6X\\xbf\\'\\x0bIW7M~?H\\x02mP\\xfb\\x82@?0\\x91=\\xc8\\xb0u\\x10\\xbf@\\xe74\\xc6\\x8f\\xd6\\x89? \\xea+7Je\\\\?@Q03\\x83\\xebf\\xbf\\xf0_Hh\\x9f\\x9b\\x82?N\\x01[\\x1dg\\xc6`\\xbf@#\\xca30\\x18X?\\xacW\\xfb+8HU\\xbf\\xbdj\\xa0\\xc8\\xcb\\n>?\\x00\\x83\\x8f\\x82\\x04\\x94\\x02\\xbf\\x02\\xc3\\xeaM\\x0c\\x19X\\xbf\\x80:vg\\x17\\x83P\\xbf@4\\xecrI|Y?\\xe0\\xb2\\x8c\\xd1P\\xbe8\\xbf \"\\x98\\xa4\\x07\\x0eT?\\xe0<AJ\\xac_C\\xbf@\\x8cS\\xdf\\xdcS@?\\xe0ij!\\x8ds)?\\x80Wc\\xad\\x11\\xbf\\x1c?\\xa0\\xc6C:\\xa4\\x9aZ\\xbf\\x00\\x14\\x0c\\xb9\\xf39Z?\\xf0\\x9dJ\\xc2\\xb0\\xa6T\\xbf\\xbc5O\\x1c\\x8d\\x1aS\\xbf@#(m\\x0e$[\\xbf\\xa0\\xe9\\xb1\\xcf\\x1aQP?\\xaev\\x0ca\\xf0\\xded?\\xe0\\x05\\x94]\\x19~??\\xe0\\x9e,\\xe9/\\xf8=\\xbf\\x00\\x97\\x91\\xfa\\xd3\\xcf*?\\x00X\\xfcd\\xae\\xdf\\x0f?\\x00\\x86\\xd0\\x0c}\\x81E?(\\xb3\\x8b\\x92\\xc711?\\xe0\\x83\\xf5\\x9a\\xf9\\xfc>?\\x80Gt\\x1a\\x90\\xa4O\\xbf`n\\x0b\\x00;\\xdbc?\\x08`l\\xb2AkP?\\x80\\x13\\xe4\\'V\\xe4\\'\\xbf\\xd0\\xaf\\xbe\\x8d\\x14\\xedF\\xbf\\x00\\x9e\\x03\\x01XQ4\\xbf\\x00) \\x15\\xdb\\xd9A\\xbf\\xc0\\xe7\\x01\\xc9NlR\\xbf y\\x02}[\\xbdR?\\x00\\xae\\x0b\\xdb\\x90\\x9b2?\\xc0\\n\\x93\\x94\\xdb\\xb35\\xbf\\x80\\xf5\\xdc\\\\9\\x8cj\\xbf\\x90\\xa8\\xc9\\xbb\\xe4:U? \\\\#/\\xe8_G\\xbf@Ew\\x162\\x0bh?\\xc0\\xad\\xbd;\\x9b\\n<\\xbfr}\\x11Q\\x9dRZ\\xbf q5\\xbcK\\xea\\x15?\\xa0\\xb4s\\xb1W\\xfeC?\\xc8]\\xactP%R\\xbf\\xc8\\x02\\xd2\\x82f\\xd73?\\x04\\x0f$\\n\\xb4\\nP\\xbf@\\xd5\\x0f\\x96\\xff\\\\D?\\x00\\xded\\xf279>?\\xc0s\\xd7\\xfa\\xef2F?@\\r\\xdf\\xd9\\xf8tE?\\x00\\x9a\\x06\\xd4}\\xbb\\x0e\\xbf\\x00\\x88\\xb30\\xcf\\x90?\\xbf\\xc8\\xddc\\xb5\\xcc\\xf8\\x90\\xbf\\xee\\x1et\\x9c\\xfd[i\\xbf\\xb3\\xc6\\xfdIC\\xe5Q?]ke\\xc6zx\\x90?{j\\xa7\\xc4\\xec\\x04g\\xbf\\x12\\x0f\\xf3\\x83\\n\\xc0R?H\\x02mP\\xfb\\x82@?7\\xacktG6y?I\\xa6\\x06e\\x19\\xa7N\\xbf\\xe6%\\xa1_\\x91\\xdb\\x83?\\xfe\\x9e\\xea\\n6\\xde~?^\\xee\\x0cM\\xe3sf\\xbf!\\xb5y\\x17g\\xb4\\x82\\xbfx\\xa4,[\\x035w?R@\\xf3\\xb7* c\\xbf\\xb42\\x9c\\x94\\x96\\xf7\\x06\\xbfs\\xad\\xd1hP\\x11K\\xbf3\\xee\\xd4b\\xdb\\xc6F\\xbf-\\xf0|\\xdf;LT?zVy\\x85\\x8e\\xfbN\\xbfN\\x8aa\\xa7[\\xc52\\xbfW\\xce\\xc4\\x83\\x98\\xc3V\\xbf\\xef\\xa4\\xff`\\x8bmV?\\xed\\x0f\\xb6\\xae\\'\\xbe\\\\\\xbfJ\\xa6%&\\xfd\\xa5<?\\xfeMa\\xe9\\xd5rZ?\\x97\\x99>\\xfdD\\x83*\\xbf0\\x8e5J\\x97t\"\\xbf\\xb4S\\x85k\\xdf;Y?\\xfae\\xa3s:XR?Jw\\x12\\xb7amL\\xbf\\x12y\\xdd1%kZ\\xbf\\xd0\\xa8%\\xe7{\\xb2[?\\xee\\xa6\\xf1\\x86\\xa9\\xd4R?[\\xa1))\\xfdUD?\\xc2em\\xbb\\xba\\xd9H\\xbf\\xc0%C\\xb7t0\"\\xbfo\\xb8t\\xba\\x85(R?\\xa8PD+W\\x95G\\xbf\\xc5\\x80w\\xb0\\x12\\xd23?D \\xbeJ\\x11\\x05Q?\\x08uk/\\x86\\x05E\\xbf\\x00\\xba\\xe1\\xbe\\x04:\\x15?\\xee\\x02!\\to\\'Z?h PO_\\x9c!?j\\xa3\\xe3\\x0f\\x02\\xe3L?\\ny$\\x02\\x15\\x10e?\\x00I\\xab\\xac\\xa4\\x93Q\\xbf\\xfa\\xf3\\x84}\\x94OR\\xbf\\xb8`\\xf4x\\xe6\\xeef?`\\xe4g\\x8e\\x9dUB\\xbf\\xc42\\xd1\\xe0\\xaeCP?\\xe0d*!\\xf7\\x93_?\\xe0\\x8f \\x04e\\xcf(\\xbfv\\xd7\\x81Mj\\x0fM?0\\xa9\\xf7\\x91@\\xbdJ?\\xd8\\xe5\\x90\\xf2\\n\\x91,?\\xbc\\xd35\\xa7\\xb6\\x9aY\\xbf6\\xbc\\xe8\\x17\\x03\\x13:?R\\xac\\xbbd\\xbf|0\\xbf\\xb9\\x9b\\xeeVh\\x9fU\\xbf\\x1c+t\\x05N\\xca\\x0f?\\xb6\\xfd\\xe8,\\xf2\\x01O\\xbf\\x80-R5\\x85\\xc7\"?4&*\\xe1C\\xd3+?$\\r4\\xff\\xc1&@\\xbfTu\\xf2\\xa3\\xa7\\x08:\\xbf \\xc8\\x88\\x15\\xa6\\xea\\x08\\xbf\\x18\\xd3\\x05varH?\\x14`\\xc7S]sl?\\x92\\x93f\\xf3\\xd0\\xf6I?\\x91\\\\\\x0b\\xd7\\xebE8\\xbf\\xb8\\xac\\xc2\\x92>\\xf0e\\xbf#\\xe0\\x1f\\t\\xaaB2?\\x1e\\xdd\\xd49\\xc4|+\\xbf0\\x91=\\xc8\\xb0u\\x10\\xbfI\\xa6\\x06e\\x19\\xa7N\\xbfzn\\xd4kn\\xf4`?~\\xb3h\\xeaP\\xc3T\\xbf\\xde+\\xe4\\n\\xa0\\xbbQ\\xbf\\xa6\\x9f\\xee\\xd5\\xb0\\x93M?l!\\x06\\x8f\\xf1\\xa5H\\xbf\\xa2\\n]\\x9a\\xeb,_\\xbf%\\xa3\\x96\\x13I\\x81B?0w1\\xac\\x88\\x8f\\xe6>\\x08\\xf0F\\xbfBo7?u\\xce\\xb4\\x8d4G\\x15\\xbf\\xf0\\xe0\\xa1\\xa8\\xfe\\xedR?\\xee\\x12\\xb4\\x86\\x80\\x108??\\xee\\x19\\xc8B\\x82P\\xbf>\\xb2\\xacl\\x13FU\\xbf@\\xf8\\x8d\\n\\x85}\\x1f\\xbf\\xe4\\xd0*\\xf9E\\x08Q\\xbf\\x9c\\xe8\\xaa\\xea\\t<\\x1b\\xbf\\xb8R%$\\xf1\\xcd\\x05\\xbfPP\\xc5\\xd7\\t\\xd4\\'?0\\x0e2\\xe5f\\x84K\\xbf\\x90\\x8bL\\x96\\x02\\xfbC\\xbf\\xc6&\\xa9<\\x11H8?\\xc0\\x8c\\xd5\\x05?\\xc0V?\\x00\\xa42(\\xc2\\x00B\\xbfZz\\xc7\\x94lMH?\\x9d\\\\\\xdf\\xa0x))?\\x87\\x99LE\\xf3\\x85M?]\\xc8\\xf4w\\x1c08\\xbf\\xfe\\xe0\\nJ!D \\xbf\\xc0\\x02\\x82\\xe0\\x1e\\x81\\x02\\xbf\\xc0\\x90|\\x06u,\\x12?\\x94>\\xf2\\xf13\\xf7/?\\xf0\\x9f\\x81LK=\\x15?\\xa0*\\xe0\\xd2_\\xe0-\\xbf\\xe0iZc\\xb4\\xa83\\xbf\\x1a\\x06g-\\xa6\\xc8S?$\\x94\\xb8e\\xa1\\x85A\\xbfF\\x8du\\x9fT\\xf9:?@\\xa2|\\xa2\\xc2^\\x05?\\xe0\\xb3\\xb2\\x90\\xdf3B\\xbf\\x8c\\xaa^{\\xe1\\xc4@\\xbf\\xf0\\xcc\\\\\\xad\\x87\\xb9%\\xbf\\xb0\\x1b\\x1f\\x0b?\\x88:\\xbfL\\xdc\\x93V\\xf6e<?8`\\xa4\\xc3\\x81\\xc14\\xbf\\x00\\x84\\xdc\\x98\\xfb\\xec\\xc7>\\x84U\\xb0\\xf7\\x13h8\\xbf\\xe0\\x84\\xb0\\x12\\x16B2\\xbf\\x80q\\x98\\xb7G\\x12\\xf3\\xbe\\xc6\\xdf\\xd6\\x15\\xa1\\xa9$?\\xc4\\x83\\xf3+\\xa8\\xb13\\xbft\\xdd=R\\xb5\\xba6\\xbf\\xf0\\xe6\\xc8ST\\x90\\x11?\\xce\\xbd\\xb3x\\xf9\\xf2 ?hZ\\xb1\\xe1\\xb8\\xfc\\x01\\xbf\\x00\\xacsHs_\\x1a?,\\x9c\\xe6\\x01F\\x92\"?\\xbc!\\xab\\xb7\\xe592?\\xf0\\xc3\\xc2D\\xb5\\xfa(?\\x14\\r\\x88\\x06\\t\\xb8%\\xbf$\\xb0n\\xae.\\xb4=\\xbf\\xfcd\\xd6E\\x96\\xfd\\xb0\\xbf\\xac\\xffXD\\xd8\\xd2\\x87\\xbf\\xca\\xbf\\xf6~Y\\xfb\\x84?\\x0c\\xe4\\x100\\xc5\\xd7\\x83?TT\\xf3u\\xf3\\xa6t\\xbf\\x80v\\x0f\\x178z\\x1c?@\\xe74\\xc6\\x8f\\xd6\\x89?\\xe6%\\xa1_\\x91\\xdb\\x83?\\x80\\xb3h\\xeaP\\xc3T\\xbfq\\xffbo\\xdc\\x8b\\xc3?n\\xc0\\xd6`a\\x15\\x94?\\xe0\\x95\\xca6E^\\x97\\xbf0P\\xca1@\\xda\\x86\\xbf\\xfc\\x15\\x97U\\xfd\\xe4\\x82?\\xc0_sF\\xf6\\xc6E\\xbf\\xf2\\x1c\\x99\\r\\x8c\\x19j\\xbf\\xed1\\x1c\\xa6\\x0b\\x89c\\xbf(\\xff\\x9d\\xd2J\\xc1@\\xbfT\\xbb\\x02\\x93A\\x0f\\x80?\\xe8\\x8f\\xb1$\\xd8\\xa2\\x84\\xbfX\\xc4\\xe1\\x88\\n-S\\xbf\\x10\\x15(\\xc2B_Y?0\\xbd\\xd5-\\xad\\x93w?\\x88P\\xbf\\xbb\\xae\\xa6r\\xbf\\xc0\\x1e\\xb8\\xe7bdg?\\xd0[\\xf8\\xaff7V?\\xd8J\\x95\\xc8Z\\xa6G\\xbf\\x80\\x14\\xd1M\\xb9\\x0c\\x9a\\xbfp\\xb6\\xf6p\\x87\\x01|?\\x8e\\xdf\\xabrv&\\x83\\xbf\\xae\\xb1\\xc45ZWx\\xbf\\x80\\xae\\xf0S\\xbe)e\\xbfp.\\xc3\\xb0\\x17\\xaa\\x86\\xbf\\xe6HV\\x86C\\x1fy?4U\\xa4\\xe7\\x13\\xb6r\\xbf\\xec\\xd2R0\\x82>s\\xbf(\\xc1\\x11\\xe0\\xf05b?\\x90\\x94\\xa0\\xebpaa?\\x00\\xa4\\x12\\xde\\x7f:N?\\xba\\x9a\\x06\\x11+\\x1dS?\\x80Q\\x03\\xe4\\x93^$\\xbf\\x80U\\x8e\\x1d=\\xaaf\\xbf\\xe0J\\x8b\\x92\\x96%\\x81?tr\\x1b\\x1a\\xa6{\\x7f?0%*\\x14e\\xe4o?\\xb0\\xd8\\xd6\\x8c2vR\\xbf\\x00\\xbd\\xf8Z\\t\\xf4W?\\x80\\xf9J\\x1f\\xbf\\x95q\\xbf\\xc0\\xc8\\x86\\x90\\xa7eh\\xbf\\x80r*\\xc8%\\x89I?\\x00`\\xbd\\xf4i\\xcf\\x00?\\x94\\x94\\xdaTu8\\x80?\\x00S\\xf8e\\xbd\\xafy\\xbf\\xd0\\x00y\\xa0\\xd0Gb?\\xc0!`\\x91\\x8bcm? \\xa4\\xd3\\xa92\\x8fq?@\\x89\\xb3\\xc8\\xdbIZ?\\xb2\\xc5\\x07\\x12\\xcb\\xc1\\x80\\xbf\\xbcJ\\xc0V#)U?\\x00\\x8eY\\x15#!4?\\x11+R\\x0f\\xd6\\xb3w\\xbf\\xb5\\xf6\\xa0\\xba\\x0f\\xa8f\\xbf~i&\\xb0b\\x00x\\xbf\\xf8\\x9d\\x06\\xa9d\\x04\\x81?\\x00(\\x06-u\\xb51?@\\x84\\x11\\xe6\\xd2Jl\\xbf\\x90\\x9f}\\xc5\\x83\\x00o?\\x00\\xb2\\x16\\xd4\\xfe\\x82R?@\\xc1\\x83\\xa8&\\xa1q?3G\\x1fsO\\xf9\\x9e\\xbf\\x80b\\xe3\\xab\\x03\\xe7\\xf4>\\x8cP\\xce\\xf4\\xf5\\x07h?!\\t\\xa3\\xe0\\xd8\\xac\\x9a?[t\\xfb\\x88U\\xcc{\\xbfR\\xcf\\x1f\\xe1\\x98\\x8cd? \\xea+7Je\\\\?\\xfe\\x9e\\xea\\n6\\xde~?\\xe0+\\xe4\\n\\xa0\\xbbQ\\xbfp\\xc0\\xd6`a\\x15\\x94?{\\xf5\\x19E\\x83\\xa1\\x9d?%\\x9f\\x15-\\xac\\x06v\\xbf(C\\x0e\\x13L\\xaa\\x8f\\xbf\\xb0\\x7f+\\xc7\\xdd&n?\\xe8\\xfe\\xbe\\xe2\\xb3\\x07l\\xbf`\\x98\\xb8?\\xce\\x17^\\xbf\\xb2ktBk\\xacf\\xbf\\x10,c\\x9e\\xf5\\xbcF\\xbf\\x02\\x96\\xf8/\\xea\\x0bq?\\x08\\xd2 \\xc4k\\x8ch?\\xb0\\xf3\\x9e\\xf4L\\x831\\xbfJ\\xd3w\\xd1\\x14\\xa3d\\xbf@\\x92}\\x16\\x95\\xd01\\xbf@\\x0f;\\x1a\\x12\\x17r\\xbf\\x00\\x8e\\xf0\\x8a\\xf2\\x9f??D\\x00=\\xe3Y\\x8dV?\\x00\\xd6\\x8d\\x05 t\\x15?@?\\x85\\x95\\x08|I\\xbf\\x80\\xadcm\\xfe0b?d~~\\x8b\\xbb+`?2\\x13\\x91\\x10\\xbdZ\\\\\\xbf\\x00n\\xd5\\x84\\xa7\\xb3e\\xbf\\x10Z\\xc1\\xab\\xedkd?v\\xc8\\xc2\\xb4\\x86$h\\xbf\\xbc\\xe1\"\\xabD\\x1fm\\xbf8\\xe7\"Y?pT\\xbf\\xe0\\xa5;\\xa2\"\\x88%?\\xe0\\xaf\\x90\\x16\\xad\\x005?\\x00Fb\\x1c\\xd5\\xe09\\xbfxm9\\xab\\xfcv6\\xbfr{\\x0fd\\xd0\\xd4W?\\x00\\xd6%\\x96<L^\\xbf\\x80\\x94\\xc3]#hV\\xbf\\x80\\xde\\x95\\xef\\xce@\\x12?\\xb0\\xe3M\\x9f\\xf0\\x88^?`\\x05)TG<1?\\xb0b\\xc2@S\\x0fl?\\xc05\\n[(\\xfe^\\xbf@\\x13[\\x13\\xac\\x8dV\\xbf \\xf1GL\\xec\\xa0l?\\x80\\x811\\xc9\\xb1fB\\xbf\\x00\\xc0\\xa0\\xd2\\x1a\\x8bn?\\xc0\\xc47\\x08&\\x08j?\\xd0\\xc5\\xdd\\xf1\\x92\\xf5S\\xbf8\\x1b\\xf5\\r4\\xcag?\\x00\\xf34\\xbe{\\xca%? \\xde4lG\\x86Y?\\x12\\xe9,\\xc4<\\xfcD\\xbf\\x10+\\xca\\x94\\x8b\\x0e7\\xbf\\x107\\xda\\xc6$\\x9cN\\xbfP\\xc0\\xa7\\x8a\\xee/F\\xbf\\xb8\\xd2FWT\\x0cD?v\\x03\\x17e\\xeb\\xd9d\\xbf\\x00<\\xf0y\\x02.6?\\x90\\xa6\\x91\\xd1c/F? j\\xbfj@\\xb6R?\\x00\\xe2T!9\\x98\\'\\xbf\\x80\\xfan~\\x0f.D\\xbf@O\\x15\\xdbrHB\\xbf\\r\\x0e=\\x86\\xc5w\\x8f?\\x8b\\x17n\\x89\\xe1\\x16a?\\nw7\\xeeE\\xf7a\\xbf\\xe9Q\\x06;\\x9c\\'r\\xbf\\xb4d\\xda\\x9c\\xcf\\x8c^?\\x88\\x07\\xf4\\xcc\\xd2\\xb9K?HQ03\\x83\\xebf\\xbf]\\xee\\x0cM\\xe3sf\\xbf\\xa6\\x9f\\xee\\xd5\\xb0\\x93M?\\xe0\\x95\\xca6E^\\x97\\xbf\"\\x9f\\x15-\\xac\\x06v\\xbf\\xd5\\xcb\\x1d\\x0e\\xc7\"{?\\x80=\\xe5\\xf7\\xf7}5\\xbf\\xf3\\xaf45 \\xa8d\\xbf\\xb0[\\x8f\\xed)\\xe64?p\\xfd?\\xb9S\\x17B?\\xd6\\xd3\\xf88\\xe7ZG?@\\x80\\xc4\\xe8hz\\n?0-\\xc71\"m5?\\x94i\\x18/\\x1bAd?\\x18Y\\xf1\\xc4\\xa1cT\\xbf\\x90l\\xdfC\\x0b\\xbbH\\xbf\\x10T\\x04\\xc4s\\xb5R\\xbf\\x00\\x88\\xf1\\xf8\\xb7n\"?(\\xb1a\\x11\\x07\\xa2B\\xbf\\xd8\\xf0\\xeb9 t<\\xbf\\xf0,k\\xd3\\x07\\xeb.?\\xa88\\x9en\\xc6!f?\\xe8s\\x85\\xd8\\x8e\\x90`\\xbft\\xa0\\xc3\\xd8\\x9f\\x06_?\\xbdn\\xbb\\xac\\x96ne?\\x00O\\x16\\xd8,\\xee>?0|m\\xef\\xe0\\xdfX?\\x1e@\\xe0\\x98~\\x80V\\xbf\\xc0\\x02\\xbc\\xf1\\xffWB?\\x80\\x00$\\x1d\\x99\\xd9K?\\xe0\\x0b\\xd3\\xde\\xd3\\x8cD\\xbf\\x00\\xf6fH\\x96\\xad)\\xbf\\x007\\x15<*_<\\xbf\\'2\\x9e\\xb0\\xe3\\x00A\\xbfpSc\\xbd|\\xd0 \\xbf\\x00\\xa0Z\\x89^\\x04M? ]\\xb2\\xcc\\x139T\\xbf\\x98\\xebN9\\x94TU\\xbf\\xd0h\\xd8c\\xaa\\xb6E\\xbf\\xe8\\xa1\\xf66\\xf36D?\\xe0G5-\\xf8GA\\xbf\\x80\\xae|\\x8c\\xea\\xacH?\\xc0\\xd4\\xfb\\x1d\\x82\\xc7>?`\\xf1\\x95\\xc0H\\x91C\\xbf\\x00\\xff\\xfd!\\xf6\\xd6=\\xbf\\xa0\\xdf\\x91f\\rZX\\xbf\\x80C%e\\x89SM?\\x80\\xc9c\\x0f\\xea\\xe3:\\xbf\\x08H\\x89 \\xf2\\x93S\\xbf\\x00WT5\\xe2\\xccU\\xbf`Xb\\xf9\\xf8^7\\xbf>x\\xc8\\xb5\\x04xb?\\xc0\\x8d\\x03\\xf06\\xa1,\\xbf\\x00\\xe9\\xdd_\\xca\\x19/\\xbf\\x9d\\xb2i\\xf0,\\x93U?\\xaagX\\x98\\x00\\xbc;?\\xe0\\x83\\x97\\x126^P?Pu\\xc0\\x97\\x96\\xbeP\\xbf\\x8058V\\xab\"+\\xbf@\\xcaX\\xc7\\xe87??\\xc0\\xe6\\x86\\xa8\\x10\\x9f6\\xbf\\x00\\x7fF\\x94B4(\\xbf\\xc0<\\xd2M\\x97\\xbaJ\\xbfd\\x84\\xa9\\x90\\xc4\\xe4\\x82?T\\x8ey\\r\\xe8\\x80_?9\\x07yb\\xec}c\\xbf(!\\x93\\xc4\\xa3\\xcb\\xab\\xbf8\\x91:*\\xe1\\x93a?$9q\\x8e^\\xe9\\x87\\xbf\\xf0_Hh\\x9f\\x9b\\x82?!\\xb5y\\x17g\\xb4\\x82\\xbfx!\\x06\\x8f\\xf1\\xa5H\\xbf0P\\xca1@\\xda\\x86\\xbf(C\\x0e\\x13L\\xaa\\x8f\\xbf\\x80=\\xe5\\xf7\\xf7}5\\xbf\\xb1:\\x9a?\\x8c\\x8c\\xc2?c\\xb0\\xca8\\xb7\\xd2\\x89\\xbf\\xa08\\x80E\\xf6\\xdd\\x8f?\\x04\\xefQ\\xfcm<b\\xbfw\\x07+\\x87\\x12V{?\\xe4\\x94\\xe1\\x89\\xc6\\xebh?\\xd0p4\\x9a\\xaf\\x12B?\\xe0u\\xe4\\xc0\\xca\\xadm?-\\x82`\\x9b\\xfa\\xea\\x7f?\\x98\\x1d\\x9di\\xb8\\xc0\\x80?\\x00\\xb0\\x12\\x14\\xcb\\x0e>?\\x90\\xd1\\xd2\\xfb\\x01\\x99n?\\xa0\\xe93\\xa3T\\xc8@?\\xe0I\\xf2Up=[\\xbf\\x94\\x15\\x06\\x02\\xfc[X\\xbf`\\xb6z5w\\x9d\\x84\\xbf\\x00\\x10\\x05#\\xa8\\xd2\\xf6>\\xc8\\x95bd/nw?\\x18t\\x86\\xf9<\\xb2\\x96\\xbf\\x00C\\x1e:\\x1d&Q?\\x80\\xce\\xfeE\\x10\\xc3m?F*\\xa3\\xbd\\xb7bp?H3\\xf0\\xa3\\xff0v?P-\\'e\\x11\\x92n?\\xa06\\xcb\\x9aTc@?\\xe0\\x07\\xe9\\xca\\xf8\\x93l?\\x80\\x86O\\xaa\"Fl?\\x00\\xf6\\x1d\\x11\\xb4\\xa5@?>\\xacW\\xbf\\xd5\\xabm\\xbf\\x00\\xfd\\xa5~[\\x18I\\xbf\\xb0\\xc3\\x98\\xd2-\\x9f\\x81?\\x80\\xfc\\x031\\x99\\x02d?\\xa0\\xa2MB\"\\x8c{\\xbf\\x80\\n*\\x93$(,\\xbf\\x00\\xa2\\xbd&w\\xcd8\\xbf\\x00t\\xb7\\xab\\x9938\\xbf \\xbe]\\x82T\\xe5f?\\x80\\xc6\\x99Rl!Q\\xbf\\x80\\xa9)Nn!l?\\x80\\xf8\\xbd\\x03\\x93\\x80h\\xbf 9R\\xf9\\xea\\x96v\\xbf\\x00\\x13\\x97\\xf1\\xaf\\x16I?\\xe8\\xa2q\\x06\\xbd\\x1er\\xbf\\xd0\\xe0]\\x9d\\xb7A\\x81?\\x00\\x84\\x8f\\t+,d\\xbf\\xb6}J\\x8aY\\xc4^\\xbf\\xb6i|\\xb5\\xfb\\x98d?\\x00\\x88\"`\\xbb\\xecK?\\xa0W\\x84\\xad\\x9f\\xd80?\\xd0N\\x83\\xa7\\x19VN?\\x88\\x8f\\x96\\xfc%{f?\\xe0\\xa7\\x19\\xe7|x\\x83\\xbf`9\\xef]\\x80FT?\\x80\\xa5\\xbfR\\xee\\x02K\\xbf\\x00\\xab},)\\x9f!\\xbfP\\x05\\x97\\xf6|\\x07a\\xbf@\\x8dY]\\xc4\\x1bj\\xbf\\x01\\xdc\\xb7\\xdd\\xdb\\x06\\x94\\xbf\\xce\\xd5\\xb6\\x1b\\xb3\\x9dw\\xbf)\\r>\\x1a\\x84\\x81W?T \\xce\\xbd\\xd4\\xcc\\x96?\\xe8\\xc1\\n\\xf8\\xbdNR?\\x92\\x0f1A\\xe41d?N\\x01[\\x1dg\\xc6`\\xbfx\\xa4,[\\x035w?\\xa2\\n]\\x9a\\xeb,_\\xbf\\xfc\\x15\\x97U\\xfd\\xe4\\x82?\\xb0\\x7f+\\xc7\\xdd&n?\\xf3\\xaf45 \\xa8d\\xbfc\\xb0\\xca8\\xb7\\xd2\\x89\\xbf\\xf5\\x13\\xa1\\xda9\\x81\\x94?:\\xc64\\xffv\\xf4o\\xbfno(\\x9c\\xefoO?\\x81\\xd3\\xf9\\xb53\\x9fb\\xbf \\xea\\xfcu\\x17\\x89)?\\n\\xa0:Y\\xb7\\xe9e?\\xd56\\x9aq\\x95\\xf7\\\\\\xbf\\x93\\xb7BKaEc\\xbf\\xdb\\x01\\xd2\\xb8\\x96bg\\xbfP\\xd9\\xbb=\\xd7zx?@ |\\xdd(>\\x10\\xbf\\xb8Rf{x\\xb0K?\\xa75]\\xa7\\xb3QT?204\\x1f\\xa9\\xe7A\\xbf\\x00\\x9d\\xf6:\\x0f\\xe6E\\xbf|\\x8eJ\\xcd\\xb1#S?>\\xe2$\\ni\\xfem?\\xbf>s\\x96qjU\\xbf\\xf0~\\xdb\\xc4:\\x84T\\xbf\\x80\\x9c\\x94\\xd6\\xfc\\xbd;?\\x08cg\\xf7\\xd2\\x0e;\\xbf\\x88\\xa2\\xc7\\xf7G\\xacA\\xbfT2\\x83Y\\xc0\\x14A?\\x0c\\x9315\\x05\\xb0C\\xbf$\\t\\xc9 >\\xc7\\\\?`_\\x1a\\xb9\\x0e X\\xbf\\x845PQ\\x92\\xc6M\\xbf\\xd8%\\x92D\\xd1\\xb2\\x1d\\xbf ^\\x97!d\\xd0@?\\x80\\xd3\\xe3\\x13\\xe83&?\\xe8\\x7f\\xf6\\n\\x92\\xbb`\\xbf\\xa4\\x16\\xda\\xea\\x83JH?\\xec\\x86\\xf5\\xf5\\x8e%f?\\xc6\\xebg\\xc3\\xb4\\x0ce?\\x80\\x0c\\x91\\x80K|D\\xbf`\\ne3\\x8d\\xf8:?\\x90}\\x19]\\x8c\\x1fg?\\xa0\\xaa\\xee\\xfb\\xa2%U\\xbf0\\xcc2\\xa0%\\xc4F?\\x80{\\xcf\\x07~\\x8em?X\\x01\\xf4\\x850\\xe6F\\xbf|\\xd8\\x84\\x99\\xa2\\x8d`?\\xb0\\x15,\\x85g\\xf3F?\\x00\\xb3\\x0c\\xf9\\xf4A$?\\xcd\\x15@\\x9e\\\\zQ\\xbfB\\xf8\\x06g\\x18fB?Zr\\xea@\\xba\\xd8Q?\\xe0\\xc7\\xdd\\xcf\\r~Y\\xbf\\xf7&\\x86\\x9a2\\x128\\xbf\\x840.\\xee\\xcf\\xacK\\xbfh\\xces\\x190\\x0bB\\xbf\\xe8\\xe2\\x98=\\xeb\\xb17?\\x8e\\x85\\xab0\\x89/j\\xbf\\x8cJ\\x1eM3\\x00^\\xbf\\x80w\\x9f\\x1e\\xafZ\\x06?\\x98\\xa7\\x80OH\\xacf?\\xc1\\x19\\xf4)s\\xa7s?\\x84\\rQ\\xa2\\xe6pR?\\x84&\\x83u\\x93z=?\\xd7\\x1e\\x8c\\x7fj\\xb7\\x86\\xbf,\\xdbS\\x1f\\xaa\\xddJ?\\x8e0\\x8c\\x08\\x19\\x18Y\\xbf@#\\xca30\\x18X?R@\\xf3\\xb7* c\\xbf%\\xa3\\x96\\x13I\\x81B?\\xc0_sF\\xf6\\xc6E\\xbf\\xe8\\xfe\\xbe\\xe2\\xb3\\x07l\\xbf\\x90[\\x8f\\xed)\\xe64?\\xa08\\x80E\\xf6\\xdd\\x8f?:\\xc64\\xffv\\xf4o\\xbf\\xaa\\xf2\\xc9\\xaa\\x81\\x9cr?\\x90H\\xf5.\\xda\\xb4\\xf8>\\x19\\xc6i\\xe5\\xe4\\x91N?\\x04#: \\x87\\xa7=?\\xf8\\x89T\\xb2\\x13\\x1d@?\\xc8\\xa7WK1\\x7fK?LR\\xady\\x86\\x172?\\xa0\\xedN\\xe6\\xc0\\x02K\\xbf\\x80<\\xb4\\xad,ED?0\\xb2N\\xe9\\x0b(M\\xbf\\x00\\x13~\\xed\\xf4\\x9d\\x12\\xbf\\xf4\\x0b\\x13B^t@\\xbf\\x00+H6\\xe7 \\xeb>\\xc0[\\xde\\xd3\\xc9\\xd1^\\xbf\\xe0\\xe6\\x81\\xff\\xa3\\x00A\\xbf\\x10S:\\xc6\\x0c\\x1d;?\\xa0\\xa3\\xa3m\\xfa;*\\xbf\\x90F\\xed\\xf1q\\xeeF\\xbf\\xe0\\xcd\\xecBS\\x93W?\\xeej\\xa29\\x96J[?\\x806\\x8b\\x90\\xbbF3?\\xa0\\x9f\\xffE;k@?\\xd0\\xb0\\xa7\\x9a\\xf5\\x061?\\x80\\x9e\\xd7)\\xd40$\\xbf\\x80\\\\\\xc2;\\xe5\\x10E?hb\\xf7I\\xe7\\xe6<?\\xa4\\x88\\x97*I\\xa20\\xbf\\x00\\xb3\\xc3\\xa0\\xea\\x020\\xbfPC\\xed\\x1b%\\x12Q?@\\t\\xd6=\\x8e+&\\xbf@\\xf3\\x13\\xbf\\xe4\\xa9=\\xbf\\x809\\xd8\\xd3\"\\xa1\\x0c\\xbf\\x00j\\x14\\x86Z\\x05<\\xbf\\x00\\xf8\\xf9\\xd5\\xa9o\\x14\\xbf@\\x93\\xf9\\xbd\\x88\\x81\\'\\xbf a\\xed\\x8e\\x1f\\x81G\\xbf\\x00n\\xf2\\x11\\x8b)??0\\x84^\\xb9-\\xedF\\xbf`\\x99\\xb5\\x93\\xf5\\xa7V\\xbf@\\x0c\\xe5\\x8b\\x9e~8?\\x00\\x18~\\xc7[V\"\\xbf\\x10\\x1a5q\\x9bQS?\\xa0\\xd9<\\x9f\\x02\\x8e:\\xbf\\'-\\xbe1\\x0cP@\\xbf\\xa8\\xee\\xdc\\xac-\\xcf*?\\xe0a\\x9d2\\\\\\xbc,\\xbf\\x08sR\\x83:i1\\xbf\\xc0\\x97<\\xdf\\xad\\xd6\\x0f\\xbf8\\t\\xf3&\\x16\\x83B?\\xc0{\\xfa\\xd3\\xc6\\x91M\\xbf\\xb0\\xeeS\\x8e\\xf1\\xdf4?\\xc0\\xecP\\xcaw) ?@\\x12{\\xf5\\t\\xb3/?\\x80\\xe6\\xa0\\xe1\\xb8\\xfd.\\xbf\\xe0Z\\x8d\\xd7\\xdd.C\\xbfx\\xa1\\xc5-\\x1f\\x8eg?\\xfc\\x06\\x81\\x92\\xbd\\x8d\\x19\\xbf\\x1b\\xbd\\xd4\\xcci \\x03?t\\xa1X\\x06\\xef\\x84V?#\\xa9\\xeaQ9b7? \\x85\\xe3\\xc3\\xe6U\\xeb\\xbe\\xacW\\xfb+8HU\\xbf\\xba2\\x9c\\x94\\x96\\xf7\\x06\\xbfPw1\\xac\\x88\\x8f\\xe6>\\xf2\\x1c\\x99\\r\\x8c\\x19j\\xbf`\\x98\\xb8?\\xce\\x17^\\xbfp\\xfd?\\xb9S\\x17B?\\x04\\xefQ\\xfcm<b\\xbfqo(\\x9c\\xefoO?\\x90H\\xf5.\\xda\\xb4\\xf8>\\x8e(\\xb3\\x94\\x03(h?3\\x0e\\x1aN\\x11`\\x1e\\xbf\\x87m\\xf4\\xe5\\xa50\\x1e?Cz\\x92\\xbd\\x01\\xb7Q?\\xc9\\xc1\\x91\\x9e\"_5\\xbf9\\xb4\\x19\\xc7E\\xa6@\\xbf\\xf6\\xe1\\xce\\xad \\xc51?\\xaa\\x83\\x86\\xbf1\\x1c0?\\x06E*\\xcd<[4\\xbf\\xa6V|N\\x1d+!\\xbf\\xacs\\xac\\xd5\\x8fh\\x03?J\\x91\\x80\\xa9%\\xaa\\x0c\\xbf\\xe8nPq?\\x9b(?\\x80\\xa6\\xb7\\xf5\\xf8\\x15*?j\\xf2H\\\\d\\x17#?\\x84:i\\xab\\xaa]G?r\\xd9\\xd8;\\xce\\x053?\\x1c6\\x10\\xab,\\x12@?HO\\x94\\xd2P\\x16d?\\xc0\\xdc\\x02\\x1en\\xbb\\xfb>~x#\\x91^\\xa1\\x1f?\\xeaD\\x7f\\x13\\x89\\x11=?\\x89\\xb1m\\xff\\x85^K\\xbf\\x903\\x12\\x1d]\\xfa.\\xbf\\xa9\\x8f\\x89H\\xf4\\x07D?\\xd7\\x0c\\xa5N\\xc2vH?\\xc0\\xe6.a3\\xaf+?\\x00\\xea\\x07b2\\x97\\xc8\\xbeZ\\xbc5\\xc6\\xbb0\\x15\\xbf\\x00\\xac\\x07\\x98\\xeb\\xb2\\x9c>\\xec\\xc5\\x9cPD\\xe5#\\xbf\\xaa\\xe5\\x0c\\x06C\\x8c8\\xbf\\x90\\x86\\x9fN4$0?\\xa6\\x87lT\\xb8\\xa5;\\xbf\\xb0r\\xc5\\xa8\\xe7\\xc9(?\\x80&V\\xe5\\x16H%\\xbf\\xa4\\x88\\xa4n\\xe4EH\\xbf\\xc0\\x16\\xcb\\x9f\\x99]A?`\\x9b\\x9dY*\\x1a\\x11\\xbf\\xc2)\\xe7\\xe2&\\xcc8\\xbf\\xd8\\xaeG\\xc0s\\xef@\\xbf\\x00\\xf6\\xcez \\x8b\\xd1>j\\x8c{\\xa6D#5\\xbfh\\x1a\\xa6\\xa7\\xb9\\xb3D?6Gf\\x84\\xc8\\xf6H\\xbf\\xb0\\x16\\x99N\\x96\\xc6\\x04\\xbf\\x00B\\xdc\\xc9]\\xa1D\\xbfj\\xabz\\xbc\\xf4\\xa7G?\\x1c\\xde\\xd9\\xb1\\xd4\\xcf\\'\\xbfS^zo\\xfa0$\\xbf<@\\xa7\\x03\\t=-\\xbf\\xedC\\xa8\\x9c+R8\\xbf|R\\x9aF0^!?\\x8c\\x91\\xdc\\x1b\\xd3\\x8c>?\\xb9{\\xee\\xcd\\xa8\\x80j?\\xdc\\xdb\\x8f\\x99\\x97\\xf9\\xf7>\\r,$|\\xac\\x93E\\xbf\\x06\\t\\xa1\\xe1\\xf5\\xc1u\\xbf\\xef\\xc9\\xdb%i6\\'?\\xd4\\x13+B\\x1c\\x9dM\\xbf\\xc3j\\xa0\\xc8\\xcb\\n>?s\\xad\\xd1hP\\x11K\\xbf\\x08\\xf0F\\xbfBo7?\\xed1\\x1c\\xa6\\x0b\\x89c\\xbf\\xb2ktBk\\xacf\\xbf\\xd6\\xd3\\xf88\\xe7ZG?w\\x07+\\x87\\x12V{?\\x81\\xd3\\xf9\\xb53\\x9fb\\xbf\\x1b\\xc6i\\xe5\\xe4\\x91N?3\\x0e\\x1aN\\x11`\\x1e\\xbf7\\xa7\\x15\\xfc\\xfe%c?&\\xfau\\x00\\xd3k1\\xbf\\xffs\\x01e\\x82\\x18C\\xbf\\xdc\\x9d\\xc1\\xcf\\xfc(\\x1b?\\xa2ay.\\xc3\\xf53?\\xe6t\\xb0\\xb2y\\xadT?\\xc4F\\xf8\\xf5\\x1a\\x87K\\xbf\\xc5W\\xd0i\\x9c\\x95S?\\x83\\xce\\xfa\\xa1U\" ?h\\x83\\xa0\\xccG-2?\\x06\\x14\\xe9\\xf2h\\x87\\x18\\xbf1b0\\xa6\\x02\\xdf@\\xbfP\\x8b{.t\\xf4\\xf0\\xbe#w\\xd3\\x94\\x19E=?d\\xe3\\xf4)/\\xedS\\xbf\\xcau\\xea]\\xf6fH?A\\x92\"\\xd7\\x93\\xa6P\\xbfAxM\\xd4d\\x168?i\\xfd\\xc0\\xb7Y\\xd0b?\\x80\\xf0\\xb3vA\\xa8#\\xbf\\xc8\\xca\\x9c\\xff\\x07\\xf2%\\xbf\\xc7M\\xa5.m\\x87P?\\xd8{\\x1eP\\x8dD\\x11?\\xd6\\xaa\\x1f\\xe3\\x1b\\xd02?\\x84\\xd9\\xe4\\xe1\\xdf0+\\xbf ,\\xd1N\\xa1\\xa9\\x0c?l\\x92&Z\\x97\\xf1P?\\xa9\\x07N\\x972V`?\\x94\\xaf\\xca\\x1aj\\xeaT\\xbf\\xdf\\xac:{\\x81\\xf1#?\\xaa\\xc5\\xd8\\xbe\\x8b!1?\\xf0\\x8a=\\xd2\\x12`4\\xbf\\x80\\x83\\x95\\x1c/]\\xe9\\xbey\\xcat\\xf1\\n\\x1c@?8\\xac\\x0bC)\\xb8(\\xbfS+H\\x97\\xc1pC\\xbf2\\xcb\\xb8\\xf2\\xceSN\\xbf\\x14\\xb0\\x97,\\xbe$3?\\x85jR`\\xd2\\x90P\\xbf\\x16\\xb3:\\xaa1\\xe8I?@n\\xc3\\xfa\\xa3\\xc9\\r\\xbf^b\\xadj\\x1e\\xc2)\\xbf\\xb5\\xc9C\\x18n+%\\xbfl\\x99\\xd1\\x05i\\x188?\\x8cg\\x11\\x1e \"7?\\t\\xe0\\xe5>:\\xf73?~\\x11I\\xa4qE0\\xbf\\xf0\\x8b\\xe0n\\xfd\\xfb:\\xbf7>\\x86GDp-\\xbf\\x0ck)\\xee)\\x00\\x11?\\xc6_\\xe8\\xf6\\x1d4\"\\xbf(\\xd5Q\\n\\x9f\\xdc\\x11\\xbfP1\\xf9B\\x101\\xf1>\\xc4s\\x01\\xbc\\xcc\\xd4T?mR\\r[\\xe9\\x024?\\xd0\\x05\\x8f\\xd1>T\\x06\\xbfI\\x1b\\r\\x05tm`\\xbf\\xf0a\\xb4\\xcf\\x88UF?\\x98Bqv\\xcb\\x8f/\\xbf\\x00\\x83\\x8f\\x82\\x04\\x94\\x02\\xbf3\\xee\\xd4b\\xdb\\xc6F\\xbfu\\xce\\xb4\\x8d4G\\x15\\xbf(\\xff\\x9d\\xd2J\\xc1@\\xbf\\x10,c\\x9e\\xf5\\xbcF\\xbf@\\x80\\xc4\\xe8hz\\n?\\xe4\\x94\\xe1\\x89\\xc6\\xebh?(\\xea\\xfcu\\x17\\x89)?\\x00#: \\x87\\xa7=?\\x86m\\xf4\\xe5\\xa50\\x1e?$\\xfau\\x00\\xd3k1\\xbf8C\\xae\\xc0\\x06N[?\\x1cQ_\\xc2X\\x111\\xbfP\\x88$\\xd5\\xc0F-?\\x13^\\xe7\\xbf~\\x969?@T;\\xdf\\xb4\\xf9\\t?\\xc8\\xb8(\\xc2\\xcb\\xa79?\\x90A\\x94\\xc7\\x9dr&?`q\\xaeK<\\xab\\x05\\xbf\\xf2\\x9f(\\xa7`\\xe4<\\xbf*\\xec*=\\x8ba\\x1b?\\xf0LY\\x18\\xbb{ ?\\xe0F\\xd8$\\x8d\\x95*\\xbf\\x94\\xe3\\x11\\x92\\x8b\\x8f0\\xbf\\xf0\\x9b\\x16\\x07u\\xb1\\x19\\xbf\\x80y\\x9aS8\\xfe\\xf1>\\xa0O\\x1fh\\xc6\\x10#?\\xc2/\\x16\\x7fV\\xc82?y\\xb4\\xa6\\xda\\x1a\\x03Q\\xbf\\xa2\\xdd\\xecG\\xb5:F?\\xea\\x02Ou\\x80\\xad0?p^\\x93u\\xdd\\xa02\\xbf\\x00\\xa7\\t\\x04\\x831)?\\xf4\\xacE!K\\xb1\\'\\xbft\\xb4i\\x00\\xd8\\x8e5\\xbf\\xa0\\xb7\\xc6v\\x8d\\xc06?\\xe0\\x8d\\n\\xa8\\xbc\\t2?\\xccM.\\x94&=V\\xbf\\x0cG\\x9d+\\x12\\x961?p\\xf5\\x10V\\x1bD\\x1f\\xbf\\xd0!)!\\xc2rC\\xbf\\xa0\\t\\x0c8:~2?\\xb0h\\xc4g\\x92o(?\\xd8BG\\xc6D\\xfe=\\xbf\\x00\\xd6\\xbe\\x9eec\\xff>\\x00\\x13\\x97T\\x94\\r\\xe7>\\xf0\\x11\\xa5\\x83:\\xb3<\\xbf@^f\\x9e\\xe8\\x0c\\t?\\x18\\xa4R\\x15\\xa4\\xc3/\\xbf\\x00\\x85{[.\\x054\\xbf\\x00\\xcb\\x13\\xe2(\\xe4-\\xbfN\\xb9\\x94e\\xf1.!?\\x94\\x90\\xd3\\xaa5\\xc1#?\\x80\\xf9\\x8ac\\r\\xd5 \\xbf\\xf0\\n\\xc1\\xce`7\\xff>\\x01?\\xa8\\xed\\x89J*\\xbf\\xd4\\xcf\\xca\\xb0p\\x0b8?\\xf0\"\\x9c\\x1cB3(\\xbf0\\x90\\x7f\\xad\\xdcD\\x13? \\xd5s\\x14\\xf4\\xb9\\x1b\\xbf@!\\x12\\x91]\\xe0\\xfb>\\x00vGm\\xf4\\xbc\\xf7\\xbe \\x94\\x82q\\xa8\\x05\\x1a\\xbf\\xf2\\x8f\\x0e\\x94wN|\\xbf:B6\\xce!uV\\xbf)>F2]pT?\\xe0\\xf9\\xe8\\x1e\\xc5G{?8>\\xe6\\xca/\\x8a#\\xbf\\x90\\xf3\\x02\\xe9F-f?\\xfc\\xc2\\xeaM\\x0c\\x19X\\xbf-\\xf0|\\xdf;LT?\\xf1\\xe0\\xa1\\xa8\\xfe\\xedR?T\\xbb\\x02\\x93A\\x0f\\x80?\\x02\\x96\\xf8/\\xea\\x0bq?0-\\xc71\"m5?\\xd0p4\\x9a\\xaf\\x12B?\\n\\xa0:Y\\xb7\\xe9e?\\xf8\\x89T\\xb2\\x13\\x1d@?Cz\\x92\\xbd\\x01\\xb7Q?\\xfes\\x01e\\x82\\x18C\\xbf\\x1cQ_\\xc2X\\x111\\xbf\\n\\xbe\\x9c%\\xfd\\xd7\\x95?\\x80\\x88\\x1a3!\\x1f#\\xbf\\xbay\\x0f\"B\\xc4\\x86\\xbf\\nb\\xb7\\xd9\\x12\\xa4s\\xbf\\xf4\\x13\\x95\\xfcF\\x86Q?\\xd4\\x0f\\x1dBV>|\\xbf\\xa0n\\xee\\xf0h\\xbe\\x00\\xbf\\xbd<@A\\xf3\\x00>?NV\\xf8\\x1ex\\xfa \\xbf\\x86\\xd2\\x9b\\x10Y\\xc6\\x83\\xbf9\\xf0\\x98T\\xe9\\x06`\\xbf\\xf5\\xc3\\x1a)\\xa1\\x80\\x7f?\\x983=\\xeb5\\x01Q?\\xdb\\x13\\xe8\\x90\\xc2x`\\xbf\\x93\\xe53\\xb0\\xe4\\x17n?+\\x19[\\xc9\\x16c@?(\\xba\\x9c\\xac\\xb2\\xdc;? \\xc7\\x08\\xecOrP\\xbfL<\\x89\\xdd\\x14\\xb6C\\xbft\\xd3\\xeaC\\xb4\\x90J?\\x00\\x9c\\xc4\\xa5\\xc3\\xe7\\xe8>\\xb3?\\xdc\\x8f$\\xde)?\\x0cQ\\x0b\\xd2P\\x04-?p\\xc3\\xc8v\\xc2\\xefJ\\xbf\\x80\\xe6\\x1f5\\x95\\xcf$?\\xfek\\x1c\\xb8\\xe7\\xb7P?z&\\x97^\\x0c\\xaf@?\\x10\\x05\\xd6j\\x88\\x87g?\\xd4\\xa9\\xda\\xd8\\xc1tP? \\xb2\\xf3F\\xa3|U\\xbf\\x00\\xa3\\n\\x0c&\\x91\\xfb>\\xd8\\xba\\x88\\xb2\\x10\\x8cL?\\xc0\\xf2\\x85\\n\\xfbD3\\xbf\\x14\\xee\\xbe\\xd0k\\xc0O?l^\\xa4&(\\xe4d?\\xaa\\x84\\xeb\\x95\\t\\xcfQ\\xbfUu/\\xe4\\x9f\\xabY?\\x00-\\x8ax0\\xa2D\\xbf\\x90H`U\\xa9\\xbe<?j\\xa0\\xfd]\\x0c{5\\xbf\\xaa\\xf8\\x8crck@\\xbf\\x0eUJ\\x0c\\xd9\\xd0P\\xbfA\\x07\\xe5[{\\x06U\\xbf1\\xec\\xd0%\\xc3C2?\\x808\\x8e\\x1a\\xf7\\xec\\xff\\xbe\\xf8%\\x03,\\xc5bD\\xbf$\\x1a=\\xc24zP?\\x00B\\xe6\\x08\\xa3\\'\\x1d?L\\x04\\xa1YH\\x92R?\\xb0)\\xe4\\x95\\x1b\\\\Y\\xbf`Y\\xe4jz\\x80_\\xbf\\x9e\\xc5uE\\xb6Sr?\\x9e\\xe0\\xd0\\x94\\xbb\\xa2^?\\x88\\xe7\\xe1QsFF\\xbf\\xb8\\x0b\\x14L\\xd0.Q\\xbf\\x00.|\\x05^\\x13\\x1b?\\xb4\\xd0U!\\x00\\xc9@?\\x80:vg\\x17\\x83P\\xbfzVy\\x85\\x8e\\xfbN\\xbf\\xee\\x12\\xb4\\x86\\x80\\x108?\\xe8\\x8f\\xb1$\\xd8\\xa2\\x84\\xbf\\x08\\xd2 \\xc4k\\x8ch?\\x94i\\x18/\\x1bAd?\\xe0u\\xe4\\xc0\\xca\\xadm?\\xd26\\x9aq\\x95\\xf7\\\\\\xbf\\xc8\\xa7WK1\\x7fK?\\xc9\\xc1\\x91\\x9e\"_5\\xbf\\xdc\\x9d\\xc1\\xcf\\xfc(\\x1b?P\\x88$\\xd5\\xc0F-?p\\x88\\x1a3!\\x1f#\\xbf\\x97w\\xb1\\xcb\\x07Mu?l\\xaa<\\n\\x9bk3?<\\xba\\xf5E\\x85\\xfaX\\xbf\\xa0\\xee\\x9c\\xde}DJ\\xbf cc\\xb0\\xf0BF\\xbf\\x00*c^E\\x1f\\xe9\\xbe\\x90A\\xcas\\xa6\\xbd0\\xbfx\\xa8\\xf5\\x1f\\xde\\xa6%?\\x80\\xf4o\\xa9\\x11\\x80U?\\xf0<\\xa8!f\\xc7Q\\xbf\\xc0\\x05\\xaf\\x94N\\xf7a?\\x06\\x050\\x84Q3F?@s\\xc3u\\xf0I=\\xbf\\x80\\xa8\\xe6\\xfe\\tnU?\\x8e\\xd8\\xf3CXCY\\xbf\\xb49\\xb0\\r\\xa8\"R\\xbf\\x98h\\xd7\\n\\x12\\xc1D?\\xa0\\x9cM\\x02\\xd2/%\\xbf\\xe0q\\x8b#\\xad\\x91)?\\x00\\x1e\\x87\\xc1`\\x00\\x1b?x{RU0\\xfa;\\xbf\\xe8\\xed\\n\\x1a\\x9cA,\\xbf\\x00\\xc2[\\xed\\x17%\\x10\\xbf\\xe0 &\\xef9\\x83C\\xbf\\x18\\xc8\\x0f\\xcd\\xf6\\xbdY\\xbf\\x00\\x8a\\x8dd\\xe0\\n\\x00\\xbf\\xb0\\x85\\xba\\x17\\xb1\\xcb??\\x00\\x80\\n\\x89\\x9f\\x1aD?\\x00\\xc0W\\xa7YJ\\xda\\xbe\\xc0\\xe2\\xd6i\\xb3M:?\\x80n\\xbc\\xa5uF(\\xbf\\x00pL\\xbf3\\x12\\x1c\\xbf@\\xbd\\xc1\\x15L\\x918\\xbf\\x00\\xc2=Q\\x1a\\x13C?\\xe0\\xb4\\x99\\xe6\\x8ez<\\xbf`\\x91\\xc6\\xd7w\\\\1?\\x00B\\x02;-\\xcb\\x1d\\xbf\\x80=\\x83\\xa2l\\xd4#?@`\\xca+\\xe2`N?\\xe0\\xa8\\x98\\xf9\\xc2\\xf1\\x04\\xbf@\\x8c\\xe8M\\xeb\\xec\\x1f\\xbf\\x18\\xa8cu\\x17EE?\"\\x15,\\x1c\\x1c\\x8c3? \\xe4\\xd7\\xa1\\x8e&\"?\\x80\\xf7\\xc1\\n\\xf4\\xaaQ\\xbf\\xe06L\\x08\\x9fW0?\\xc0$\\xc7T\\x12\\x9cA?P\\x0f\\x1c\\xb0/I@\\xbf@\\xfbn\\x18\\xc3-=\\xbf\\x80\\x94\\x10v\\x1e\\xe7M\\xbf\\x8f\\xa4s|t\\xdfa?a\\xf4\\xee\\xbe}Z;?\\x8b\\x14i9H\\xc4a\\xbf\\x11\\x87A\\xdb\\x9b\\xf7l\\xbf\\xaa\\xd7\\x84\\xa1c\\xde@\\xbf\\x0e\\xa1\\xa8$\\x8d\\x89S\\xbf@4\\xecrI|Y?N\\x8aa\\xa7[\\xc52\\xbf@\\xee\\x19\\xc8B\\x82P\\xbfX\\xc4\\xe1\\x88\\n-S\\xbf\\xa8\\xf3\\x9e\\xf4L\\x831\\xbf\\x19Y\\xf1\\xc4\\xa1cT\\xbf-\\x82`\\x9b\\xfa\\xea\\x7f?\\x93\\xb7BKaEc\\xbfLR\\xady\\x86\\x172?9\\xb4\\x19\\xc7E\\xa6@\\xbf\\xa2ay.\\xc3\\xf53?\\x14^\\xe7\\xbf~\\x969?\\xbay\\x0f\"B\\xc4\\x86\\xbfl\\xaa<\\n\\x9bk3?T\\xe1\\x82Z\\xb0\\xca\\x87?^Jg\\xce\\x9d6t?\\xd0\\x1e\\xe8\\x16\\x02\\x951?\\xff\\xf5:\\x1a/\\n^?\\xf8\\x92W\\x04e\\xce%\\xbf4\\x9dg\\xda\\xe6\\xc8,\\xbf\\xf0\\x83\\xe1!\\xcd\\xbf\\x08\\xbf0V\\xc8\\x19|\\xb8w?91\\xf8\\x07&P`?\\xfb#eq\\xc9\\xf4\\x81\\xbf\\xf4\\xc1\\xfa\\x9bP\\xb5X\\xbf\\x80\\xec\\n\\xd5O\\xc0\\x06?\\x80\\x82<\\xdb\\xeft[?\\xbe\\xf2y\\x01Q\\xfeh?\\x16|\\x81\\xd5~PC\\xbf\\xc0[\\xb3\\xaf\\xe3#7?\\xfd\\x11#\\xc2\\x99\\xe3I?\\x1d\\xa71YA\\xd3Y\\xbf\\x00\\xc6\\x0bN\\x0b$\\x17?\\x9cv\\xa0\\xd8\\x7f\\x18G?E\\xf3t\\xd8LME?\\xa0H#\\xf6\\x9ah2?\\x00\\xa8\\x85P\\xe1\\xea\\xf1\\xbe382\\xd6g\\xc1S?\\xd8oQ\\x8c\\x98u=\\xbf-\\xe1q\\x06oTd\\xbf\\x8a\\xce\\xa2\\x9f\\xe3\\xc5P\\xbf\\xd0\\x81\\xed\\xf7\\xb1\\x0eQ?P|\\xdc\\xdd\\x83[@\\xbf\\x80y\\xbf\\xc6\\x91$-\\xbf\\xe0k%\\xd5\\xef\\xbeM?\\xd0\\x15\\xfb*\\xdd\\xa1;?\\x00\\xa2b\\xda\\x9e\\x05N\\xbf\\xe8F\\xb8l\\xe4\\x11=?\\xdc\\x18\\xd1-\\xda8Q\\xbf\\x08X\\xc1\\x12kyS\\xbf8\\x84d\\xa6\\x90bD\\xbf\\xd8\\x843\\xb2\\x8bM9\\xbf\\xf8\\x96\\x88\\xa9\\xc4\\x1fZ?9[\\x1d\\x88%\\xa6X\\xbf(\\x81\\x8b\\xb0\\x14\\x19 ?G\\xea\\xb0\\xc5\\x11\\xb6P\\xbf\\xde\\x04\\xbdu\\x15vW?@\\xea\\x07\\x90lI!\\xbf\\xf6m}|-\\x0bA\\xbf\\xb8\\x04MepG<\\xbfL\\xfaO\\xcfa\\xc6B\\xbfH\\xf2\\xd3\\xc4\\'\\xbcQ?L\\x11\\x8c\\xb9\\xe7\\xedX?v\\x1ba\\x93\\xfb\\x82u?&=\\xe6\\nFe6\\xbf\\xae*\\x18\\xf7\\xc9!b\\xbfH\\x0b\\x97#T}\\x81\\xbf8Lt<\\x86G?\\xbf\\x9f\\xbf\\x0e\\x93%\\xach\\xbf\\xe0\\xb2\\x8c\\xd1P\\xbe8\\xbfW\\xce\\xc4\\x83\\x98\\xc3V\\xbf=\\xb2\\xacl\\x13FU\\xbf\\x10\\x15(\\xc2B_Y?L\\xd3w\\xd1\\x14\\xa3d\\xbf\\x90l\\xdfC\\x0b\\xbbH\\xbf\\x98\\x1d\\x9di\\xb8\\xc0\\x80?\\xdb\\x01\\xd2\\xb8\\x96bg\\xbf\\xa0\\xedN\\xe6\\xc0\\x02K\\xbf\\xf8\\xe1\\xce\\xad \\xc51?\\xe6t\\xb0\\xb2y\\xadT?@T;\\xdf\\xb4\\xf9\\t?\\nb\\xb7\\xd9\\x12\\xa4s\\xbf<\\xba\\xf5E\\x85\\xfaX\\xbf^Jg\\xce\\x9d6t?.\\xc3\\xdc\\xd3\\x1f\\xaa\\x98?\\xd4\\x04\\xff\\x9ej.k\\xbf\\xa8<k\\xa2%\\xfb\\x8b?\\x80;\\xa1\\xdc\\x9cv$?Fz\\xcc\\xe6n1@\\xbfH\\x90j\\xd2<w*\\xbf(\\xb9>l\\xb56U?\\xc8l\\x84\\x96\\x10\\xf4S?\\xa6QT\\xc7!\\x8dm\\xbf\\xfb\\x9a\\x0f\\x1c\\xac\\xf6\\x83\\xbf\\xa8A\\xc7\\xf8M-}?\\x1e\\x88: \\xaf\\x0b\\x8b\\xbf\\xe6\\x90\\x92\\xe0y\\xddh\\xbf \\x86[\\xa8\\xfe\\x96*\\xbfh\\xfc\\xcb\\xe3\\xedgB\\xbf\\xe4\\xcb\\x08$\\x9erC?\\xd0\\x90_?z42\\xbf\\x80\\x1f\\xd4\\xe5\\xd4gX?_/\\xb6T\\x84\\xc7=\\xbf\\xc2\\xc2\\r$\\x06?E\\xbf\\x00$\\xbd\\x95g.:\\xbf\\x00\\xaf5\\x8eC>N?X\\x00\\xfe\\xf7\\xf10d?@\\xe2\\x9eM\\xc1U\\x11?\\xc0J\\xd2\\xd7\\x04\\x17c\\xbfh\\xd0\\xbf\\x1a\\xd5\\x05e\\xbf\\x00\\xfd\\xed\\x7f\\xad\\x94,?H\\x01\\r\\xca\\xe9\\xda`?\\x80X\\x16J\\xb8M4\\xbf\\xa0\\x7f\\xa2\\x81s\\x8bR?\\x00\\xc2\\xd6Lr\\xdd\\r\\xbf@?\\xa6,\\x08\\xcdA\\xbf\\x98dR\\xef\\xbd|K\\xbf\\xb4\\x99\\x8am\\xc9\\xc8]\\xbf`\\x89\\xbc|\\xbb%O\\xbf0w8\\xaeR\\xe4Z?\\x0f\\xe4(\\xd1\\xa22X?L\\xd7J)\\x9a\\x00C\\xbf\\xa8W\\xb3\\xb8R\\x1bH?\\x88\\xb6Hd[\\x19k?\\xbe\\xba\\n\\x13\\xacr0?\\x90\\r_\\xb2>AA\\xbf\\xc0\\xec\\xaf\\x91\\x1c~W\\xbfH\\x18U\\xe8\\xccQd\\xbf\\xf0\\x02\\xfc\\xba\\xb5D_\\xbf\\xb8\\xb5\\xad\\xbe\\x18\\xd1_\\xbf\\x04.\\x8dwU\\xbcU?\\x18\\x8a1\\xdf\\xc3\"n?Hz\\xf6\\xc3\\xc4Ax\\xbf\\x8cfV\\x1d(_V\\xbf(N\\xb7\\xd0\\xcdd^?\\xfcR3obmq?\\xc0g\\xa2\\x9c\\x88\\xd8L?\\x00+\\xc7i\\x9a\\x8e\\xfe>@\"\\x98\\xa4\\x07\\x0eT?\\xee\\xa4\\xff`\\x8bmV?@\\xf8\\x8d\\n\\x85}\\x1f\\xbf0\\xbd\\xd5-\\xad\\x93w?@\\x92}\\x16\\x95\\xd01\\xbf\\x10T\\x04\\xc4s\\xb5R\\xbf\\x00\\xb0\\x12\\x14\\xcb\\x0e>?P\\xd9\\xbb=\\xd7zx?\\x80<\\xb4\\xad,ED?\\xaa\\x83\\x86\\xbf1\\x1c0?\\xc4F\\xf8\\xf5\\x1a\\x87K\\xbf\\xc8\\xb8(\\xc2\\xcb\\xa79?\\xf4\\x13\\x95\\xfcF\\x86Q?\\xa0\\xee\\x9c\\xde}DJ\\xbf\\xe0\\x1e\\xe8\\x16\\x02\\x951?\\xd4\\x04\\xff\\x9ej.k\\xbf\\x88\\xd9c]\\x03d\\x82?\\xe0(\\xf2\\xfb\\xabKi\\xbf\\xa0&\\xbd$&97\\xbf\\xa0\\x19\\x87\\x08\\xa8tA?`bv\\xee\\xfcd ?\\x80f\\x0fB\\xc5\\x8a1\\xbf\\x80\\xb7\\xae\\x99V\\x1cC\\xbf\\x80\\x19Z%\\xde<V\\xbf\\x14\\xe7\\xb2\\x0c\\xf8o[?\\xf05J\\n\\xca\\x99x\\xbfH9\\x1bZ\\xd9\\xcc{?\\'\\xea\\xeb\\xf4nZp?\\xc0\\x00\\xa4\\x8b\\xdbM3\\xbf\\x00b:*E\\x9b-\\xbf@\\x1c\\x08\\x85\\xd2\\xbe*\\xbf\\x00\\xda\\x1d\\x9c\\xf2\\x8f+?\\x00/\\xcf\\xfa\\x8b9??\\xc4Prh\\xa0\\xe0B?@\\xe5\\xa7L\\xde-\\x1c?@\\xcdlT\\x9c\\xbbR\\xbf@<\\x9cQ[\\x90R\\xbf\\x00y\\xadmI\\'\\x17\\xbf\\xc0\\x00\\x13\\x7f\\xf4\\xb6H?\\xe8\\xaa9\\xfb\\xb2yV?\\x00\\x85\\x8e\\xc0\\xc4JP?\\x80\\x06J/\\x9a(X\\xbf\\xa0\\n:\\x93\\xfa\\xcf\\\\\\xbf@\\tUW\\xa8hR?\\x00\\x08\\x82\\x7f}rK?@z\\x8e\\x10r\\xeaG?\\x00\\x8f\\xd6\\xa1S\\x074?\\x80cl-g\\xb2H?0$\\xdb7\\xb0\\xb5R?\\x00\\xac\\xff\\xd3\\x04\\x02-?\\x00)\\xf5\\xd5\\x84\\x1fQ\\xbf\\xe5\\xc6_\\xa45\\'X\\xbf`_g\\xa3!\\xeb\\'?\\xe0\\x1d:\\x7f\\xec\\xcbG\\xbf\\xd24\\xec\\x810\\x86j\\xbfDiF\\xd4\\x90\\x978\\xbf\\x1cL\\xeb\\t\\xf7\\\\R?\\x00,\\x9eM\\x13 \\x01\\xbf\\xa0\\xf9a\\xdc!QR?\\xe0\\x94\\xe8\\xfb\\xcf\\xdbT\\xbf\\x00\\xdd\\x16\\xc0\\xe4{!\\xbf\\x00b\\xadI\\xa49\\x15\\xbf\\x80\\x0c\\x1f\\x9f\\x98ZD?P\\xa1\\xdf\\x8b\\t\\xccv?0\\x8e\\x91Z\\xc4=5\\xbf<v\\xf3\\x0b\\xf9\\r_\\xbf\\x0c\\xc1\\xf4\\x81\\x9b\\xeb\\x82\\xbfLE\\xb7J\\x1c\\x83Q?\\xca\\x91Bv\\xaa\\x9dg\\xbf\\xe0<AJ\\xac_C\\xbf\\xee\\x0f\\xb6\\xae\\'\\xbe\\\\\\xbf\\xe4\\xd0*\\xf9E\\x08Q\\xbf\\x88P\\xbf\\xbb\\xae\\xa6r\\xbf@\\x0f;\\x1a\\x12\\x17r\\xbf\\x00\\x88\\xf1\\xf8\\xb7n\"?p\\xd1\\xd2\\xfb\\x01\\x99n?@ |\\xdd(>\\x10\\xbf0\\xb2N\\xe9\\x0b(M\\xbf\\x06E*\\xcd<[4\\xbf\\xc5W\\xd0i\\x9c\\x95S?\\x90A\\x94\\xc7\\x9dr&?\\xd4\\x0f\\x1dBV>|\\xbf cc\\xb0\\xf0BF\\xbf\\x00\\xf6:\\x1a/\\n^?\\xa8<k\\xa2%\\xfb\\x8b?\\xe0(\\xf2\\xfb\\xabKi\\xbf\\xcb\\x1a\\xb8\\\\\\xdd\\xe9\\x90? K\\x9b\\x88\\x0b\\x0bF?\\x90\\xa4\\r\\tO\\x97=\\xbf\\x10\\x060C\\xcf\\xf0 \\xbf\\xb0*\\xe36\\x17\\x9f[?\\xe0:&\\xf4\\xea\\xd3D? \\xe9\\xd0\\xe2X\\xfdS?&Q\\xd73p\\xe4\\x80\\xbf\\x12\\xbb\\xa8\\xdf\\xce\\x81\\x81?\\x9dE\\xc1\\xd5n\\xba\\x91\\xbf\\x88\\x1f\\xd8\\xea\\xc4\\x0c{\\xbf8dM\\xeb\\xd2zc?\\x80]\\xd5\\x06\\xd5\\xde\\x19?p\\xa1\\xbd\\xdc\\xdb,<\\xbf \\xd1\\xc5\\x08\\x19\\xa3L?\\x00J\\xd5Jt^S?\\xb9\\x84\\xd6\\x9f~\\x80U\\xbf\\xd9/\\xe5\\xaf\\x91\\xe3^\\xbf\\x00\\rf(\\xbb\\x04;?\\xa04E\\x17|pZ?PFW\\x00\\xd7\\x8dI?@.C\\xf3\\xe8~D\\xbf\\xf0\\xca)\\x1a9\\xb3S\\xbf\\x90l\\xda2\\xa5Ma\\xbf\\x00 \\xa5\\xf9y\\x9e\\x10?p\\xf9:P\\x1a,g?`\\x8e\\ns\\xf2\\xddP\\xbf\\x00\\t\\x0c.v\\xd91?\\xb0\\x18\\xaa\\x10S\\xae]\\xbf \\xa1y\\xdce2d\\xbf\\x00\\x08\\x1cQ\\x07)\\x11\\xbf \\x7f!I\\r0`\\xbf@\\x17\\xef\\xa4\\x91\\x1f`?\\xf0\\xad8\\\\\\xa4\\'U?\\xda\\x84\\x05\\r\\xe2\\xb9c?\\x03s\\xaa\\x07\\xbcrU\\xbf\\x12c\\xea#\\xc2\\xb6n?\\x04&\\xe2\\xb2ySn?\\xfd\\xd9@\\xf2\\xff\\xe8R?\\x8eACz\\xa0M]\\xbf \\x8a}y|\\xe4J\\xbf4\\xe0\\x08\\xb6-\\x99a\\xbf\\xa0&\\x90#\\xd9\\xf4]\\xbf\\xb8Q\\xf9s\\xb3kb\\xbf\\xc0\\xcaU\\x92*yM?@\\x9e\\xc5\\x96h\\xd3i?L\\x0c\\xc6\\xbe\\xb4\\xcbe\\xbf\\xbc\\xf3\\x00b\\xcf\\x1cH\\xbf\\x90]\\x1c\\x93\\x8cz\\x03\\xbfp\\r\\xe6x\\x88\\xd7>?\\xe0\\x17\\xec\\x8e>2\\x1e\\xbf\\xc0~\\x97\\\\.\\xbc\\x06\\xbf@\\x8cS\\xdf\\xdcS@?J\\xa6%&\\xfd\\xa5<?\\x98\\xe8\\xaa\\xea\\t<\\x1b\\xbf\\xc0\\x1e\\xb8\\xe7bdg?\\x00\\x8e\\xf0\\x8a\\xf2\\x9f??(\\xb1a\\x11\\x07\\xa2B\\xbf\\xa0\\xe93\\xa3T\\xc8@?\\xc0Rf{x\\xb0K?\\xc0\\x12~\\xed\\xf4\\x9d\\x12\\xbf\\xa6V|N\\x1d+!\\xbf\\x83\\xce\\xfa\\xa1U\" ?`q\\xaeK<\\xab\\x05\\xbf\\xa0n\\xee\\xf0h\\xbe\\x00\\xbf\\x00*c^E\\x1f\\xe9\\xbe\\xe8\\x92W\\x04e\\xce%\\xbf\\x80;\\xa1\\xdc\\x9cv$?\\xa0&\\xbd$&97\\xbf K\\x9b\\x88\\x0b\\x0bF?\\x04\\xe4V6\\xaf\\x1c[?\\xb0\\xf6SH\\x8e\\xda\\x1a?X\\xcc\\xda\\x8a\\x14\\x1f \\xbf\\x00\\x16\\xc4Dy\\xf1M\\xbf\\xc0nyw7\\x98<?\\x901\\xc5\\xf4N\\x0cK?\\xc6ak\\xfbt\\xf7K\\xbf@\\xc3\\x7f:\\x8b\\nH?`\\xf7\\x9fA\\xe8\\x99T\\xbf\\x04(\\\\9z8M?P}\")\\x8a\\x02I?\\x80\\x12\\x01|\\xb3\\x7f\\x19\\xbf\\x00\\xea\\xe2!(4\\xd4>\\x98\\x9a\\x91\\x9a\\xbc\\x1bO?\\x00\\xa8\\xd5\\x95\\xb0;\\x18?@\\xcb!\\xd2\\xca\\x98\\x15\\xbf&\\x1c1\\xde\\x08\\xb9F\\xbf\\x00\\xcc\\xc4\\xbd\\xdb\\xad\\t\\xbf\\xd0;\\xc4\\xc8,9]?H3\\x9f\\xe8l\\xf4E?`\\xda\\xc4\\xeal/@\\xbf\\xc0\\xf3\\xa6\\x93\\x8ea\\x14?\\x00\\xd2:\\xa8S\\x8e\\x0e?\\x80\\x82\\x1a%\\xff\\x027\\xbf\\xe0\\x16\\xcb\\x9dqM8?@\\xe6\\xd6\\xdc\\xde\\x0f5?\\x00&&J\\x91t\\x1b\\xbf\\x00\\xca\\x9e\\x82`$\\x17\\xbf\\xc01&\\x84\\xb0\\x1dL\\xbf`ql\\xbc\\xf4t0?\\x00 0s/\\xd9\\x0f? \\xc0\\xe9\\xcc\\x91\\xd9P?\\x00\\xc1\\xcb{\\xc2;$?*\\x8a\\xc0\\xd0K\\xd5B\\xbf@\\x18\\t\\x8e\\x15\\xc4\\xfe\\xbe\\x00\\x98\\xaeZ\\xbb\\xe9E?\\x00\\xca\\xde\\xe4Y+\\xde\\xbe\\xa8\\x0bh\\xe1\\xe7\\xf0\\x1b?\\xf4\\x03\\xe9\\xfb\\xc0\\xabD\\xbf\\xc0\\xb0\\xa9\\x0f\\x7f\\xd1,?\\x80\\xb2i_\\x01\\xe4\\x06\\xbf\\x00\\x93\\xb5M\\xac\\x98\\r\\xbf\\x00\\x93\\x8f\\xc7b\\xe4\\x0e\\xbf\\x00L\\x95 \\xf1\\x13\\x00\\xbf\\xc08\\xba\\xa5\\x83\\xba)?\\xc5\\x0e\\x0f \\x84Wq\\xbf\\xba\\xd8\\xeb\\xf5\\x7f\\xceR\\xbf`\\x9d\\xf3E\\xdc>\\xd3\\xbeS\\x18\\\\\\xc5m\\tq?\\x10\\x84\\x99\\x88\\xe9\\x14M\\xbfP\\xb8G\\x0cK\\xb3+?\\xe0ij!\\x8ds)?\\xfeMa\\xe9\\xd5rZ?\\xc0R%$\\xf1\\xcd\\x05\\xbf\\xd0[\\xf8\\xaff7V?D\\x00=\\xe3Y\\x8dV?\\xd8\\xf0\\xeb9 t<\\xbf\\xf0I\\xf2Up=[\\xbf\\xa65]\\xa7\\xb3QT?\\xf4\\x0b\\x13B^t@\\xbf\\xacs\\xac\\xd5\\x8fh\\x03?h\\x83\\xa0\\xccG-2?\\xf2\\x9f(\\xa7`\\xe4<\\xbf\\xbe<@A\\xf3\\x00>?\\x80A\\xcas\\xa6\\xbd0\\xbf:\\x9dg\\xda\\xe6\\xc8,\\xbfFz\\xcc\\xe6n1@\\xbf\\xa0\\x19\\x87\\x08\\xa8tA?\\x90\\xa4\\r\\tO\\x97=\\xbf\\x90\\xf6SH\\x8e\\xda\\x1a?um\\xbe\\x0eA\\xab^?\\x08\\x9f=5bS\\x11\\xbf@\\x9a~e\\xc60\\x10\\xbfp\\xb7\\x1bt\\xfc\\xab4?\\xa4\\x1e\\xe7g\\xca\\xd3G?>\\x1f\\x80\\x031$6\\xbf\\xc0ff\\xdbz\\xeeE\\xbf\\xf0\\x90\\xc0\\xce\\xfdwE?\\xed\\x82I\\x17p\\x99C?\\xae\\x90)\\xa3\\x0e`Y?4\\xfb\\x0el\\xde(@\\xbf\\xb8\\x0e}\\xfd\\xcf\\x82/\\xbf\\xc4Hg\\xf6\\xd2)F?\\x80x\\x84\\xccp\\x82&\\xbfqLY\\x89\\x8eg6?=)L\\xae6<D?@\\x02U\\xa1Q\\r9\\xbf\\x00\\x80\\xf6\\nZ$\\xbe>\\x04\\xc6\\x16\\x8c&\\xc0[?\\n\\x9c\\xee\\xd6\\x04\\xa0@\\xbfBl\\xe3\\xfb\\xf3\\xd3D?\\\\,<bO\\xd0T?\\xa0\\xe9Q\\x9f\\x9a^F\\xbf\\xe0\\xd9\\x08\\x8eD\\xafG\\xbf(h\\xfd\\x9c\\x93&X?\\x80\\xc3/\\x8c\\x9d\\xa94\\xbf\\x90\\x16\\x9d\\xc3[\\xa2\\'?@\\x00X\\xbe\\xd4\\x9c??\\x80~\\\\\\x8b/\"\\xf7>@\\xd3\\xd0\\xef]\\xe7\\n\\xbf\\xa0\\xa3\\xb2\\x80$3A?\\x00\\xf0e\\xbe1\\xe6\\xca> `\\x9fI\\xb4gE\\xbf`\\xdf.\\xca70\\xf3>\\x00#\\x93\\xb0\\xa8T\\x15\\xbf\\x95\\xbf\\xe4p6\\xc7@\\xbf\\xc0\\xbd\\xf3\\xc2\\x86C)?\\x0c\\xb28h\\xec\\x944\\xbf \\xf2\\xe0k\\xe5\\xd9(\\xbf@(\\xa0\\x1b\\xd0n\\x05?\\x00\\xea\\x10k\\xa32+\\xbf\\x90\"\\xd8[M\\x971\\xbf\\xa0(\\xc6\\x13\\xbb\\x07\\x14\\xbf 0\\x88\\xcd\\x90s1?\\xa27\\x0cb\\x8d\\x13K?g1\\xed\\xabc\\x1a7?\\x7f\\x0f\\xdb\\x07\\x8f\\xf4\\x16?\\x10J\\x10\\x98\\x89\\xdf>\\xbf0\\\\\\x14\\xbbq\\x01\\x01?\\x00\\x05\\x81\\x96R\\xa3\\xc9>\\x80Wc\\xad\\x11\\xbf\\x1c?\\x97\\x99>\\xfdD\\x83*\\xbfPP\\xc5\\xd7\\t\\xd4\\'?\\xd8J\\x95\\xc8Z\\xa6G\\xbf\\xe0\\xd5\\x8d\\x05 t\\x15?\\xf0,k\\xd3\\x07\\xeb.?\\x94\\x15\\x06\\x02\\xfc[X\\xbf204\\x1f\\xa9\\xe7A\\xbf\\x00+H6\\xe7 \\xeb>N\\x91\\x80\\xa9%\\xaa\\x0c\\xbf\\x06\\x14\\xe9\\xf2h\\x87\\x18\\xbf*\\xec*=\\x8ba\\x1b?NV\\xf8\\x1ex\\xfa \\xbfx\\xa8\\xf5\\x1f\\xde\\xa6%?\\xf0\\x83\\xe1!\\xcd\\xbf\\x08\\xbfH\\x90j\\xd2<w*\\xbf`bv\\xee\\xfcd ?\\x10\\x060C\\xcf\\xf0 \\xbfX\\xcc\\xda\\x8a\\x14\\x1f \\xbf\\x08\\x9f=5bS\\x11\\xbf\\x14\\xfe\\x85X\\x10\\xb6S?01\\x9c0\\xd5(7?0\\xf2x\\x8e;z.\\xbf\\xc0<\\x1c\\x91\\xf1\\x1e*\\xbf\\xfe\\xc1\\xae\\xccMa@?\\x00$\\xa3\\x9b#\\x1c:\\xbf\\xa8\\xf4_\\x82\\xc1\\xc20?\\xef\\x95.\\xf9\\xae\\x994\\xbf\\x1c\\xdf\\xfd-\\xb9\\x91!?\\x00>\\xb9Q\\xd1\\xa9\\xdb\\xbe\\x00\\x7f@[@\\xa0\\t\\xbf\\xe0\\x82\\xee<\\x99\\xbe7\\xbf@\\x80O\\xae/X/?D\\xfc\\x1da(\\xa2\\x0f?\\xf4\\xe8]T\\xe1U\\x17?@P\\x9e\\x11\\x9b\\x99*\\xbfP\\x05\\xcf\\x1e \\xf9D\\xbf(\\xbf\\x9a\\xee\\xab\\x911?\\xd0\\xfd\\xa2\\xa6\\x8a\\xf8/?@\\xc5lX\\xddg\\x05\\xbf`7\\xd6\\xdcli,\\xbf\\x00\\xa6>\\xe4\\xfb\\xbf\\x1a\\xbf\\xb0\\xc3\\xaf\\xed\\x8d\\xdd)\\xbf@U\\xe2\\x1fz\\x85*\\xbf\\x00\\x98\\x037H\\x88\\r?h\\xf7`\\xbf\\xdf\\xf8+?\\xb0\\xca\\x84l\\xb4\\xcc4\\xbf d:08\\x91\\x07?\\xa0V-\\xfb\\x1e\\xda\\x03\\xbf\\xd0\\xf6\\xea\\xb0\\xb5\\\\0\\xbf\\x00z\\xa0\\xbaGK\\xf8\\xbe\\xa2\\xc5\\xe7M\\x1f> ?\\x9aX\\x8bEG\\x95 \\xbf\\x00\\xecw\\x01\\x92\\xd5\\xef\\xbe\\xac\\xcb[\\xcf\\xf1_\\x1f\\xbf\\xa8\\x90\\xd1\\x9b\\x08K\\xfd>@o\\xf2\\\\>y ? \\x92\\xe0SB\\xe1\\x1a?@\\xc4\\xdc\\x93\\xbfA\\xfe>`g\\xb8\\x96\\xcc\\x13!?\\x00\\x06;\\xb1\\x88H\\xc6\\xbe\\xc0\\xfb\\x17\\x1b6\\r\\xfe\\xbe\\xb0\\xfb{,~\\x95#\\xbf\\xc0\\x98!\\xaf}L\\x82?\\xdc\\x15\\xd3\\x0bs\\'a?\\\\:\\xbb\\xd0\\x8c8Z\\xbf\\xa4\\x1b:\\xbd\\x05\\x93p?\\x00\\xb4\\x0fx\\x17}\\x13\\xbf\\x80t\\xc1@\\x81\\xf6!?\\xa0\\xc6C:\\xa4\\x9aZ\\xbf0\\x8e5J\\x97t\"\\xbf8\\x0e2\\xe5f\\x84K\\xbf\\x80\\x14\\xd1M\\xb9\\x0c\\x9a\\xbf@?\\x85\\x95\\x08|I\\xbf\\xa88\\x9en\\xc6!f?`\\xb6z5w\\x9d\\x84\\xbf\\xf0\\x9c\\xf6:\\x0f\\xe6E\\xbf\\xc0[\\xde\\xd3\\xc9\\xd1^\\xbf\\xe8nPq?\\x9b(?/b0\\xa6\\x02\\xdf@\\xbf\\xf0LY\\x18\\xbb{ ?\\x86\\xd2\\x9b\\x10Y\\xc6\\x83\\xbf\\x80\\xf4o\\xa9\\x11\\x80U?0V\\xc8\\x19|\\xb8w?(\\xb9>l\\xb56U?\\x00g\\x0fB\\xc5\\x8a1\\xbf\\xe0*\\xe36\\x17\\x9f[?\\x00\\x16\\xc4Dy\\xf1M\\xbf@\\x9a~e\\xc60\\x10\\xbf01\\x9c0\\xd5(7?\\xbc4\\xbfe\\xb5\\xfd\\x87?\\x00\\xfc\\x02\\x12\\xe2_\\t\\xbf\\xac\\x9b\\xf5\\x9f\\xcf\\x0ep\\xbf\\n\\xbbh\\xc3\\x98hc?\\x80.>\\xa7h\\x82@\\xbfP\\xef\\xfe\\xd7\\r\\xc8h?$\\xcc}\\x92\\xe21T\\xbf0\\x0b\\xe2\\x92\\xc5\\xe3Q\\xbf \\x905A\\x8e\\xd4O?\\x00H\\x8dI\\x86E\\x02\\xbf\\xc0\\xb0\\xdf\\xd7\\xb7\\x80_\\xbf\\x80)THa:A\\xbf\\x10\\x89\\x00\\xd0\\xf4\\xa6.\\xbf\\x04ai\\xf4\\x90\\x15V?\\x00\\xc3\\x00\\xc9\\x10\\xb6H?\\x00\\xa3\\x98lJ\\x88l\\xbf\\xd8s\\xa3}c\\xc0c\\xbf\\x80k?\\xc8>\\xa89?\\x80@\\x17\\x9c\\xcf<T\\xbf\\x00\\xd6{\\x0c\\xb8=+\\xbf\\x00\\x98\\xb7w&n]?\\x80&r{\\xb2\\xc5A\\xbf\\x80\\xda\\xac\\xba\\xe6>??\\x00t\\xeb\\xb8\\xcdx+\\xbf\\xc0^\\x9fv;%N\\xbf\\xa0m\\x85\\xb5\\xcb\\x00a?\\x00\\xdd7O*\\xcd:\\xbf\\x00\\r\\xd8U\\x1dHD\\xbf\\x80\\xa0ge9\\x88c\\xbf\\x80O\\xc2\\xa6\\r\\x9e2\\xbfhF\\xc1\\x02\\x03\\xfeY?\\x90\"My\\x01\\x908?\\xa0\\xeb3\\x86\\xe9*G\\xbf\\x08P9\\t\\xcd\\xa6N?@)\\x91\\xe7\\xaeb\\n\\xbf\\x08\\xcf\\xcf\\x12\\xcb\\x06W?@\\xef=\\x89\\x01*F\\xbf\\x80\\xc9\\x17\\x16\\xfa\\xc34\\xbf\\x80\\xac#\\x9d\\xd0\\x98@?\\x80N\\xe6\\xd6\\xe8\\xd0Q\\xbf@\\xc5\\xef\\x8eo\\xc3D?\\x80\\x80\\xb8N%\\x8e5?\\xe46\\x9aq\\x98w|\\xbf\\xc8\\xaeD\\xe7\\x99VR\\xbf\\xd4\\xd4\\xeb.\\x8f\\x0e=?@\\xa8X_\\x14{e?\\x80E\\xa0B\\xe7xQ\\xbf\\x08s\\x16\\xd1\\xc5\\xecC\\xbf\\x00\\x14\\x0c\\xb9\\xf39Z?\\xb4S\\x85k\\xdf;Y?\\x8e\\x8bL\\x96\\x02\\xfbC\\xbf`\\xb6\\xf6p\\x87\\x01|?\\x80\\xadcm\\xfe0b?\\xe8s\\x85\\xd8\\x8e\\x90`\\xbf\\x00\\x10\\x05#\\xa8\\xd2\\xf6>|\\x8eJ\\xcd\\xb1#S?\\xe0\\xe6\\x81\\xff\\xa3\\x00A\\xbf\\x98\\xa6\\xb7\\xf5\\xf8\\x15*?P\\x8b{.t\\xf4\\xf0\\xbe\\xe0F\\xd8$\\x8d\\x95*\\xbf:\\xf0\\x98T\\xe9\\x06`\\xbf\\xf0<\\xa8!f\\xc7Q\\xbf:1\\xf8\\x07&P`?\\xc0l\\x84\\x96\\x10\\xf4S?\\x80\\xb7\\xae\\x99V\\x1cC\\xbf\\xe0:&\\xf4\\xea\\xd3D?\\xc0nyw7\\x98<?p\\xb7\\x1bt\\xfc\\xab4?0\\xf2x\\x8e;z.\\xbf\\x00\\xfc\\x02\\x12\\xe2_\\t\\xbfn\\xe8\\xf3\\x94\\x18\\x82l?H+\\x92\\xddc\\xe7T\\xbfhT\\xd2\\xc7\\xe9[X\\xbf\\xc06\\t;\\xa5\\xd1N?@Y[DJ:P\\xbf|i\"\\x018\\xcb_?\\xe0%U\\xec\\xb3\\xd05? \\x81\\xea\\xbdH\\xd70?\\xa0\\xbdQ/\\xff\\x948?\\x00\\x91\\xf6m\\xb4\\xe3\\x1d?\\x00bx0:\\x12C\\xbf\\xa0\\x12$i\\xbc\\x7f\\x1a?\\xc0\\x96\\x01\\x00\\xa9\\x9f=?\\x00\\xac\\x8dn\\x01\\xee&?\\xc0\\xc3\\x99\\xa6\\xf5\\x92[?\\xe0G\\x97s\\xef\\xd2I?\\x808\\xe8\\x8c\\x84\\xf7<\\xbf\\xd0\\xdeX\\xb5\\x99tO\\xbf\\x00T\\xf5\\xee+\\xd7\\r\\xbf\\x00\\x80\\r0\\x8330?\\x80.yz9o;\\xbf`~p\\xc0\\xcf\\x94V?\\x00\\x84\\xdc\\xd6*\\xeb4\\xbf@\\x1f)\\xc9g\\x1a1\\xbf\\x00 \\xfa\\x80\\xd8\\xe2-\\xbf\\x00\\x85\\xa6\\xc7\\x0e\\r6?\\x80\\xa8\\x1auN\\xd4E\\xbf\\xc0FV\\x83\\xfatU?\\x00\\xa0w\\xca\\xdfC\\xf1\\xbe\\x08~\\xa0\\xdce\\xdf:\\xbf\\\\\\xd5\\xedk\\x1d\\x92L?\\x80N^WPv\\'\\xbf\\xa0\\xb4\\x1d\\xf3\\x98\\x1c5?\\xfcC\\xe0-\\x92\\x035\\xbf@\\xb6X\\xbaI\\x14I\\xbf\\x00\\x1aj\\xd6\\xccx&?\\xa0\\x0c\\xfdr\\xdc\\xc91\\xbf\\x00<te\\x9c_\\x0e\\xbf@\\xd9\\x9b\\xb6\\xb3h0\\xbf\\xc0\\xe7\\xed(\\x06(7?@\\xe9\\xbfh\\x03\\xfaL?\\xf2\\x0e\\x94e\\xd1\\x07w\\xbf\\xcb\\xbcJ\\x9bP8Q\\xbfdG\\x07\\x98b\\x15Y?\\xc4`\\x1e\\xfdW\\x91k?\\x00\\xb3\\x06o\\t7\\x16\\xbf\\x900\\xcf\\xff\\xed\\x8f>\\xbf\\xe8\\x9dJ\\xc2\\xb0\\xa6T\\xbf\\xfae\\xa3s:XR?\\xca&\\xa9<\\x11H8?\\x8e\\xdf\\xabrv&\\x83\\xbfd~~\\x8b\\xbb+`?t\\xa0\\xc3\\xd8\\x9f\\x06_?\\xc8\\x95bd/nw?>\\xe2$\\ni\\xfem?\\x10S:\\xc6\\x0c\\x1d;?p\\xf2H\\\\d\\x17#?%w\\xd3\\x94\\x19E=?\\x94\\xe3\\x11\\x92\\x8b\\x8f0\\xbf\\xf5\\xc3\\x1a)\\xa1\\x80\\x7f?\\xc0\\x05\\xaf\\x94N\\xf7a?\\xfb#eq\\xc9\\xf4\\x81\\xbf\\xaaQT\\xc7!\\x8dm\\xbf\\x80\\x19Z%\\xde<V\\xbf \\xe9\\xd0\\xe2X\\xfdS?\\x901\\xc5\\xf4N\\x0cK?\\xa4\\x1e\\xe7g\\xca\\xd3G?\\xc0<\\x1c\\x91\\xf1\\x1e*\\xbf\\xb0\\x9b\\xf5\\x9f\\xcf\\x0ep\\xbfP+\\x92\\xddc\\xe7T\\xbfpWzf\\xed\\x11\\x8d?\\xd7\\x02\\x18\\x15\\xc9\\x07d\\xbfp\\xcaT\\x93+8S?\\xb8\\x1aJ$\\xa5\\x1bm\\xbf\\x0e1\\xad\\x16\\x18\\xccp\\xbf\\x8ct\\xbb\\xdc\\xfbz`?\\xb08&\\n\\x0f<@?l\\xd9\\xbaH\\xcekL\\xbf\\x02\\x131\\x979\\x05i?\\x00\\x94\\xd7\\x18\\xaal\\x13\\xbf\\xb2\\xae\\x19\\x06B\\xe1P\\xbf\\xfc?\\x05\\xfc@eO\\xbf@\\xc4\\xe0\\x0c\\x81\\xb5A\\xbf`|R\\xe1Z=X?\\xa0\\x12\\xefL\\xcb\\x1dV\\xbf\\xdc\\xe1\\x80\\x92\\x17~P\\xbfV\\xe5X\\x12LEj?\\xbc\\x1d,\\x88\\xbcec?@\\xa22\\xba\\xaf\\xd4\\\\\\xbf8\\xcf\\x13\\xde\\x1a\\xcdR?\\xa8T\\xc4\\xa4\\xe9[a?\\x00\\xe6\\x9c\\n\\xad\\xecP\\xbf\\xb8\\x80\\x0f\\x91\\x02\\x96U\\xbf\\xe0G2\\xb69\\x8eJ?03\\\\\\xfe\\xbdVB\\xbf \\x82a\\x85q;C?\\xe4\\xea\\x03\\xaa\\xdaYr?`D\\x85\\xa6\\xe4\\xe48?^\\xf3\\xd5\\xd5\\x0289?\\xc3M\\x90%\\x89\\x89U\\xbf\\x10\\x1d\\xb6K\\xbe\\te?\\xf83\\xd5\\x8fq\\xbdD?\\x85d\\xcdA\\xcc\\xe6]?_D\\xb0\\x88LZa\\xbf\\xf4\\x14S\\x7f\\xaa|c\\xbf \\x10\\x0f\\x93\\xa15>?@\\x0f1D\\x89i\"\\xbf\\xb4\\x80*\\x9f\\xb5\\x1dR\\xbf$\\xde`{\\xae\\xd1V\\xbf\\xb8q\\xf0-\\xd4fT\\xbfz\\x12\\xbb\\xc6gX}?.\\xa7AL\\xbdwS?+6\\xe1\\xeb \\xd0%?\\xbb\\xa2T\\xb38\\x01j?\\xab\\t9#\\x11*Z?E\\x877Y`\\x01j?\\xbc5O\\x1c\\x8d\\x1aS\\xbfJw\\x12\\xb7amL\\xbf\\xc0\\x8c\\xd5\\x05?\\xc0V?\\xae\\xb1\\xc45ZWx\\xbf2\\x13\\x91\\x10\\xbdZ\\\\\\xbf\\xbdn\\xbb\\xac\\x96ne?\\x18t\\x86\\xf9<\\xb2\\x96\\xbf\\xc1>s\\x96qjU\\xbf\\xa0\\xa3\\xa3m\\xfa;*\\xbf\\x84:i\\xab\\xaa]G?e\\xe3\\xf4)/\\xedS\\xbf\\xf0\\x9b\\x16\\x07u\\xb1\\x19\\xbf\\x983=\\xeb5\\x01Q?\\x06\\x050\\x84Q3F?\\xf4\\xc1\\xfa\\x9bP\\xb5X\\xbf\\xfb\\x9a\\x0f\\x1c\\xac\\xf6\\x83\\xbf\\x14\\xe7\\xb2\\x0c\\xf8o[?&Q\\xd73p\\xe4\\x80\\xbf\\xc6ak\\xfbt\\xf7K\\xbf>\\x1f\\x80\\x031$6\\xbf\\xfe\\xc1\\xae\\xccMa@?\\n\\xbbh\\xc3\\x98hc?hT\\xd2\\xc7\\xe9[X\\xbf\\xd7\\x02\\x18\\x15\\xc9\\x07d\\xbf\\x9e\\xf9\\xf3\\'n\\xea\\x88?s5\\xe7\\xb4>\\xd3p\\xbfT\\x0b\\xf1\\xdf\\xfa\\xbe\\x81?U\\xd3\\xd2\\xaab\\x00j?\\x84\\xf9ww\\xcd\\x87f\\xbf8\\xd5D\\xe4\\xc7P*? \\n\\ra\\x80\\xfa\\x05?\\x8e\\xac\\xd4\\x90\\xba3c\\xbf(7&U\\xbfnV\\xbf\\xec?\\x96\\xde\\xe3\\x1a6?g\\xd9\\x0cc\\x87\\x1f]? iN\"\\x8a\\x10O?@\\xc2\\xbcy\\x82\\xa0^\\xbf_\\x9ez\\xb5\\xc4\\xe9i\\xbff\\t\\x13\\xfb\\x90\\xaeT?(\\xc85B\\xbcb<?Hqe6\\xe5aB\\xbf\\xe0?\\xb3\\xcb\\xd3\\x93Q?\\\\\\x95x\\x87\\\\\\xdf_\\xbf\\x88\\xea\\x89\\x05 \\xb1@\\xbf\\x00@\\x14\\x7f\\xea\\xf2M\\xbf\\xc0\\xfb\\x1f\\xbb\\x8f88\\xbf\\xe0m\\xdc\\xd4vrF?Pw\\x88\\x9bg\\x05;?@\\xcb\\xd9MW\\xf8<?\\\\2\\x17\\x93\\x8b\\x05i\\xbf\\xb8\\xfb\\xb0s\\xbcTO\\xbf\\xbd\\x8ah\\xd8\\xd9\\xcf#?\\xed\\xda\\xc3\\xdb;\\xc05?\\xdb\\xbe/\\x06\\x92\\x05d\\xbfL;\\x9c\\xb8_AT\\xbf\\xf5\\'q\\xda\\x83~L\\xbf\\x96r(\\xa4\\x83\\xa1Z?<\\xb8}\\xf6A\\xe2^?r(\\x0e\\x0cK\\xedK?\\x80\\x19\\xa7\\xaf]\\xedT?6\\x80^\\x81\\x1axW?\\x001\\xf8\\xc2i\\xfe\\x03?\\xe0(\\xfd\\xfaI\\xb7Y\\xbf\\xf4\\x14&\\xef\\xb9\\x0cw?XX\\x88\\xbc\\xed\\xce0\\xbff\\xf0\\xae6\\xcc\\xc4i\\xbf\\xecP\\x9b~I\\xe9v\\xbf\\xe0\\xb4\\xd3m\\xc1\\x84L?0\\\\\\xbd\\xf1W\\x0c=?@#(m\\x0e$[\\xbf\\x11y\\xdd1%kZ\\xbf\\x04\\xa42(\\xc2\\x00B\\xbf\\x80\\xae\\xf0S\\xbe)e\\xbf\\x00n\\xd5\\x84\\xa7\\xb3e\\xbf@O\\x16\\xd8,\\xee>?\\x00C\\x1e:\\x1d&Q?\\xf0~\\xdb\\xc4:\\x84T\\xbf\\xa0F\\xed\\xf1q\\xeeF\\xbfl\\xd9\\xd8;\\xce\\x053?\\xc8u\\xea]\\xf6fH?\\x80y\\x9aS8\\xfe\\xf1>\\xdb\\x13\\xe8\\x90\\xc2x`\\xbf@s\\xc3u\\xf0I=\\xbf\\x80\\xed\\n\\xd5O\\xc0\\x06?\\xa8A\\xc7\\xf8M-}?\\xf05J\\n\\xca\\x99x\\xbf\\x12\\xbb\\xa8\\xdf\\xce\\x81\\x81?@\\xc3\\x7f:\\x8b\\nH?\\xc0ff\\xdbz\\xeeE\\xbf\\x00$\\xa3\\x9b#\\x1c:\\xbf\\x80.>\\xa7h\\x82@\\xbf\\x806\\t;\\xa5\\xd1N?p\\xcaT\\x93+8S?q5\\xe7\\xb4>\\xd3p\\xbf\\xf8\\xe0\\xab\\xc3\\x9b\\xeb\\x85?\\x18\\xa0\\xb2\\xa5CR\\x8a\\xbf\\xa4W\\xcc\\xa8\\x02\\xf5u\\xbf\\x90$\\xff\\x91@NT?\\x10C;\\x8f;\\xc9C?\\x00\\x0c\\x19i\\xeaA3\\xbf\\xc0mQA>\\x018\\xbf\\x00=Oe),I\\xbf\\xaa\\x9e\\x0e\\x93\\xf8:T\\xbf\\x80\\x9f_\\xd3\\x8a\\xaf?\\xbf\\x00N0d\\xde?c? Y\\x91\\x05z\\xeeg?\\xd0xAa\\xba\\x86B\\xbf\\xc0\\xf0\\x9c\\xe9)\\xd6O\\xbf@\\xbb5\\xe8\\xe0\\x82V\\xbf\\x80|O(A&a\\xbf\\x00\\xc6\\x06\\xe2h\\x80^?\\x00\\xa2v9\\xb9nf?`\\xcbP\\xe4\\xd4>U\\xbf\\x00\\xc9\\xc5\\x9cU\\xbbR\\xbf\\x08\\xcbI\\xaf:\\xbfa\\xbf\\x80\\xac\\xa5l\\xd4\\xa8O\\xbf\\xe0\\xb5I\\xb6\\x01\\xb1F\\xbf\\xd0_\\x1e\\xa7\\xf6W]\\xbf\\x00\\x10\\xe0|a\\xa1\\x19\\xbf\\xc0\\xb4\\xa7\\xcd\\xa5rW?\\xcd!\\xbbY\\xcc5c?`\\x13_\\xcd\\x84\\x8c\\x1e\\xbf\\xd8y\\x9b\\x1e\\xe3\\xf7_?\\x9cU\\xda\\xc1+\\xedq?\\x84\\xdb[`o\\xf02?l\\x14Uq\\xb4\\x85U\\xbf\\x00|\\xf2-04!\\xbf@eJ\\xf04\\xb4`\\xbf\\xc0\\xd3\\xc5\\xa1\\xf7\\x85K\\xbf`\\xe54\\x08?\\xa9K\\xbf@\\\\\\xbf2\\xaegH?P\\xcf\\tA\\xa4+`?\\xc0u\\xde\\xf6\\xednY\\xbfH\\xf4\\xf7\\x11\\xa1\\xe3U?P\\xde1\\x1c}\\xbe]?\\x0e~\\xde\\xd1\\x18\\xd7\\x84?\\xd0\\xe8\\xcf\\xccf$T\\xbf\\x90\\xa2\\x18\\xf1.,[?\\xa0\\xe9\\xb1\\xcf\\x1aQP?\\xd0\\xa8%\\xe7{\\xb2[?Zz\\xc7\\x94lMH?p.\\xc3\\xb0\\x17\\xaa\\x86\\xbf\\x10Z\\xc1\\xab\\xedkd?0|m\\xef\\xe0\\xdfX?\\xa0\\xce\\xfeE\\x10\\xc3m?\\x80\\x9c\\x94\\xd6\\xfc\\xbd;?\\xe0\\xcd\\xecBS\\x93W?\\x1c6\\x10\\xab,\\x12@?D\\x92\"\\xd7\\x93\\xa6P\\xbf\\xa0O\\x1fh\\xc6\\x10#?\\x91\\xe53\\xb0\\xe4\\x17n?p\\xa8\\xe6\\xfe\\tnU?\\x80\\x82<\\xdb\\xeft[?\\x1e\\x88: \\xaf\\x0b\\x8b\\xbf89\\x1bZ\\xd9\\xcc{?\\x9dE\\xc1\\xd5n\\xba\\x91\\xbf`\\xf7\\x9fA\\xe8\\x99T\\xbf\\xf0\\x90\\xc0\\xce\\xfdwE?\\xa8\\xf4_\\x82\\xc1\\xc20?0\\xef\\xfe\\xd7\\r\\xc8h?@Y[DJ:P\\xbf\\xb8\\x1aJ$\\xa5\\x1bm\\xbfT\\x0b\\xf1\\xdf\\xfa\\xbe\\x81?\\x18\\xa0\\xb2\\xa5CR\\x8a\\xbfX\\x80e>\\xed\\xa0\\x9b?\\xf2.iA%q\\x85?`a\\xf8\\xb3\\x05!_\\xbf\\x00\\x03\\x95\\xa2\\x00\\x15@?@F\\x8d\\x8c\\xe4T:?\\xc0\\xa2\\xc1\\xcf\\xea\\x91E\\xbf\\x00\\xc2\\xae\\x1e<\\x9dR\\xbf\\xb4\\xecWL!|^?zqf-\\xbe\\xdb]?\\x80\\xff\\xe1\\xa6\\xb8PD\\xbf\\x80\\x9f\\xf7\\xdc\\xe6Bg\\xbf\\xf0%k~\\xf5\\x13@\\xbf\\x00\\xe8\\xb1\\xa7\\xa9s\\xee>\\xd0\\x1eh\\x1f\\xc6\\x8fR?\\xf0\\x92\\xde\\x8c \\xaad?\\x00\\xc0l\\xc3S_4?@5E\\xf4\\xa0\\x00p\\xbf\\x00\\x8f\\xe8`\\xeasa?\\x00P\\xa2\\x9f\\x98\\xe9\\t?0U\\x91\\x83\\x04\\xcfZ?\\xe0\\x88\\xbb\\xe6N\\x9ak?\\x80]\\xefq\\xf6\\xce1?\\x80\\xc2\\x19\\x9c\\x04\\xcfX?\\xc0E+-;\\xa0h\\xbfX7\\x7f\\x99\\x11\\xe8a\\xbf\\xd8\\xf9!\\xfd^\\xdfe\\xbf\\xb2N\\x02{\\x90~\\\\?\\xcca\\xc4\\x00\\x9fQs\\xbfU~\\xc7\\xace\\xdbs\\xbf\\xc5\\xfd\\x9ef\\xfb;U\\xbf\\xbe\\x91\\x9e\\xbc\\x98Kk?\\x80\\x13\\x96j\\xa3\\xb93\\xbfP_2\\x8a.lf?\\x00\\t\\xbb\\xaf15`?\\xd0\\xb4|\\x14\\r\\x83^?\\xc0@~\\\\h\\xddK\\xbf\\xd0\\x00\\tN\\xd8Ml\\xbf!\\xdcH%\\x04\\xd1g\\xbf\\xa4\\xce#\\xf6?\\x8dY\\xbf\\nx\\x7f\\x8a\\x9a\\x96T?\\xfb\\x07\\x83\\x19\\xf5k[?\\xfc\\xd5\\xda\\x97\\xb5\\xd2D\\xbf\\xed\\xda\\xbf#\\xb44S\\xbf\\xaev\\x0ca\\xf0\\xded?\\xee\\xa6\\xf1\\x86\\xa9\\xd4R?\\x9d\\\\\\xdf\\xa0x))?\\xe6HV\\x86C\\x1fy?v\\xc8\\xc2\\xb4\\x86$h\\xbf @\\xe0\\x98~\\x80V\\xbfF*\\xa3\\xbd\\xb7bp?\\x08cg\\xf7\\xd2\\x0e;\\xbf\\xeej\\xa29\\x96J[?HO\\x94\\xd2P\\x16d?DxM\\xd4d\\x168?\\xc2/\\x16\\x7fV\\xc82?%\\x19[\\xc9\\x16c@?\\x8f\\xd8\\xf3CXCY\\xbf\\xbe\\xf2y\\x01Q\\xfeh?\\xe6\\x90\\x92\\xe0y\\xddh\\xbf\\'\\xea\\xeb\\xf4nZp?\\x86\\x1f\\xd8\\xea\\xc4\\x0c{\\xbf\\x04(\\\\9z8M?\\xed\\x82I\\x17p\\x99C?\\xed\\x95.\\xf9\\xae\\x994\\xbf\\x1c\\xcc}\\x92\\xe21T\\xbf|i\"\\x018\\xcb_?\\x0e1\\xad\\x16\\x18\\xccp\\xbfU\\xd3\\xd2\\xaab\\x00j?\\xa4W\\xcc\\xa8\\x02\\xf5u\\xbf\\xf3.iA%q\\x85?\\xa6(\\x98v\\xe3\\xf5\\x97?\\xfc)5\\x87\\xb5oV?0\\x93\\xb5\\xfb\\xca\\x1fC\\xbf\\x94\\xb2`Y\\xc9\\xded?\\xe2\\xc7\\xf2\\x0e\\xcf\\xceX?\\x00\\x06q\\xd9\\xc0c:?\\\\4-evnj?\\x8a\\xe0\\x1bb-6L\\xbf\\xc8$w|\\\\\\x9bS\\xbf]f\\xcf\\xde\\\\\\x17\\x80?\\x1b\\x94\\xc1t\\x17\\x05s?\\xcd.\\xdc\\xc0U\\x03`\\xbf\\xca@(\\xe9\\xf2\\xd1X\\xbf\\x00&K\\xd9\\xea\\xd5\\xf9\\xbe za\\x08\\xfa\\xd3C\\xbf\\x89\\x13\\xf6U_\\x11i\\xbf(0\\x00\\xc7\\xbb\\xb9_?\\xc0\\xe3\\xae\\x9a\\x82\\x00M?\\xd8\\xb2o7\\xa6\\xd1Z\\xbf\\x00\\xa7jC\\xb4\\xf5i\\xbfg\\xef\\xd6y9\\xa3e?P\\xe5e\\t}eW\\xbf\\xc40\\x01\\xe7&2d?\\xe4\\x90\\x8a\\x9b\\xc8\\x82^\\xbfn\\x97\\xaa\\xa9%\\x9ev\\xbf\\xa6E/O\\x81hh?\\xd8-C\\xfe\\x91\\x7fi\\xbf\\x9f\\xb8GpB\\x84s\\xbf\\x88\\'`\\x17)P_\\xbf\\xd3-\\xf9P%\\x07^?\\xa06\\x031\\xe3\\xd1Q?\\\\\\xd2\\xe1\\xf7\\x9b\\x06N?\\xd0q\\xd8\\xc5\\x81\\x90G?\\x9e\\xa1\\xae\\x9b\\x98\\xd3V?0\\xc1f\\xbc\\xa6\\xd3/?`o\\xcc\\x8b5\\xfc/\\xbf\\x00vQ\\xe6\\x93\\xaf\\xf2\\xbe\\xa00\\x90<\\t\\x11]\\xbft;\\xb5\\xde\\xc2\\xa8W\\xbf\\x9cp\\xc0\\xa4\\xe6\\rh\\xbf\\xe8\\x80\\xf2L*i<\\xbf\\x08\\x87\\xcc\\x94VzU\\xbf\\xa0\\x05\\x94]\\x19~??W\\xa1))\\xfdUD?\\x89\\x99LE\\xf3\\x85M?4U\\xa4\\xe7\\x13\\xb6r\\xbf\\xbc\\xe1\"\\xabD\\x1fm\\xbf\\xc0\\x02\\xbc\\xf1\\xffWB?H3\\xf0\\xa3\\xff0v?\\x88\\xa2\\xc7\\xf7G\\xacA\\xbf\\xa06\\x8b\\x90\\xbbF3?\\xd0\\xdc\\x02\\x1en\\xbb\\xfb>j\\xfd\\xc0\\xb7Y\\xd0b?y\\xb4\\xa6\\xda\\x1a\\x03Q\\xbf@\\xba\\x9c\\xac\\xb2\\xdc;?\\xb89\\xb0\\r\\xa8\"R\\xbf\\x1a|\\x81\\xd5~PC\\xbf \\x86[\\xa8\\xfe\\x96*\\xbf\\x80\\x00\\xa4\\x8b\\xdbM3\\xbf<dM\\xeb\\xd2zc?H}\")\\x8a\\x02I?\\xae\\x90)\\xa3\\x0e`Y?\\x1c\\xdf\\xfd-\\xb9\\x91!? \\x0b\\xe2\\x92\\xc5\\xe3Q\\xbf\\xe0%U\\xec\\xb3\\xd05?\\x8ct\\xbb\\xdc\\xfbz`?\\x84\\xf9ww\\xcd\\x87f\\xbf\\x90$\\xff\\x91@NT?\\x80a\\xf8\\xb3\\x05!_\\xbf\\xfa)5\\x87\\xb5oV?\\x9e\\x95\\x8a\\x12\\xa2\\xa7\\x93?Cm6\\x86P\\x85g\\xbfjj\\x91\\xa3\\xa4\\x97X\\xbf\\xb8m\\xd4E\\x03\\x1fT?\\x00\\xe2\\x94\\x8e\\xc4\\xd2\\x1a?\\xa7\\xa1\\x1b\\xdd\\x17\\xa1b?He\\xf6\\xdfy\\xd2Q\\xbf\\x00\\xd2\\xa2;\\xeb\\xef\\x16?\\x80\\\\\\xd8}\\xe7\\xa8]?4\\xf2\\xe3\\xc1]t\\x91?=g\\xd4#+}w\\xbf\\xe8\\xee\\x9c:\\x83\\xcbB?\\x80\\xb7jx\\x95\\x92\\x1f? \\x14\\xc6\\xcb\\xe9\\xcdR\\xbf\\xe0\\x04F.|<?\\xbf\\x88AW\\xbf\\xe3\\x9bf?\\xc0\\xca\\xbc\\xfd\\x832N\\xbf@\\xae\\x12\\xe2G\\xa3#?(}\\x0e\\xe5\\x93\\x84c\\xbf\\x00\\xae\\xe6\\xf2\\xf7\\xaeK?\\xec\\xf5\\xba\\x96\\xaf`e\\xbf\\x808\\xd0\\xb6#\\xc7P?@\\x87hT1R*\\xbf\\xc1\\xdc\\xe7\\x84(\\x9f6\\xbf\\x94t9\\x80\\x8c2Q\\xbfn\\x12\\x93:\\x05\\xc7\\\\?4\\x8f\\x94`N\\xf9U\\xbf~\\xe7\\xab\\x84\\xe3\\x1cR?\\x9c\\x7f\\xc1\\xeci\\xc8D\\xbf\\xe0D\\xc1\\xd6\\x02\\xb5B\\xbfh\\xae\\x15\\xc8\\xcb{G\\xbf\\x80A\\xf4G;\\x86J\\xbf \\x9a\\xb7\\xf6\\x91\\xefU\\xbf`\\x10\\xc7\\x97\\xe6s4\\xbf\\xe8\\xdc\\x8d}Z\\x05Z?\\x1ea\\x90Yh\\x03e?oU\\xe7\\xc0 ;D?\\x80R\\x8fd\\x83Y\\x1c\\xbf\\xc8\\xcb\\xdc\\xfd\\x92\\x17Y\\xbf\\xf4tt\\xab~+L?`\\xc4\\xc2L\\x81Y\\x18?\\xe0\\x9e,\\xe9/\\xf8=\\xbf\\xc2em\\xbb\\xba\\xd9H\\xbf]\\xc8\\xf4w\\x1c08\\xbf\\xec\\xd2R0\\x82>s\\xbf8\\xe7\"Y?pT\\xbf\\x80\\x00$\\x1d\\x99\\xd9K?P-\\'e\\x11\\x92n?P2\\x83Y\\xc0\\x14A?\\xa0\\x9f\\xffE;k@?\\x84x#\\x91^\\xa1\\x1f?\\x7f\\xf0\\xb3vA\\xa8#\\xbf\\xa2\\xdd\\xecG\\xb5:F?\\x1f\\xc7\\x08\\xecOrP\\xbf\\x98h\\xd7\\n\\x12\\xc1D?\\xc0[\\xb3\\xaf\\xe3#7?h\\xfc\\xcb\\xe3\\xedgB\\xbf\\x00b:*E\\x9b-\\xbf\\x80]\\xd5\\x06\\xd5\\xde\\x19?\\x80\\x12\\x01|\\xb3\\x7f\\x19\\xbf4\\xfb\\x0el\\xde(@\\xbf\\x00>\\xb9Q\\xd1\\xa9\\xdb\\xbe \\x905A\\x8e\\xd4O? \\x81\\xea\\xbdH\\xd70?\\xb08&\\n\\x0f<@?(\\xd5D\\xe4\\xc7P*?\\x10C;\\x8f;\\xc9C?\\x00\\x03\\x95\\xa2\\x00\\x15@?4\\x93\\xb5\\xfb\\xca\\x1fC\\xbfCm6\\x86P\\x85g\\xbf\\x9e\\x14\\x18\\x97U\\xdcl?\\xa0\\xb0\\xa0\\x9d\\xf1\\x00\\x1c?\\x80\\xc36\\xd0\\xcd\\x08,?\\x00\\xfaA\\xfe7\\x16H\\xbf>\\t\\xca\\xe84\\rQ\\xbfX\\xb2\\xc2b\\x81?!\\xbf\\xa0&V\\xaa\\xbd:P?@\\xf14\\xd3(\\nG?$A\\x96\\xdb\\xd5\"q\\xbfhn0\\xa0\\x1f$J?\\x00\\x9d6/->\\x15?\\x00`4|H\\xef\\xda\\xbe\\x00 w%\\xfdMM?\\xc0\\x1cety\\xb7*?\\x00M}S\\n\\xb2#?\\x00\\xf7\\x9b[\\xfd1B\\xbf\\x00q-\\xbb0\\xd6H\\xbf\\xe0\\xc7\\xa7\\xd7)&W? \\xbb\\xed\\xb8b\\xa4?\\xbf\\x80hJ_\\x90\\x10C\\xbf\\x00?<L\\xfd\\xa1\\x15\\xbf`%\\x89\\xda \\xf70\\xbf^RU\\x80\\xb0ZX?\\x80#\\x98\\x96P\\xcc??\\xc0\\xb6\\xbbiq\\xa1*\\xbf\\xe46,\\xa3\\xd4\\xc0P?\\xe8\\xe2U&\\xdd\\xf1\\x1c\\xbf`\\xf6\\xc7\\x8es\\xca\\x1a?P\\x98\\xae\\xa5\\xf1\\xcdP\\xbf\\x00\\xe6\\x8c\\xdby\\xb7\\xe3\\xbe\\x00\\xe2\\xcc\\xe4\\xc8\\xdd\\xf8\\xbe\\x00\\x17\\x1b\\xb4\\xa9\\xb8\\x14\\xbf\\x00\\xd8\\xf5vI\\xf9\\xd5>\\x80\\xbc\\x0b\\xf0\\xe9\\xdc/\\xbf\\xc0\\xc6pB\\t\\xdf\\x13\\xbf\\xc4\\x1e\\xd9\\xf9c{*?\\x1a\\xf5|G\\xb0I@?\\xa0\\xae\\xd3\\xc6Y\\xaa<\\xbf\\xa0\\xc7\\xa5\\\\~U!\\xbf\\x16\\x89\\x05d9\\xae@\\xbf\\x00\\x97\\x91\\xfa\\xd3\\xcf*?\\xc0%C\\xb7t0\"\\xbf\\xfe\\xe0\\nJ!D \\xbf(\\xc1\\x11\\xe0\\xf05b?\\xe0\\xa5;\\xa2\"\\x88%?\\xd8\\x0b\\xd3\\xde\\xd3\\x8cD\\xbf\\xa06\\xcb\\x9aTc@?\\x0e\\x9315\\x05\\xb0C\\xbf\\xd0\\xb0\\xa7\\x9a\\xf5\\x061?\\xe8D\\x7f\\x13\\x89\\x11=?\\xc7\\xca\\x9c\\xff\\x07\\xf2%\\xbf\\xea\\x02Ou\\x80\\xad0?I<\\x89\\xdd\\x14\\xb6C\\xbf\\xa0\\x9cM\\x02\\xd2/%\\xbf\\xfe\\x11#\\xc2\\x99\\xe3I?\\xe4\\xcb\\x08$\\x9erC?@\\x1c\\x08\\x85\\xd2\\xbe*\\xbfp\\xa1\\xbd\\xdc\\xdb,<\\xbf\\x00\\xea\\xe2!(4\\xd4>\\xb8\\x0e}\\xfd\\xcf\\x82/\\xbf\\x10\\x7f@[@\\xa0\\t\\xbf\\x00H\\x8dI\\x86E\\x02\\xbf\\xa0\\xbdQ/\\xff\\x948?h\\xd9\\xbaH\\xcekL\\xbf\\x00\\n\\ra\\x80\\xfa\\x05?\\x00\\x0c\\x19i\\xeaA3\\xbf F\\x8d\\x8c\\xe4T:?\\x94\\xb2`Y\\xc9\\xded?kj\\x91\\xa3\\xa4\\x97X\\xbf\\x00\\xb1\\xa0\\x9d\\xf1\\x00\\x1c?\\xf5\\xdc\\x18\\xe7\\xc8\\xb0a?\\x00\\x02\\xf0H?\\xb8\\xfd>\\x00\\xc3! \\x9c\\xf1\\x1c?Me\\xfa\\x84\\x02\\xccA?\\x80gh\\x03\\xb3E!\\xbf\\x80\\x05\\xa2F\\x9e\\xe6#\\xbf@\\xd2/1\\xe6JE?\\xe4\\xaa\\xea\\x07\\x91\\xf3D\\xbf \\x97\\xda\" \\xa1(?\\x18@\\xeba\\xb2\\xf3>\\xbf\\x80\\xc8\\xd9\\x92\\x94\\x1c)?\\x00T\\x01\\x17nV%\\xbf@\\xa65q4\\x12,\\xbf@\\xce\\xac\\x80\\x94X,\\xbf\\x00H\\x00\\xcf\\x8d-7?@\\x82\\x98\\x01E\\xa3\\x13?\\x80\\xe0\\x00\\x89\\x8b)@\\xbf\\xa0P\\x9e\\xac\\x89\\xe83?\\xc0* \\x93\\xa9\\xd2\\x1b?@\\xde~\\n@\\xbeA?\\x80\\x89\\x95\\xc96\\x8c!\\xbf\\x80\\x7fV\\xe8M\\xdcW\\xbf$`\\xec\\x13zM.?\\xb8\\xca\\xec\\xdd\\xe2{E\\xbf(\\xd5(\\xe6\\xaa\\xfdG\\xbf\\xa5\\x18\\xa8)\\xce)7\\xbf`58-\\xa5\\x82!?\\x80\\x96SI\\xc1\\xe6,?\\xe0A\\xdep@\\x80\\x1d?@\\xb3\\x1c\\xba\\xa3E5?\\xd0\\x9e\\x86=4\\x165?\\x00\\x9c`]\\xcb\\xf0\\x0f?\\x80\\xc0\\xa5j\\xf4W\\x1a\\xbf: \\x9d\\xf30bp\\xbfX\\xb4\\x12>\\x9a\\xc5O\\xbf\\\\\\xf5\\x15f\\xc3\\xc49?`J\\xc9?\\xcc\\xd9c?\\x085\\x19\\xdc\\xc6\\x1dG\\xbf\\xfc{\\x1e$\\x8bwD\\xbf\\x00Z\\xfcd\\xae\\xdf\\x0f?o\\xb8t\\xba\\x85(R?\\xc0\\x02\\x82\\xe0\\x1e\\x81\\x02\\xbf\\x90\\x94\\xa0\\xebpaa?\\xa0\\xaf\\x90\\x16\\xad\\x005?\\x00\\xf6fH\\x96\\xad)\\xbf\\xe0\\x07\\xe9\\xca\\xf8\\x93l?$\\t\\xc9 >\\xc7\\\\?\\x80\\x9e\\xd7)\\xd40$\\xbf\\x89\\xb1m\\xff\\x85^K\\xbf\\xc6M\\xa5.m\\x87P?p^\\x93u\\xdd\\xa02\\xbft\\xd3\\xeaC\\xb4\\x90J?\\xe0q\\x8b#\\xad\\x91)?\\x1d\\xa71YA\\xd3Y\\xbf\\xd0\\x90_?z42\\xbf\\x80\\xd9\\x1d\\x9c\\xf2\\x8f+? \\xd1\\xc5\\x08\\x19\\xa3L?\\x90\\x9a\\x91\\x9a\\xbc\\x1bO?\\xc4Hg\\xf6\\xd2)F?\\xe0\\x82\\xee<\\x99\\xbe7\\xbf\\xc0\\xb0\\xdf\\xd7\\xb7\\x80_\\xbf\\x00\\x90\\xf6m\\xb4\\xe3\\x1d?\\x02\\x131\\x979\\x05i?\\x8c\\xac\\xd4\\x90\\xba3c\\xbf\\xc0mQA>\\x018\\xbf\\xc0\\xa2\\xc1\\xcf\\xea\\x91E\\xbf\\xe2\\xc7\\xf2\\x0e\\xcf\\xceX?\\xb8m\\xd4E\\x03\\x1fT?\\x80\\xc36\\xd0\\xcd\\x08,?\\x00\\x03\\xf0H?\\xb8\\xfd>TK\\r\\xe4\\xfe\\x8fy?\\x00#\\x8f\\xc6\\xfe\\xd0)\\xbf\\x96\\xf8\\x99\\x1f\\xd3n<\\xbf\\x1c\\xf0\\xe33\\xac(h\\xbf\\x00\\xc8s%_\\xb8\\xf4\\xbe\\x90\\xc5\\xe6\\xae\\x84\\xdff?h\\x08\\x15Q\\x89\\xe7M?P\"\\xd2H\\xc1\\xb9Y\\xbf\\\\q\\x88\\x8b\\x03EV?XL\\xd0\\xb7D\\x98h?\\x80G\\xb7g\\x86\\xafW\\xbf`\\xf7@K\\xcf\\xf1=?\\xd0\\x99r\\xe8\\xa6\\xcdP?\\x00\\x9ex>K\\xd5;\\xbf\\x80\\xa8\\xa19\\x97\\x1a*?\\x00e\\x12C\\x9f\\xba7\\xbf`\\xf37\"\\xe4\\x16??\\xa0Pt\\xc1\\xeb\\xd47\\xbf\\xf0\\x14\\x03E\\xef\\xd1d?\\x80\\n\\x1e9\\xe3q\\x10\\xbf\\x82\\x07^9x\\xdeU\\xbf\\x18l\\xd9\\x8bTk@\\xbf\\xf0\\xa0\\xe66\\xd7\\xc4R?\\xa8\\n`\\x9d\\xd8\\xbe@\\xbf\\xa0\\xce\\xc4\\xe5\\xe5SH?\\x109\\xabr\\xc0:[\\xbf@\\xb0(\\x0eb\\xce5\\xbf\\xa0\\xc3\\r($\\xe3-?\\x00@\\xcc\\xaa\"\\x0b\\xc8>\\x00(2\\xa7t\\'\\x18?\\xc0:\\xd1~\\xca7:\\xbf\\x008.\\x0f\\\\\\xeb\\x00\\xbf\\x80\\xe7\\xcb\\xd0\\xa8\\xf7P? \\xc2l\\xfc\\x17\\xd4A?4\\x95\\xb0I\\xff$D?\\xd0\\xa6\\x9a\\xa8\\xc9Bo\\xbf\\x00\\xc0*\\x12x\\xbc\\xf6>@#i<=\\x89Q\\xbf\\x00\\x86\\xd0\\x0c}\\x81E?\\xa8PD+W\\x95G\\xbf\\x80\\x90|\\x06u,\\x12?\\x00\\xa4\\x12\\xde\\x7f:N?\\x00Fb\\x1c\\xd5\\xe09\\xbf\\x007\\x15<*_<\\xbf\\x80\\x86O\\xaa\"Fl?`_\\x1a\\xb9\\x0e X\\xbf\\x80\\\\\\xc2;\\xe5\\x10E?\\x903\\x12\\x1d]\\xfa.\\xbf\\xe8{\\x1eP\\x8dD\\x11?\\x00\\xa7\\t\\x04\\x831)?\\x00\\xa0\\xc4\\xa5\\xc3\\xe7\\xe8>\\x00\\x1e\\x87\\xc1`\\x00\\x1b?\\x00\\xc6\\x0bN\\x0b$\\x17?\\xa0\\x1f\\xd4\\xe5\\xd4gX?\\x00-\\xcf\\xfa\\x8b9??\\x00J\\xd5Jt^S?\\x00\\xac\\xd5\\x95\\xb0;\\x18?\\x80x\\x84\\xccp\\x82&\\xbf@\\x80O\\xae/X/?\\x80(THa:A\\xbf\\x00bx0:\\x12C\\xbf\\x00\\x94\\xd7\\x18\\xaal\\x13\\xbf(7&U\\xbfnV\\xbf\\x00=Oe),I\\xbf\\x00\\xc2\\xae\\x1e<\\x9dR\\xbf\\x00\\x06q\\xd9\\xc0c:?\\x00\\xe2\\x94\\x8e\\xc4\\xd2\\x1a?\\x00\\xfaA\\xfe7\\x16H\\xbf\\x00\\xc3! \\x9c\\xf1\\x1c?\\x00#\\x8f\\xc6\\xfe\\xd0)\\xbf~\\x9e\\xa3S\\xf3\\xb9m?\\x90Ak\\x96\\xb1 7?0\\xfd\\xf3@\\xba\\x10B\\xbf\\x80\\x04\\xc4\\xe6\\xd0\\xb1b\\xbf\\x0058[W\\x13K\\xbf`+F\\x06\\x84\\xeaF?\\xc0\\x8ai\\xbc\\xd4\\x8eD?\\x80\\xe8\\x8bM\\x8a\\xf18\\xbf\\x00\\ryr\\n6G\\xbf\\x00\\xcaGO5-M\\xbf\\x00\\x94=\\xeb\\xa2\\x9e\\x1b?\\x00\\x83@\\xab\\xa0\\x8bK\\xbf\\x00h\\xefp0\\xaf[?\\x80\\xfdc\\xfd\\xedYR?\\x80\\xa6T\\x05\\xca\\x91e\\xbf\\x00=\\xbc\\x88\\r\\xdd??\\xa0\\x05T\\xdd4\\xa5W?\\x00\\xfa\\xa6\\xf4k\\xb3X?\\x00$\\xa1\\xb3\\x93\\x9d\\x15?\\x9b\\xdd\\x06\\xfaS\\xfaW\\xbf\\x90_Nk\\xe7\\x1aE\\xbf\\x80P\\x93;\\xc42@?\\x90G\\xd1w9\\xd8S\\xbf\\x00\\xc6\\xa0\\x93:\\x1b/?\\xc0:\\xb6\\x80qh2?\\x00\\x15\\x9b\\xdb\\x02\\xba@?\\x80\\x0e\\x1b\\x01b\\xa17?\\x00\\xc7\\xd9\\x8a%\\xc4A?\\x003\\x86\\x0f\\x97\\xc0!?\\x00\\xcd]\\x1f\\xcd\\x9b1\\xbf\\x00\\xc8\\xdb\\t\\xd1\\xfaB\\xbf\\x98\\xfc\\xa0\\xaa\\x04\\xfa+\\xbf\\x0c\\xbd\\xa11\\x86\\x8e)\\xbf\\xf6\\x87\\x91\\xd4\\xc1\\x06@?\\x00\\t\\xda\\xfe\\x0cG\\x1d\\xbf.b\\xee\\xc5\\x85\\xf5B\\xbf\\xce|\\xb5\\xe7U\\xf9F\\xbf(\\xb3\\x8b\\x92\\xc711?\\xc4\\x80w\\xb0\\x12\\xd23?\\x92>\\xf2\\xf13\\xf7/?\\xba\\x9a\\x06\\x11+\\x1dS?|m9\\xab\\xfcv6\\xbf&2\\x9e\\xb0\\xe3\\x00A\\xbf\\x00\\xf6\\x1d\\x11\\xb4\\xa5@?\\x845PQ\\x92\\xc6M\\xbfkb\\xf7I\\xe7\\xe6<?\\xa9\\x8f\\x89H\\xf4\\x07D?\\xd7\\xaa\\x1f\\xe3\\x1b\\xd02?\\xf4\\xacE!K\\xb1\\'\\xbf\\xb2?\\xdc\\x8f$\\xde)?x{RU0\\xfa;\\xbf\\x99v\\xa0\\xd8\\x7f\\x18G?]/\\xb6T\\x84\\xc7=\\xbf\\xc4Prh\\xa0\\xe0B?\\xb9\\x84\\xd6\\x9f~\\x80U\\xbfP\\xcb!\\xd2\\xca\\x98\\x15\\xbfqLY\\x89\\x8eg6?@\\xfc\\x1da(\\xa2\\x0f?\\x10\\x89\\x00\\xd0\\xf4\\xa6.\\xbf\\xa0\\x12$i\\xbc\\x7f\\x1a?\\xb2\\xae\\x19\\x06B\\xe1P\\xbf\\xf0?\\x96\\xde\\xe3\\x1a6?\\xaa\\x9e\\x0e\\x93\\xf8:T\\xbf\\xb4\\xecWL!|^?\\\\4-evnj?\\xa6\\xa1\\x1b\\xdd\\x17\\xa1b?<\\t\\xca\\xe84\\rQ\\xbfMe\\xfa\\x84\\x02\\xccA?\\x96\\xf8\\x99\\x1f\\xd3n<\\xbf\\x90Ak\\x96\\xb1 7?\\x1e\\xf0l\\xe9v\\xc4e?\\xc0l\\xc0\\xe2\\xfc42?\\x98\\x87%v\\xdc\\x83A\\xbf\\x009\\xe2\\xf4\\xe4\\xfc\\x03\\xbf\\xa2\\xbf|\\x93{>k?.\\xcd\\x922\\x99q@\\xbf\\\\<\\xcb\\x01e\\x1c:\\xbf \\xac\\x1a\\xe9:\\xd7\\x13\\xbf\\xc0Ja?\\xd3\\x8a=\\xbf\\x8c^\\x077\\x91WF\\xbf\\xf0\\xfb\\xcc1Ah(\\xbf\\xc0(4`\\xeb\\x9bB?\\xd8r\\xa6\\xab<\\xcc/?\\x9e\\xca\\xf3\\xae\\x18\\x86R\\xbf\\xd5\\x06\\xd1\\x08fGA?h\\x00u\\xac&\\x95(?\\xf0\\xd0\\xed\\'\\xb2\\x815\\xbf\\x98\\xa9)\\x1b\\xd2\\xe9$\\xbf\\xa1Z\\xba$d\\x9c\\\\\\xbf\\x15X\\xe6L\\xac\\xcb&?Tz\\x1fS\\x99\\x12E\\xbfVa%2\\xd1vS\\xbfY\\xc2?\\xb9\\xd2\\xa09\\xbf0\\x877\\xc5\\x9aKE?\\xc8\\xf9P\\x1a\\xb3\\xab<?82\\xbe\\xba\\xc4\\x85\\x18?\\xe0\\xba\\xe6H\\x103\\x1a?\\x80\\xd2\\xf2=\\x01\\x04\\xe0\\xbe\\x00\\xee\\xf5\\xa0I>\\xf5>`\\xcd\\xd8\\x83\\xcb\\xf1\\x15?\\xb6\\xae\\xdak\\xf7\\xd0`\\xbf\\xcbO\\x15\\xf7npC\\xbf\\x88\\x1cxr^S8\\xbfx\\xb4E\\xf1\\x16\\xc4e?\\x1c\\xae\\xf5?\\x0e<8\\xbf\\x1ax\\x07\\xcbs\\x94M?\\xe0\\x83\\xf5\\x9a\\xf9\\xfc>?D \\xbeJ\\x11\\x05Q?\\xf0\\x9f\\x81LK=\\x15?\\x80Q\\x03\\xe4\\x93^$\\xbft{\\x0fd\\xd0\\xd4W?pSc\\xbd|\\xd0 \\xbf>\\xacW\\xbf\\xd5\\xabm\\xbf\\xd0%\\x92D\\xd1\\xb2\\x1d\\xbf\\x9c\\x88\\x97*I\\xa20\\xbf\\xd7\\x0c\\xa5N\\xc2vH?\\x86\\xd9\\xe4\\xe1\\xdf0+\\xbft\\xb4i\\x00\\xd8\\x8e5\\xbf\\x0cQ\\x0b\\xd2P\\x04-?\\xe8\\xed\\n\\x1a\\x9cA,\\xbfE\\xf3t\\xd8LME?\\xc6\\xc2\\r$\\x06?E\\xbf@\\xe5\\xa7L\\xde-\\x1c?\\xd9/\\xe5\\xaf\\x91\\xe3^\\xbf&\\x1c1\\xde\\x08\\xb9F\\xbf>)L\\xae6<D?\\xf8\\xe8]T\\xe1U\\x17?\\xfc`i\\xf4\\x90\\x15V?\\xc0\\x96\\x01\\x00\\xa9\\x9f=?\\xfc?\\x05\\xfc@eO\\xbfg\\xd9\\x0cc\\x87\\x1f]?\\xa0\\x9f_\\xd3\\x8a\\xaf?\\xbfzqf-\\xbe\\xdb]?\\x8e\\xe0\\x1bb-6L\\xbfHe\\xf6\\xdfy\\xd2Q\\xbfX\\xb2\\xc2b\\x81?!\\xbf\\x80gh\\x03\\xb3E!\\xbf\\x1c\\xf0\\xe33\\xac(h\\xbf \\xfd\\xf3@\\xba\\x10B\\xbf\\xc1l\\xc0\\xe2\\xfc42?xT\\x1eq\\xba#t?\\x80;\\x92\\xda\\xf9T%\\xbf\\xbcB^\\x07\\x000^\\xbf\\xa2l\\xb6m\\xf4)P\\xbft)\\x13\\xfa\\x85DE?p`qf\\xf2\\xc3.?\\x80\\xe2\\xabe\\xd3@\\x02\\xbf\\x00\\x0f>\\xad\\xc9\\xe4/?\\x08u\\x10\\x8bQoZ\\xbf\\xe4\\xc9\\xaav-\\x08a?\\x80\\xcd\\x1b\\xfd\\xbe\\xf0I\\xbf`\\x07\\x87\\xbd\\xfem\\x15\\xbf\\x08\\x89\\x04\\x0b\\xd4\\x87[?X\\x9d_D\\xb6iC\\xbf@\\x03\\xe9\\xb3y\\x88\\x11?8\\'e\\x10a\\xc4Q\\xbf0Q\\x86\\xd7\\xbb\\xe7\\'?\\x0e\\xd2\\xd4]\\xe8\\xf5)?\\xa0R\\x9dW\\xde-<?~C\\xa8\\x98\\xc4\\x0bV\\xbfL\\xb3&t9\\x808?\\x92\\xfa0\\xa1E\\xe80\\xbf8\\x8f\\x9eS\\xdc\\t@?\\x80l]\\xff\\xb1\\xfc5\\xbf\\x00\\x1dV\\xee\\x89\\xf9\\xe4\\xbe\\x00\\r\\xea\\t?\\x13\\xf0>`\\x04\\xb3O\\x7f\\xdf0\\xbf`\\xe1\\xa5oN\\x8e ?\\x00S\\x16\\x9fX\\xd8\\xf7>\\xc0\\xef\\xf1n\\xd1\\xd9i?\\x00\\x88\\xf4\\xd9\\x93\\xa7\\x0c\\xbf\\xec\\xecq\\'\\x01\\xd7Q\\xbf\\x80\\x82\\xc5\\xdb\\xc6\\xc5A\\xbf\\xa0\\xeb\\x01\\xf1=sL?`\\xeao\\x01W\\xdfH?\\x80Ht\\x1a\\x90\\xa4O\\xbf\\x08uk/\\x86\\x05E\\xbf\\xc0*\\xe0\\xd2_\\xe0-\\xbf\\x80U\\x8e\\x1d=\\xaaf\\xbf@\\xd6%\\x96<L^\\xbf\\x00\\xa0Z\\x89^\\x04M?\\x00\\xfd\\xa5~[\\x18I\\xbf ^\\x97!d\\xd0@?\\x00\\xb3\\xc3\\xa0\\xea\\x020\\xbf\\xc0\\xe6.a3\\xaf+? ,\\xd1N\\xa1\\xa9\\x0c?\\xc0\\xb7\\xc6v\\x8d\\xc06?p\\xc3\\xc8v\\xc2\\xefJ\\xbf\\x00\\xc2[\\xed\\x17%\\x10\\xbf\\x80H#\\xf6\\x9ah2?\\x00$\\xbd\\x95g.:\\xbf@\\xcdlT\\x9c\\xbbR\\xbf\\x00\\rf(\\xbb\\x04;?\\x00\\xcc\\xc4\\xbd\\xdb\\xad\\t\\xbf@\\x02U\\xa1Q\\r9\\xbf@P\\x9e\\x11\\x9b\\x99*\\xbf\\x00\\xc3\\x00\\xc9\\x10\\xb6H?\\x00\\xac\\x8dn\\x01\\xee&?@\\xc4\\xe0\\x0c\\x81\\xb5A\\xbf iN\"\\x8a\\x10O?\\x00N0d\\xde?c?\\x80\\xff\\xe1\\xa6\\xb8PD\\xbf\\xc8$w|\\\\\\x9bS\\xbf\\x00\\xd2\\xa2;\\xeb\\xef\\x16?\\xc0&V\\xaa\\xbd:P?\\x80\\x05\\xa2F\\x9e\\xe6#\\xbf\\x00\\xc8s%_\\xb8\\xf4\\xbe\\x80\\x04\\xc4\\xe6\\xd0\\xb1b\\xbf\\x98\\x87%v\\xdc\\x83A\\xbf\\x80;\\x92\\xda\\xf9T%\\xbf?|i\\xe3\\x1c\\x08r?\\x00N\\x93\\xf5!\\x04[? \\x89\\x1e\\x8f\\xe6\\x9cZ\\xbf\\x80\\x9e\\xe4\\xa0\\x03\\xa2J\\xbf\\x80\\xd0\\xa0*\\xf3\\x117\\xbf\\x80:\\xa9\\x95\\x8f\\x1eI\\xbf\\x80j\\x02\"D\\x08`?\\x00C/u\\xa4\\x93J?\\x00h\\x87v^\\x141\\xbf\\x00\\x15x\\xf2 \\x95W\\xbf\\x80\\xaa\\x86h\\xf0\\xbb[\\xbf\\x00K\\xd2Y\\xcdzT?\\x00\\x82\\x10\\xf6|9+\\xbf\\x00\\xcd~d\\xac\\xbb^\\xbf\\xc0\\xf6\\xa9\\x9b\\txh\\xbf\\x00pf\\xc6\\xd2\\x1d\\xf1>i\\xdfY\\xfb\\x87\\x1d]?\\xf0\\xb4\\xc5\\xae\\x9cOA?\\x00\\x80&\\x18I\\xab \\xbf\\xc8C\\xe3\\xe53\\xdfa?\\xa0\\x92w!j\\xff<\\xbf\\x80\\x98\\xee\\x04\\x84\\xae!?\\x00X\\xa8\\xd0O+\\x05?\\xc0k\\xbec\\x0b\\xa6D\\xbf\\x00\\xd0\\x90\\xfb\\x04/>\\xbf\\x00\\xd0\\xaa\\x89\\x88\\xcd\\xe7\\xbe\\x00\\xab\\x9cw\\xc9\\xae9?\\x00-VPQvD?\\xb0q oJ\\x8fs\\xbf\\xf4\\xa1\\x1a\\xe1z\\xb5_\\xbf@,\\xb5\\x04\\x9eH)\\xbf(\\xa5.-\\x94\\x9bp\\xbf\\xa0\\xa2fu\\xd3\\x961?\\x00\\xbd\\xc28\\xe1\\xbbH\\xbf`n\\x0b\\x00;\\xdbc?\\x00\\xba\\xe1\\xbe\\x04:\\x15?\\xe0iZc\\xb4\\xa83\\xbf\\xe0J\\x8b\\x92\\x96%\\x81?\\x80\\x94\\xc3]#hV\\xbf ]\\xb2\\xcc\\x139T\\xbf\\xb0\\xc3\\x98\\xd2-\\x9f\\x81?\\x80\\xd3\\xe3\\x13\\xe83&?0C\\xed\\x1b%\\x12Q?\\x00\\xea\\x07b2\\x97\\xc8\\xbej\\x92&Z\\x97\\xf1P?\\xe0\\x8d\\n\\xa8\\xbc\\t2?\\x80\\xe6\\x1f5\\x95\\xcf$?\\xe0 &\\xef9\\x83C\\xbf\\x00\\xa8\\x85P\\xe1\\xea\\xf1\\xbe\\xe0\\xae5\\x8eC>N?@<\\x9cQ[\\x90R\\xbf\\xa04E\\x17|pZ?\\xd0;\\xc4\\xc8,9]?\\x00\\x80\\xf6\\nZ$\\xbe>H\\x05\\xcf\\x1e \\xf9D\\xbf\\x00\\xa3\\x98lJ\\x88l\\xbf\\xc0\\xc3\\x99\\xa6\\xf5\\x92[?`|R\\xe1Z=X?@\\xc2\\xbcy\\x82\\xa0^\\xbf Y\\x91\\x05z\\xeeg?\\x80\\x9f\\xf7\\xdc\\xe6Bg\\xbf]f\\xcf\\xde\\\\\\x17\\x80?\\x80\\\\\\xd8}\\xe7\\xa8]?@\\xf14\\xd3(\\nG?@\\xd2/1\\xe6JE?\\x90\\xc5\\xe6\\xae\\x84\\xdff?\\x0058[W\\x13K\\xbf\\x00:\\xe2\\xf4\\xe4\\xfc\\x03\\xbf\\xbcB^\\x07\\x000^\\xbf\\x00N\\x93\\xf5!\\x04[?\\x10\\xe1\\xf4\\x0c\\xda \\x88?@\\xc5\\xce\\xf8\\x92\\xbcP? \\x89\\xe0\\xc2lnd\\xbf\\x80X2/\\rfE\\xbf\\x80\\xc6\\xa0k\\xdcCT\\xbf\\x00\\x80\\xeaf\\x87?\\x19?\\x80\\x82\\xe9\\x87\\x8b\\xd4A?\\x80\\xcc\\xfe\"9\\x0e_?\\x00Y\\xd9\\xac\\xf7rP\\xbf\\x00\\xc9\\xedi\\x05\\x03f\\xbf\\x00|C\\x13\\rjl\\xbf \\xef\\xf8\\xd8\\xe6\\xe2W?\\xd0O\\xb97(\\x06c\\xbf\\xc0\\xbe^\\xae\\x0c\\xf9e?\\x00\\x929\\x91^\\xc0\\x13\\xbf\\xa0`1\\x8c\\x80\\x18X\\xbf\\xd8\\xce\\xdad>\\x04@?\\x10f\\xeb\\xb6/\\x8cQ? o\\xdd\\x85i;;?@\\xf5( \\xcal\\x1f?x\\x94\\xaf\\x10\\x00\\x03U\\xbf\\x00\\xfa\\x84\\x9e\\xb3\\xa0F?@&9pcl0\\xbf\\x000\\xc83c\\x85\\xfa>@\\xba28\\xff\\xdfG?\\x00@i\\x88\\xeb\\x82\\xe5\\xbe\\x00\\xf1R\\xfaO\\xba1?l74\\x1b\\xe8{m\\xbf@\\xd9\\xd9X\\xe2\\xe8[\\xbf\\x14/@]K\\xfaM\\xbf@\\xfb\\xf9=$(/?\\x84\\xf5a\\x982\\x80b\\xbf;W\\xf7il\\x9fY\\xbf\\x08`l\\xb2AkP?\\xec\\x02!\\to\\'Z?\\x1a\\x06g-\\xa6\\xc8S?zr\\x1b\\x1a\\xa6{\\x7f?\\x00\\xdf\\x95\\xef\\xce@\\x12?\\x98\\xebN9\\x94TU\\xbfp\\xfc\\x031\\x99\\x02d?\\xe8\\x7f\\xf6\\n\\x92\\xbb`\\xbf@\\t\\xd6=\\x8e+&\\xbfZ\\xbc5\\xc6\\xbb0\\x15\\xbf\\xa9\\x07N\\x972V`?\\xccM.\\x94&=V\\xbf\\xfek\\x1c\\xb8\\xe7\\xb7P? \\xc8\\x0f\\xcd\\xf6\\xbdY\\xbf382\\xd6g\\xc1S?X\\x00\\xfe\\xf7\\xf10d?\\x00y\\xadmI\\'\\x17\\xbfPFW\\x00\\xd7\\x8dI?H3\\x9f\\xe8l\\xf4E?\\x04\\xc6\\x16\\x8c&\\xc0[?(\\xbf\\x9a\\xee\\xab\\x911?\\xd8s\\xa3}c\\xc0c\\xbf\\xe0G\\x97s\\xef\\xd2I?\\xa0\\x12\\xefL\\xcb\\x1dV\\xbf^\\x9ez\\xb5\\xc4\\xe9i\\xbf\\xd0xAa\\xba\\x86B\\xbf\\xf0%k~\\xf5\\x13@\\xbf\\x1b\\x94\\xc1t\\x17\\x05s?5\\xf2\\xe3\\xc1]t\\x91?$A\\x96\\xdb\\xd5\"q\\xbf\\xe0\\xaa\\xea\\x07\\x91\\xf3D\\xbfp\\x08\\x15Q\\x89\\xe7M?`+F\\x06\\x84\\xeaF?\\xa2\\xbf|\\x93{>k?\\xa4l\\xb6m\\xf4)P\\xbf \\x89\\x1e\\x8f\\xe6\\x9cZ\\xbf@\\xc5\\xce\\xf8\\x92\\xbcP?\\xbd\\x7fb1C\\x0c\\x96?w\\x8c\\xbc\\xeasut\\xbf`\\xaf\\x0b\\xc15t,\\xbf\\x90U\\x97\\x8f\\xbe\\xecA?\\x00\\xacr\\xb9\\x00\\x89b\\xbf\\xd0\\x92\\xeb{\\x9d\\x88V\\xbf\\xf8\\x16\\x1b\\x02\\xf4\\xc7`?\\x80\\x94E;\\xa4L4\\xbf\\xd2\\xcbZ\\x13\\n\\x05`?\\xf0\\xdfb\\xe4\\xb8\\xf7d\\xbf\\x08\\xb35)x\"M?\\x10tpU\\xbf2a\\xbf\\xa0\\xe6\\xf5\\x19\\xf3\\x91B?\\xc0H\\xa3\\x1d\\x95\\x90&?\\xfd\\xe8\\xc6@fOa\\xbf\\xb8\\x97*0\\xf8%B\\xbf\\x80~`n\\x15\\xcd??\\x88n\\xb3\\xe1\\xc1\\xc8e\\xbf\\xc8\\xd19\\xb2\\xb6^??\\xf8\\x0c\\x0c>\\x1eB7\\xbf\\xc0\\x80uJ\\x98\\xcf0?``\\x00\\xc5\\xd7\\xa1F\\xbf\\xd0\\x83\\x8f\\xfe\\xc6+I\\xbf\\xa8\\xe7\\x97\\\\7\\x8aJ\\xbf\\xc0\\xc6\\xb8]_\\x00\\x1d\\xbfp>l\\x17O\\xba[?X\\x15\\x9a\\xd6h\\x9fS\\xbf|L\\xe4\\xeb\\x10\\xd5@?\\xea\\x19}\\xe2\\x05\\x85W?\\xf4\\xe2\\x88\\xd9\\xee\\xd6`?\\x80\\xd7\\xab\\x04>\\x04\\n?4\\x88\\xdd\\xaa\\xef\\xe6H?\\x00\\x13\\xe4\\'V\\xe4\\'\\xbfh PO_\\x9c!?&\\x94\\xb8e\\xa1\\x85A\\xbf0%*\\x14e\\xe4o?\\xb0\\xe3M\\x9f\\xf0\\x88^?\\xd0h\\xd8c\\xaa\\xb6E\\xbf\\xa0\\xa2MB\"\\x8c{\\xbf\\xac\\x16\\xda\\xea\\x83JH?@\\xf3\\x13\\xbf\\xe4\\xa9=\\xbf\\x00\\xb4\\x07\\x98\\xeb\\xb2\\x9c>\\x91\\xaf\\xca\\x1aj\\xeaT\\xbf\\x0cG\\x9d+\\x12\\x961?|&\\x97^\\x0c\\xaf@?\\x00\\x8a\\x8dd\\xe0\\n\\x00\\xbf\\xe0oQ\\x8c\\x98u=\\xbf\\x00\\xe2\\x9eM\\xc1U\\x11?\\xc0\\x00\\x13\\x7f\\xf4\\xb6H?@.C\\xf3\\xe8~D\\xbf`\\xda\\xc4\\xeal/@\\xbf\\x08\\x9c\\xee\\xd6\\x04\\xa0@\\xbf\\xd0\\xfd\\xa2\\xa6\\x8a\\xf8/?\\x80k?\\xc8>\\xa89?@8\\xe8\\x8c\\x84\\xf7<\\xbf\\xdc\\xe1\\x80\\x92\\x17~P\\xbff\\t\\x13\\xfb\\x90\\xaeT?\\xc0\\xf0\\x9c\\xe9)\\xd6O\\xbf\\x00\\xe8\\xb1\\xa7\\xa9s\\xee>\\xd1.\\xdc\\xc0U\\x03`\\xbf=g\\xd4#+}w\\xbfhn0\\xa0\\x1f$J? \\x97\\xda\" \\xa1(?P\"\\xd2H\\xc1\\xb9Y\\xbf\\xc0\\x8ai\\xbc\\xd4\\x8eD?.\\xcd\\x922\\x99q@\\xbft)\\x13\\xfa\\x85DE?\\x80\\x9e\\xe4\\xa0\\x03\\xa2J\\xbf \\x89\\xe0\\xc2lnd\\xbfw\\x8c\\xbc\\xeasut\\xbfx\\x022\\xbe\\x84Rr?\\x00\\xb5`e1\\x18=\\xbf\\xc00\\xe1\\xae\\xdc\\x18E\\xbf\\x00\\xc5\\xb3\\x92\\x08\\xbb:?@\\xf3\\x85\\xe2\\xf1H-?\\xa0\\x95\\xa4\\x05\\x96\\xaf\\\\\\xbf\\x80\\x03Bs\\'\\x16S?\\xc00\\x86\\xa4\\xdc\\xf4\\'?@\\xa3t;\\xa0\\x06H?`$\\x19$n\\x048\\xbf\\xa8\\xaa\\xd9L\\\\\\xa6_?\\x80\\x88\\xe1d\\x9e\\x97H\\xbf\\x807\\xdc\\xd8\\xc4g-?<1\\xa4\\x1b\\x8aw6?@6\\xda\\x18+\\x16\\x1b?\\xc0\\x05\\xf6\\xe8+6 \\xbf`\\x1b\\x15\\xc9\\r\\xd2\\x12\\xbfk\\xd5\\x1c#D\\xf4<\\xbfT\\x84P\\x8a\\xbb\\xd7A?\\xd0<\\x88\\x8a\\x9b$C?\\x00\\xf1\\xc9\\xb2y\\xca\\'?\\x00\\xe0\\x9b\\xc5\\xbb\\xd5\\x0c?\\x80\\xdd\\xc6\\xf7z\\xc42?\\xc0\\x92\\x8bQ\\xd76&?\\xc0\\xbfm\\x06\\x93G:\\xbf\\xa8\\xd6\\xfc <\\x1bf\\xbf\\x93U\\xf2 j1S\\xbf*\\x9d\\xe74k\\xe95\\xbf\\x00v\\x14\\xa4\\xa1\\xdch?\\xe0\\xf7\\xe4\\xf3\\xb4eA?\\xf8\\x1c\\xe0\\xc7X\\xf6K?\\xd0\\xaf\\xbe\\x8d\\x14\\xedF\\xbfj\\xa3\\xe3\\x0f\\x02\\xe3L?F\\x8du\\x9fT\\xf9:?\\xb0\\xd8\\xd6\\x8c2vR\\xbf\\x80\\x05)TG<1?\\xe8\\xa1\\xf66\\xf36D?\\x00\\x0b*\\x93$(,\\xbf\\xec\\x86\\xf5\\xf5\\x8e%f?\\x809\\xd8\\xd3\"\\xa1\\x0c\\xbf\\xfa\\xc5\\x9cPD\\xe5#\\xbf\\xdf\\xac:{\\x81\\xf1#?p\\xf5\\x10V\\x1bD\\x1f\\xbf\\x0e\\x05\\xd6j\\x88\\x87g?\\xb0\\x85\\xba\\x17\\xb1\\xcb??-\\xe1q\\x06oTd\\xbf\\xc0J\\xd2\\xd7\\x04\\x17c\\xbf\\xe8\\xaa9\\xfb\\xb2yV?\\xf0\\xca)\\x1a9\\xb3S\\xbf\\xc0\\xf3\\xa6\\x93\\x8ea\\x14?Dl\\xe3\\xfb\\xf3\\xd3D?@\\xc5lX\\xddg\\x05\\xbf\\x80@\\x17\\x9c\\xcf<T\\xbf\\xd0\\xdeX\\xb5\\x99tO\\xbfV\\xe5X\\x12LEj?$\\xc85B\\xbcb<?@\\xbb5\\xe8\\xe0\\x82V\\xbf\\xd0\\x1eh\\x1f\\xc6\\x8fR?\\xcb@(\\xe9\\xf2\\xd1X\\xbf\\xe8\\xee\\x9c:\\x83\\xcbB?\\x00\\x9d6/->\\x15?\\x18@\\xeba\\xb2\\xf3>\\xbf\\\\q\\x88\\x8b\\x03EV?\\x80\\xe8\\x8bM\\x8a\\xf18\\xbf\\\\<\\xcb\\x01e\\x1c:\\xbfp`qf\\xf2\\xc3.?\\x80\\xd0\\xa0*\\xf3\\x117\\xbf@X2/\\rfE\\xbf`\\xaf\\x0b\\xc15t,\\xbf\\x00\\xb5`e1\\x18=\\xbf\\x15)_b\\xa9[p?x)Q\\x10\\x0c\\xb8a?\\xe0\\xcf[\\x96\\xe0\\x85Y\\xbf\\x00|\\xb6\\xf2\\xb9\\xa8\\xf3\\xbe\\xb0h\\x06\\x05\\x10\\xb3X?\\x00\\xb5\\\\x\\xe8!K\\xbf\\x906\\xd9\\x93\\xa8\\x06a?@w\\xcaJm\\xbbG?\\xf8\\x85\"\\xf2\\xaa\\xfeH\\xbf\\xfc@D4\\'2Q?\\x004\\xbd\\r\\xdc\\xb6Z?\\x00\\x08\\\\\\xd3q\\'\\r\\xbf\\xf5E\\nAu\\xb97? \\xd9\\xfc\\xbaz/J\\xbf@\\x07\\xa19\\xab\\xde+?\\xfcx\\xb9\\x1aU\\xb4C\\xbf\\xf7Z\\x17\\x10\\xc7DI?<\\x94\\t\\x0e\\xe1!F\\xbfh/<g\\x00\\x91W\\xbf\\xc0\\xd0\\xef\\r-\\x14=?\\x90\\x87y\\x0e\\x9d\\xf2G\\xbf\\x10\\xd4z\\xc8)eA\\xbf0\\x81F\\xc8d>?\\xbf\\x00\\xa4\\x9c\\xde\\xe7\\xbc\\x0f\\xbf\\x00\\'\\x12\\x85\\x06\\x8cz\\xbf\\xbc\\x89\\x9b\\x88\\xf8\\xa2C\\xbf,\\x82\\xdc;\\xa1\\xa5:?\\xca\\xc0\\xeb\\x9a\\xf2z\\x81?X\\x8a\\xcb\\x8b\\x9e,]\\xbf\\xc0b\\xe9\\xa0\\xb2XB?\\x00\\x9e\\x03\\x01XQ4\\xbf\\ny$\\x02\\x15\\x10e?\\xe0\\xa1|\\xa2\\xc2^\\x05?\\x00\\xbd\\xf8Z\\t\\xf4W?\\x90b\\xc2@S\\x0fl?\\xe0G5-\\xf8GA\\xbf\\x00\\xa2\\xbd&w\\xcd8\\xbf\\xc6\\xebg\\xc3\\xb4\\x0ce?\\x00j\\x14\\x86Z\\x05<\\xbf\\xb4\\xe5\\x0c\\x06C\\x8c8\\xbf\\xaa\\xc5\\xd8\\xbe\\x8b!1?\\xd0!)!\\xc2rC\\xbf\\xd0\\xa9\\xda\\xd8\\xc1tP?\\x00\\x80\\n\\x89\\x9f\\x1aD?\\x86\\xce\\xa2\\x9f\\xe3\\xc5P\\xbfh\\xd0\\xbf\\x1a\\xd5\\x05e\\xbf\\x00\\x85\\x8e\\xc0\\xc4JP?\\x90l\\xda2\\xa5Ma\\xbf\\x00\\xd2:\\xa8S\\x8e\\x0e?\\\\,<bO\\xd0T?`7\\xd6\\xdcli,\\xbf\\x00\\xd6{\\x0c\\xb8=+\\xbf\\x00T\\xf5\\xee+\\xd7\\r\\xbf\\xbc\\x1d,\\x88\\xbcec?@qe6\\xe5aB\\xbf\\x80|O(A&a\\xbf\\xf0\\x92\\xde\\x8c \\xaad?\\x00&K\\xd9\\xea\\xd5\\xf9\\xbe\\x00\\xb7jx\\x95\\x92\\x1f?\\x00p4|H\\xef\\xda\\xbe\\x80\\xc8\\xd9\\x92\\x94\\x1c)?XL\\xd0\\xb7D\\x98h?\\x00\\ryr\\n6G\\xbf\\xe0\\xab\\x1a\\xe9:\\xd7\\x13\\xbf\\x80\\xe2\\xabe\\xd3@\\x02\\xbf\\x80:\\xa9\\x95\\x8f\\x1eI\\xbf\\x80\\xc6\\xa0k\\xdcCT\\xbf\\x90U\\x97\\x8f\\xbe\\xecA?\\xc00\\xe1\\xae\\xdc\\x18E\\xbfx)Q\\x10\\x0c\\xb8a?\\x87M$O<\\xbe{?\\x00\\x00P7\\x89\\xdfR\\xbf\\xa0\\x8c\\xb9\\xae\\xc4\\xaaQ\\xbf\\x00F\\xf4\\x0e(\\x82]?\\x00\\xf8\\x07\\xb81\\xf9P\\xbf\\x00\\xc9\\x0e}C\\x90[?\\xc08\\x1e\\xe7\\x05Dn?\\xd0\\x92\\xef\\n\\x89\\xcaS\\xbfpx\\xf3\\x89\\x87 R?\\xa0;_\\xe2[lf?\\x00N\\x82P\\xf9\\xb7\\x15?\\xd4\\xa3\\x81;\\x95?>\\xbf0\\xaa>\\xc24\\xe6%?@\\xb1*\\x7f\\xf9\\x0e<\\xbf\\xcc(.\\xfa\\xda\\x12Q\\xbfh\\xaa\\xbac\\x7f\\xb2E?(\\xfa\\x08\\xbb_\\xfeS\\xbf\\xe0\\x8fA\\x04\\xda]`\\xbf\\x00\\xd3(|Yc:?\\x00z>5)\\xe2E\\xbf \\x8b\\xb7%8\\xa6@\\xbf\\x80\\x1eN\\x94\\xf0\\x192\\xbf\\x00\\x83\\xfa\\xc5\\x1bw;?\\xe0O|)\\x1f\\xfcq?\\x00S\\x17\\xd1\\x84\\xcaO?@\\xfa\\x991\\x05&\\'\\xbf\\xe0\\xddK\\xeaZ\\x05a\\xbf\\x00\\xf0\\x82\\x85\\x9b\\x15C?\\x00\\xb6kc\\xe6{*?\\x00) \\x15\\xdb\\xd9A\\xbf\\x00I\\xab\\xac\\xa4\\x93Q\\xbf\\xe0\\xb3\\xb2\\x90\\xdf3B\\xbf\\x80\\xf9J\\x1f\\xbf\\x95q\\xbf\\xc05\\n[(\\xfe^\\xbf\\x80\\xae|\\x8c\\xea\\xacH?\\x00t\\xb7\\xab\\x9938\\xbf\\xc0\\x0c\\x91\\x80K|D\\xbf\\x00\\xf8\\xf9\\xd5\\xa9o\\x14\\xbf\\xb0\\x86\\x9fN4$0?\\xf8\\x8a=\\xd2\\x12`4\\xbf\\xa0\\t\\x0c8:~2? \\xb2\\xf3F\\xa3|U\\xbf\\x00\\xc0W\\xa7YJ\\xda\\xbe\\xd0\\x81\\xed\\xf7\\xb1\\x0eQ?\\x00\\xfd\\xed\\x7f\\xad\\x94,?\\x80\\x06J/\\x9a(X\\xbf\\x00 \\xa5\\xf9y\\x9e\\x10?\\x80\\x82\\x1a%\\xff\\x027\\xbf\\xa0\\xe9Q\\x9f\\x9a^F\\xbf\\x00\\xa6>\\xe4\\xfb\\xbf\\x1a\\xbf\\x00\\x98\\xb7w&n]?\\x00\\x80\\r0\\x8330?@\\xa22\\xba\\xaf\\xd4\\\\\\xbf\\x10@\\xb3\\xcb\\xd3\\x93Q?\\x00\\xc6\\x06\\xe2h\\x80^?\\x00\\xc4l\\xc3S_4? za\\x08\\xfa\\xd3C\\xbf \\x14\\xc6\\xcb\\xe9\\xcdR\\xbf\\x00 w%\\xfdMM?\\x00T\\x01\\x17nV%\\xbf\\x80G\\xb7g\\x86\\xafW\\xbf\\x00\\xcaGO5-M\\xbf\\x00Ka?\\xd3\\x8a=\\xbf\\x00\\x0f>\\xad\\xc9\\xe4/?\\x80j\\x02\"D\\x08`?\\x00\\x80\\xeaf\\x87?\\x19?0\\xacr\\xb9\\x00\\x89b\\xbf\\x00\\xc5\\xb3\\x92\\x08\\xbb:?\\xe0\\xcf[\\x96\\xe0\\x85Y\\xbf\\x00\\x00P7\\x89\\xdfR\\xbf\\xff\\xf9x\\xb7d\\xc7t?\\x00\\x0c}\\xeb;\\xf2J?\\x80\\xe6\\xc8\\x0171V\\xbf\\x00\\x90\\x81\\x03%\\xd3R\\xbf\\x00{1\\x10\\xfd\\xa5Y\\xbf\\x00\\xd4Vw\\xb9\\n>?\\x00s\\x86:\\rFF\\xbf\\x00\\xf4\\x86\\x84*\\xcf5\\xbf\\x00\\xf0\\xb3i\\xa4TU\\xbf\\x00\\xd6#l\\xd0\\xc0(?\\x88\\x9b4\\xab(\\xb0c?P\\x8f\\xac%S\\xe9M?\\x00\\xa6S\\x10\\xe7\\xaf!?p\\x86\\x7fK\\x89\\xd2a?\\xa0\\xf9\\xf5m3\\x1a@\\xbf\\x00t\\xcd>\\x8c\\x89;?\\x000(\\x85\\xb5\\xaa\\x17\\xbf\\x00^\\xf0\\xf6o\\xe5A\\xbf\\x00p\\xfbb(\\x0e7\\xbf\\x00\\x8c\\xc6\\xd6j\\xff\\x10\\xbf\\x00\\xd8\\xff\\x9f\\xe7\\xb1B?\\x00\\xd0\\xb4rn\\xa9=?`\\nr\\x93\\x9e\\xd9h?\\x00\\xd8\\xe5\\x9aa\\x06\\x13?\\xbc\\x91/\\x14\\x1c\\xd3I\\xbf@\\xb9\\x1a\\xbf\\xf5me\\xbf\\xe8\\x164\\xb3\\x91TP?@@\\\\\\xc3y\\x1c/?\\xc0\\xe7\\x01\\xc9NlR\\xbf\\xfa\\xf3\\x84}\\x94OR\\xbf\\x8c\\xaa^{\\xe1\\xc4@\\xbf\\xc0\\xc8\\x86\\x90\\xa7eh\\xbf@\\x13[\\x13\\xac\\x8dV\\xbf\\xc0\\xd4\\xfb\\x1d\\x82\\xc7>?@\\xbe]\\x82T\\xe5f?`\\ne3\\x8d\\xf8:?@\\x93\\xf9\\xbd\\x88\\x81\\'\\xbf\\xa6\\x87lT\\xb8\\xa5;\\xbf\\x80\\x83\\x95\\x1c/]\\xe9\\xbe\\xb0h\\xc4g\\x92o(?\\x00\\xa3\\n\\x0c&\\x91\\xfb>\\x80\\xe2\\xd6i\\xb3M:?P|\\xdc\\xdd\\x83[@\\xbfH\\x01\\r\\xca\\xe9\\xda`?\\xc0\\n:\\x93\\xfa\\xcf\\\\\\xbfp\\xf9:P\\x1a,g?\\xe0\\x16\\xcb\\x9dqM8?\\xe0\\xd9\\x08\\x8eD\\xafG\\xbf\\xd0\\xc3\\xaf\\xed\\x8d\\xdd)\\xbf\\x80&r{\\xb2\\xc5A\\xbf\\x00/yz9o;\\xbf(\\xcf\\x13\\xde\\x1a\\xcdR?\\\\\\x95x\\x87\\\\\\xdf_\\xbf\\x00\\xa2v9\\xb9nf?85E\\xf4\\xa0\\x00p\\xbf\\x89\\x13\\xf6U_\\x11i\\xbf\\xc0\\x04F.|<?\\xbf\\xc0\\x1cety\\xb7*?@\\xa65q4\\x12,\\xbf`\\xf7@K\\xcf\\xf1=?\\x00\\x9c=\\xeb\\xa2\\x9e\\x1b?\\x8c^\\x077\\x91WF\\xbf\\nu\\x10\\x8bQoZ\\xbf\\x00C/u\\xa4\\x93J?\\x00\\x82\\xe9\\x87\\x8b\\xd4A?\\xd0\\x92\\xeb{\\x9d\\x88V\\xbf@\\xf3\\x85\\xe2\\xf1H-?\\x00z\\xb6\\xf2\\xb9\\xa8\\xf3\\xbe\\x80\\x8c\\xb9\\xae\\xc4\\xaaQ\\xbf\\x00\\x0c}\\xeb;\\xf2J?\\xcfb\\xdc\\xf7z\\x93q?\\xd0\\xf8\\'oV\\xd8`\\xbf\\x00\\xae\"\\x93\\x9f\\x93O?\\x80\\x11&\\xa1kC3\\xbf@\\x08\\x9d\\xda\\xc8\\x81S\\xbf\\x80\\xdfQ\\x90\\x81\\xb00\\xbf\\xa0\\xd7\\xe3\\x87*>_?\\xc0eH\\xa2,\\x8fT?\\xa0\\xfd\\xcc\\x93|\\xe3A?\\xe0u^4\\x16UM?\\x18D\\xd3L\\xa1<E\\xbf\\x00\\xe0\\x88\\xa0\\xf8mZ?l/6\\x9c_\\xceU?$\\xb5.\\x15\\x8d9;?pgV\\xd5\\xd5\\xa11\\xbf\\x00D\\x8f\\x87\\xf8\\x07\\x0f?@\\xe4d0|\\x976\\xbf\\x00\\xa0U\\xbe\\xff\\x80)\\xbf\\x00\\x99g\\xfaW5\\x19\\xbf\\x00\\xc0\\x19\\x84\\xd7\\xc4\\t?\\x00p\\x14M\\x90\\t\\xf0>`L\\t\\xd8\\xa7n\\x83\\xbf\\xd0g\\xfd\\xd6\\xef7b\\xbf\\xe0\\xe7@h>\\xa9\\x18?\\xcc\\xd5\\x0b\\x919\\xcfx?\\xa0\\'\\r\\r\\xed\\xbcJ\\xbf\\x80\\x051d\\x9c\\x85\\x1d? y\\x02}[\\xbdR?\\xb8`\\xf4x\\xe6\\xeef?\\xf0\\xcc\\\\\\xad\\x87\\xb9%\\xbf\\x80r*\\xc8%\\x89I? \\xf1GL\\xec\\xa0l?`\\xf1\\x95\\xc0H\\x91C\\xbf\\x80\\xc6\\x99Rl!Q\\xbf\\x8c}\\x19]\\x8c\\x1fg? a\\xed\\x8e\\x1f\\x81G\\xbf\\xb0r\\xc5\\xa8\\xe7\\xc9(?}\\xcat\\xf1\\n\\x1c@?\\xd8BG\\xc6D\\xfe=\\xbf\\xd8\\xba\\x88\\xb2\\x10\\x8cL?\\x80n\\xbc\\xa5uF(\\xbf\\x80y\\xbf\\xc6\\x91$-\\xbf\\xc0X\\x16J\\xb8M4\\xbf@\\tUW\\xa8hR?`\\x8e\\ns\\xf2\\xddP\\xbf@\\xe6\\xd6\\xdc\\xde\\x0f5?$h\\xfd\\x9c\\x93&X?@U\\xe2\\x1fz\\x85*\\xbf\\x80\\xda\\xac\\xba\\xe6>??`~p\\xc0\\xcf\\x94V?\\xa8T\\xc4\\xa4\\xe9[a?\\x88\\xea\\x89\\x05 \\xb1@\\xbf`\\xcbP\\xe4\\xd4>U\\xbf \\x8f\\xe8`\\xeasa? 0\\x00\\xc7\\xbb\\xb9_?\\x90AW\\xbf\\xe3\\x9bf?\\x00M}S\\n\\xb2#?@\\xce\\xac\\x80\\x94X,\\xbf\\xd0\\x99r\\xe8\\xa6\\xcdP?\\x00\\x81@\\xab\\xa0\\x8bK\\xbf\\xf0\\xfb\\xcc1Ah(\\xbf\\xe4\\xc9\\xaav-\\x08a?\\x00h\\x87v^\\x141\\xbf\\x80\\xcc\\xfe\"9\\x0e_?\\xf8\\x16\\x1b\\x02\\xf4\\xc7`?\\xb0\\x95\\xa4\\x05\\x96\\xaf\\\\\\xbf\\xa0h\\x06\\x05\\x10\\xb3X?\\x00F\\xf4\\x0e(\\x82]?\\x80\\xe6\\xc8\\x0171V\\xbf\\xc0\\xf8\\'oV\\xd8`\\xbfo\\xcb\\x99>\\x97\\xf6}?\\x00\\xf7BtS#[\\xbf\\x00L\\xff\\xe4\\xa4\\xba\\x05\\xbf\\xc0O~9\\xee\\xb1^?\\x003\\xbd\\x89\\xfd\\x07\\x18\\xbf`\\xe4<\\xbe\\xd8\\xa0Q\\xbf\\x00B\\x9f\\xc4\\xbf]`?\\x80P\\xc5\\x9dB\\x8d5\\xbf\\xfe\\xd3=/\\\\\\xaaI\\xbf@\\xd05\\xce\\xc4\\n\\x13\\xbf\\xc0\\xbcC\\x10\\xed\\xbd>\\xbf\\xa0\\xf5\\x06Uc\\xd1F\\xbf^\\x8c9\\xe7\\x03\\xfaE? \\x88FH\\xb7>U\\xbf\\x80\\x9e\\xc1\\x85\\x8d\\xa9R\\xbf\\x80\\x89\\xbaC\"e0?\\x00\\xa8UG\\x12\\xdc\\x15\\xbf\\xc0X\\xf1\\xf7*\\xf5B\\xbf@\\xc5\\xa0\\xf4\\x85\\x864\\xbf\\x80\\xcbhz\\x96\\xfb4?\\x80\\xe2\\x97\\xec\\x95(Y?\\x80R\\x00\\n(\\xc87?@\\x1dc\\x00:\\x8b4? \\xc2\\x18\\xd9\\xe4\\x12a\\xbf\\x00\\xc4\\xaf1\\xfb\\xc3\\x17?\\x00\\x1aMf\\x13B&\\xbf\\x00\\xae\\x0b\\xdb\\x90\\x9b2?`\\xe4g\\x8e\\x9dUB\\xbf\\xb0\\x1b\\x1f\\x0b?\\x88:\\xbf\\x00`\\xbd\\xf4i\\xcf\\x00?\\x80\\x811\\xc9\\xb1fB\\xbf\\x00\\xff\\xfd!\\xf6\\xd6=\\xbf\\x80\\xaa)Nn!l?\\x80\\xaa\\xee\\xfb\\xa2%U\\xbf\\x00n\\xf2\\x11\\x8b)??\\x80&V\\xe5\\x16H%\\xbf@\\xac\\x0bC)\\xb8(\\xbf\\x00\\xda\\xbe\\x9eec\\xff>\\x80\\xf2\\x85\\n\\xfbD3\\xbf\\x00pL\\xbf3\\x12\\x1c\\xbf\\xe0k%\\xd5\\xef\\xbeM?\\xa0\\x7f\\xa2\\x81s\\x8bR?\\x00\\x08\\x82\\x7f}rK?\\x00\\t\\x0c.v\\xd91?\\x00&&J\\x91t\\x1b\\xbf\\x80\\xc3/\\x8c\\x9d\\xa94\\xbf\\x00\\x98\\x037H\\x88\\r?\\x00t\\xeb\\xb8\\xcdx+\\xbf\\x00\\x84\\xdc\\xd6*\\xeb4\\xbf\\x00\\xe6\\x9c\\n\\xad\\xecP\\xbf\\xe0?\\x14\\x7f\\xea\\xf2M\\xbf\\x00\\xc9\\xc5\\x9cU\\xbbR\\xbf\\x00P\\xa2\\x9f\\x98\\xe9\\t?\\xc0\\xe3\\xae\\x9a\\x82\\x00M?\\x00\\xcb\\xbc\\xfd\\x832N\\xbf\\x00\\xf7\\x9b[\\xfd1B\\xbf\\x00H\\x00\\xcf\\x8d-7?\\x00\\x9ex>K\\xd5;\\xbf\\x00h\\xefp0\\xaf[?\\xc0(4`\\xeb\\x9bB?\\xa0\\xcd\\x1b\\xfd\\xbe\\xf0I\\xbf\\x00\\x15x\\xf2 \\x95W\\xbf\\x00Y\\xd9\\xac\\xf7rP\\xbf\\x80\\x94E;\\xa4L4\\xbf\\x80\\x03Bs\\'\\x16S?\\x00\\xb5\\\\x\\xe8!K\\xbf\\x80\\xf8\\x07\\xb81\\xf9P\\xbf\\x00\\x90\\x81\\x03%\\xd3R\\xbf\\x00\\xae\"\\x93\\x9f\\x93O?\\x00\\xf7BtS#[\\xbf\\xff\\xf4\\\\\\x9e\\xda\\xe0s?\\x00\\xa0\\xde\\xcbsM\\xf2>\\x00\\xee\\xcc\\xbe\\xdd%R\\xbf\\x00\\x9d\\xf1\\xef\\x0c\\x0fL?\\x00\\x89\\xd2\\xa6\\xbd|Z?\\x00\\x1c\\x8d\\xe8\"\\x837?\\x80\\xe0*\\xffn\\xaf@\\xbf\\x98\\xb4N\\xc9\\xc3=U\\xbf\\x00Z\\xd2u\\x1eI\\xfd\\xbe\\x00\\x88\\x83\\x0b\\xbdS3\\xbf\\x90\\xa4R\\xd5\\x8a\\xae^\\xbf\\x80\\x84B\\xf8$\\xa5/\\xbf`\\xa6\\xd9\\x0e\\xdbzV?\\x00*\\x18\\xf7\\xb5eB?\\x00\\x90\\xa6\\xfd\\xb4\\x997?\\x00\\n\\xcb\\xfefv@?\\x00L\\xb4\\x9a\\x0c\\xcd>?\\x00x\\xfa\\x0f\\xd8E\\x1b\\xbf\\x00\\x9eCd\\x89\\xb7D\\xbfp\\x9f\\x99\\x82\\x1evq\\xbf\\xf8Y\\xa2A\\xb6\\xe8B?.\\x04\\x9d\\xfe\\xe8LC?8\\xca\\xf2h\\xd3gp?P\\xd3M\\xb6\\xdf!V\\xbf`nG\\xe1{\\t.\\xbf@\\x0b\\x93\\x94\\xdb\\xb35\\xbf\\xc42\\xd1\\xe0\\xaeCP?L\\xdc\\x93V\\xf6e<?\\x94\\x94\\xdaTu8\\x80?\\x00\\xc0\\xa0\\xd2\\x1a\\x8bn?\\xb0\\xdf\\x91f\\rZX\\xbf\\x80\\xf8\\xbd\\x03\\x93\\x80h\\xbf0\\xcc2\\xa0%\\xc4F?0\\x84^\\xb9-\\xedF\\xbf\\xa4\\x88\\xa4n\\xe4EH\\xbfT+H\\x97\\xc1pC\\xbf\\x00\\x13\\x97T\\x94\\r\\xe7>\\x14\\xee\\xbe\\xd0k\\xc0O?@\\xbd\\xc1\\x15L\\x918\\xbf\\xd0\\x15\\xfb*\\xdd\\xa1;?\\x00\\xc3\\xd6Lr\\xdd\\r\\xbf@z\\x8e\\x10r\\xeaG?\\xb0\\x18\\xaa\\x10S\\xae]\\xbf\\x00\\xca\\x9e\\x82`$\\x17\\xbf\\x90\\x16\\x9d\\xc3[\\xa2\\'?h\\xf7`\\xbf\\xdf\\xf8+?\\xc0^\\x9fv;%N\\xbf@\\x1f)\\xc9g\\x1a1\\xbf\\xc0\\x80\\x0f\\x91\\x02\\x96U\\xbf\\xd0\\xfb\\x1f\\xbb\\x8f88\\xbf\\x08\\xcbI\\xaf:\\xbfa\\xbf0U\\x91\\x83\\x04\\xcfZ?\\xd2\\xb2o7\\xa6\\xd1Z\\xbf@\\xae\\x12\\xe2G\\xa3#?\\x00q-\\xbb0\\xd6H\\xbf@\\x82\\x98\\x01E\\xa3\\x13?\\x80\\xa8\\xa19\\x97\\x1a*?\\x80\\xfdc\\xfd\\xedYR?\\xd8r\\xa6\\xab<\\xcc/?`\\x07\\x87\\xbd\\xfem\\x15\\xbf\\x80\\xaa\\x86h\\xf0\\xbb[\\xbf\\x00\\xc9\\xedi\\x05\\x03f\\xbf\\xd2\\xcbZ\\x13\\n\\x05`?\\xc00\\x86\\xa4\\xdc\\xf4\\'?\\x906\\xd9\\x93\\xa8\\x06a?\\xf0\\xc8\\x0e}C\\x90[?\\x00{1\\x10\\xfd\\xa5Y\\xbf\\x80\\x11&\\xa1kC3\\xbf\\x00L\\xff\\xe4\\xa4\\xba\\x05\\xbf\\x00\\xa0\\xde\\xcbsM\\xf2>\\xda\\xc2\\xfb#\\xf3\\x9c\\x84?\\x00\\xd1#\\x02\\xc2\\x9e1\\xbf\\xfc+!\\xec\\xf1\\xb9`\\xbf\\xb0B\\xb0\\xe0\\x07Wp?\\x00\\x8d\\xa9\\x08\\xc3$$?\\xc0\\xd0\\x1c\\x96\\xa1\\xe8E?\\x97\\x16x\\xa2kGZ?..\\x828\\x87VI\\xbfp\\xacX\\xb7\\xd0\\x8dS\\xbf0\\\\R\\x8aj\\x0f3?R\\xc2\\xdd\\xac\\x89\\x88=?@33>kGA\\xbf\\x10\\xcc\\xe3\\x92\\x92[R\\xbf\\x80\\x8cmZ\\xa1\\xb0:?\\xa0\\xf2Z.\\xd9\\xb0G\\xbf\\xb0E/\\x06\\xc7\\xc2G\\xbf\\x00\\xe8\\xc7\\xbf\\x9a\\x04\\x0b\\xbf\\x80\\xaa\\x8a7\\xb8\\x81E?\\xc0\\x85\\xe4+|}G\\xbf\\x00c\\xfc\\x9dG\\\\G? \\xd4[\\x92E\\xee.\\xbfX7\\xf4\\x94O\\xbf\\x87?P\\xe8\\x07\\xe0\\x89\\tR\\xbf\\xe0%\\x1c\\xf3\\x00\\x17X?\\x80\\xf5\\xdc\\\\9\\x8cj\\xbf\\xe0d*!\\xf7\\x93_?8`\\xa4\\xc3\\x81\\xc14\\xbf\\x00S\\xf8e\\xbd\\xafy\\xbf\\xa0\\xc47\\x08&\\x08j?@C%e\\x89SM? 9R\\xf9\\xea\\x96v\\xbf\\x84{\\xcf\\x07~\\x8em?`\\x99\\xb5\\x93\\xf5\\xa7V\\xbf\\xc0\\x16\\xcb\\x9f\\x99]A?2\\xcb\\xb8\\xf2\\xceSN\\xbf\\x10\\x12\\xa5\\x83:\\xb3<\\xbfl^\\xa4&(\\xe4d?\\x00\\xc2=Q\\x1a\\x13C?\\x00\\xa2b\\xda\\x9e\\x05N\\xbf@?\\xa6,\\x08\\xcdA\\xbf\\x00\\x8f\\xd6\\xa1S\\x074? \\xa1y\\xdce2d\\xbf\\xc01&\\x84\\xb0\\x1dL\\xbf@\\x00X\\xbe\\xd4\\x9c??\\xb0\\xca\\x84l\\xb4\\xcc4\\xbf\\xa0m\\x85\\xb5\\xcb\\x00a?\\x00 \\xfa\\x80\\xd8\\xe2-\\xbf\\xe0G2\\xb69\\x8eJ?\\xe0m\\xdc\\xd4vrF?\\x80\\xac\\xa5l\\xd4\\xa8O\\xbf\\xa0\\x88\\xbb\\xe6N\\x9ak?\\x00\\xa7jC\\xb4\\xf5i\\xbf(}\\x0e\\xe5\\x93\\x84c\\xbf \\xc8\\xa7\\xd7)&W?\\xa0\\xe0\\x00\\x89\\x8b)@\\xbf\\x00e\\x12C\\x9f\\xba7\\xbf\\x80\\xa6T\\x05\\xca\\x91e\\xbf\\x98\\xca\\xf3\\xae\\x18\\x86R\\xbf\\x08\\x89\\x04\\x0b\\xd4\\x87[?\\x00K\\xd2Y\\xcdzT?\\x00|C\\x13\\rjl\\xbf\\xf0\\xdfb\\xe4\\xb8\\xf7d\\xbf@\\xa3t;\\xa0\\x06H?@w\\xcaJm\\xbbG?\\xc08\\x1e\\xe7\\x05Dn?\\x00\\xdcVw\\xb9\\n>?@\\x08\\x9d\\xda\\xc8\\x81S\\xbf@O~9\\xee\\xb1^?\\x00\\xee\\xcc\\xbe\\xdd%R\\xbf\\x00\\xd1#\\x02\\xc2\\x9e1\\xbf\\x18\\xd3\\x9c\\xc9\\x08*\\x93?H6r\\xeeo\\xabr\\xbf\\x80\\x84Bz]>:\\xbf\\xc0\\'X\\xc0\\x1d\\x88\\x7f\\xbf\\x80\\xa4\\x9c\\xb2\\x8f\\xa0V?(\\xf6qw\\xe3\\x06s?\\x8c\\x86\\xeb\\xae\\xd0\\x8bY?\\x90$\\x07\\'\\xbbQk\\xbf`cc\\x8d\\xc8gR?h\\xb5\\xf4\"\\xfd\\xbfB\\xbf`\\xc4s$\\x1a\\xaaL?@\\xf2\\xc5\\xaeI\\x19l\\xbf\\x00xP\\xd9\\x14%\\xfd>\\x00\\x92\\xd1\\x9e\\xbd\\xcfG\\xbf@\\x97G\\x1e\\xe1\\rM\\xbf\\x00\\xdcyqn\\x87\\x16\\xbf\\x80m\\x03\\x10\\x99\\xbeA?\\xa0))s\\xf7XJ\\xbfD\\xa7\\x05\\xa9\\x18.J\\xbf\\xd0i\\x9c~\\xf6\\xd52?Tnm\\xb4\\xc8\\x05b\\xbf@\\xb5\\x90\\xe7\\xe9\\xda;?\\xc0\\xdbd\\xe0\\xf3\\xc6,\\xbf\\x90\\xa8\\xc9\\xbb\\xe4:U?\\xd8\\x8f \\x04e\\xcf(\\xbf\\x00\\x84\\xdc\\x98\\xfb\\xec\\xc7>\\xd0\\x00y\\xa0\\xd0Gb?\\xe0\\xc5\\xdd\\xf1\\x92\\xf5S\\xbf\\x80\\xc9c\\x0f\\xea\\xe3:\\xbf\\x00\\x13\\x97\\xf1\\xaf\\x16I?X\\x01\\xf4\\x850\\xe6F\\xbf@\\x0c\\xe5\\x8b\\x9e~8?`\\x9b\\x9dY*\\x1a\\x11\\xbf\\x14\\xb0\\x97,\\xbe$3?@^f\\x9e\\xe8\\x0c\\t?\\xa8\\x84\\xeb\\x95\\t\\xcfQ\\xbf\\xe0\\xb4\\x99\\xe6\\x8ez<\\xbf\\xe8F\\xb8l\\xe4\\x11=?\\x88dR\\xef\\xbd|K\\xbf\\x80cl-g\\xb2H?\\x00\\x08\\x1cQ\\x07)\\x11\\xbf`ql\\xbc\\xf4t0?\\x80~\\\\\\x8b/\"\\xf7>`d:08\\x91\\x07?\\x00\\xdd7O*\\xcd:\\xbf\\x80\\x85\\xa6\\xc7\\x0e\\r6?03\\\\\\xfe\\xbdVB\\xbfPw\\x88\\x9bg\\x05;?\\xe0\\xb5I\\xb6\\x01\\xb1F\\xbf\\x80]\\xefq\\xf6\\xce1?k\\xef\\xd6y9\\xa3e?\\x00\\xae\\xe6\\xf2\\xf7\\xaeK? \\xbb\\xed\\xb8b\\xa4?\\xbf\\xa0P\\x9e\\xac\\x89\\xe83?`\\xf37\"\\xe4\\x16??\\x00<\\xbc\\x88\\r\\xdd??\\xd2\\x06\\xd1\\x08fGA?X\\x9d_D\\xb6iC\\xbf\\x00\\x80\\x10\\xf6|9+\\xbf \\xef\\xf8\\xd8\\xe6\\xe2W?\\x08\\xb35)x\"M?`$\\x19$n\\x048\\xbf\\x08\\x86\"\\xf2\\xaa\\xfeH\\xbf\\xd0\\x92\\xef\\n\\x89\\xcaS\\xbf\\x00s\\x86:\\rFF\\xbf\\x80\\xdfQ\\x90\\x81\\xb00\\xbf\\x003\\xbd\\x89\\xfd\\x07\\x18\\xbf\\x00\\x9d\\xf1\\xef\\x0c\\x0fL?\\xfc+!\\xec\\xf1\\xb9`\\xbfH6r\\xeeo\\xabr\\xbf\\xc9\\t*!\\xdcXp? ~\\xff\\xf7\\x98pP\\xbf\\x00\\xd1\\xc5R\\xb7\\x1dS?\\xe0\\x92\\x9d\\x91\\xdc\\x9cS\\xbf\\x10\\x85.\\xdc\\x05\\x07g\\xbf@%\\xe7y\\xb8\\xf2,\\xbf\\xa0\\x95\\x1d\\x99\\xee\\nD?\\x88\\x8e\\xe6\\x88\\xd4\\x85X\\xbf0\\xc4&r\\xa8A-\\xbf\\x80\\x9ev\\xea\\x8bE\\x17?0\\x1f]\\xa9H\\x1c^?`\\x9e\\x1f\\x85\\x98;1?\\xc0\\x82#\\x9b\\x8d\\xc7M?\\x10\\x97|\\xed\\xd9\\xbaN?\\x00\\xaa\\x11\\xed\\xa29 \\xbf@o\\x8a\\x94\\t\\x0cF\\xbf\\xecC\\xe3\\xbeH\\xd2o\\xbf\\xe0\\xe4\\x9e\\xd3-\\x9c%?\\x18b\\xe7\\xfby\\xdd\\\\?\\xce\\x8ay\\xe3!Eq?\\xe0E\\xee\\xbe\\xe7\\xeeA\\xbf \\x1bV/\\xff\\xbfE?@\\\\#/\\xe8_G\\xbfu\\xd7\\x81Mj\\x0fM?\\x84U\\xb0\\xf7\\x13h8\\xbf\\xa0!`\\x91\\x8bcm?8\\x1b\\xf5\\r4\\xcag?\\x08H\\x89 \\xf2\\x93S\\xbf\\xe8\\xa2q\\x06\\xbd\\x1er\\xbf|\\xd8\\x84\\x99\\xa2\\x8d`?\\x80\\x18~\\xc7[V\"\\xbf\\xc4)\\xe7\\xe2&\\xcc8\\xbf\\x85jR`\\xd2\\x90P\\xbf\\x18\\xa4R\\x15\\xa4\\xc3/\\xbfSu/\\xe4\\x9f\\xabY?`\\x91\\xc6\\xd7w\\\\1?\\xdc\\x18\\xd1-\\xda8Q\\xbf\\xb4\\x99\\x8am\\xc9\\xc8]\\xbf0$\\xdb7\\xb0\\xb5R? \\x7f!I\\r0`\\xbf\\x00 0s/\\xd9\\x0f?@\\xd3\\xd0\\xef]\\xe7\\n\\xbf\\xa0V-\\xfb\\x1e\\xda\\x03\\xbf\\x00\\r\\xd8U\\x1dHD\\xbf\\x80\\xa8\\x1auN\\xd4E\\xbf \\x82a\\x85q;C?@\\xcb\\xd9MW\\xf8<?\\xd0_\\x1e\\xa7\\xf6W]\\xbf\\x80\\xc2\\x19\\x9c\\x04\\xcfX?P\\xe5e\\t}eW\\xbf\\xec\\xf5\\xba\\x96\\xaf`e\\xbf\\x90hJ_\\x90\\x10C\\xbf\\xc0* \\x93\\xa9\\xd2\\x1b?\\xa0Pt\\xc1\\xeb\\xd47\\xbf\\xa0\\x05T\\xdd4\\xa5W?p\\x00u\\xac&\\x95(?@\\x03\\xe9\\xb3y\\x88\\x11?\\x00\\xcd~d\\xac\\xbb^\\xbf\\xd0O\\xb97(\\x06c\\xbf\\x10tpU\\xbf2a\\xbf\\xa8\\xaa\\xd9L\\\\\\xa6_?\\xfc@D4\\'2Q?px\\xf3\\x89\\x87 R?\\x00\\xf4\\x86\\x84*\\xcf5\\xbf\\xa0\\xd7\\xe3\\x87*>_?`\\xe4<\\xbe\\xd8\\xa0Q\\xbf\\x00\\x89\\xd2\\xa6\\xbd|Z?\\xaeB\\xb0\\xe0\\x07Wp?\\x00\\x86Bz]>:\\xbf0~\\xff\\xf7\\x98pP\\xbf\\xf0\\xb8K\\xcc_\\xe4\\x82?0R\\x83\\xc4\\x17Pj?0\\xe2\\xea\\xdf\\xe9\\xb2R?@\\x07\\x00{\\xca\\xc5\\r?p_L\\xc9\\x0b\\xe6I\\xbf\\xf0\\xe5b\\xe6\\x1dsB?TC\\x8c8:JC?\\x06\\xc7@\\x84\\xc1TC?\\x80\\x0b\\xc6\\xdc5|,\\xbf\\x80\\xae\\xcf:1\\xec(?\\xf03q\\x0c\\xf9\\xbaF?\\x00\\x13\\xd3/\\xbeh\\x1d?\\x80\\\\~\\x04\\xb3\\x8c\\x16?\\x00.HQ\\xef\\xa3\\x1a\\xbf@\\'\\xd4\\xbc\\x19\\xad=\\xbf\\xac\\xcf\\x8b}\\x01Y\\x80\\xbf\\xc8P\\xe8\\xf2\\xbf\\xceV\\xbf\\xbc!X\\x13\\xa8\\x87R?\\xa8*\\xe2c\\x08\\xb7p\\xbf\\x000M\\x93\\xe7d\\xe9>0\\xca\\xd7E\\xdbpV\\xbf@Ew\\x162\\x0bh?0\\xa9\\xf7\\x91@\\xbdJ?\\xd8\\x84\\xb0\\x12\\x16B2\\xbf \\xa4\\xd3\\xa92\\x8fq?\\x00\\xf34\\xbe{\\xca%?\\x00WT5\\xe2\\xccU\\xbf\\xe0\\xe0]\\x9d\\xb7A\\x81?\\xa0\\x15,\\x85g\\xf3F?\\x10\\x1a5q\\x9bQS?\\xd0\\xaeG\\xc0s\\xef@\\xbf\\x16\\xb3:\\xaa1\\xe8I? \\x85{[.\\x054\\xbf\\x00-\\x8ax0\\xa2D\\xbf\\x00B\\x02;-\\xcb\\x1d\\xbf\\x08X\\xc1\\x12kyS\\xbf\\x80\\x89\\xbc|\\xbb%O\\xbf\\x00\\xac\\xff\\xd3\\x04\\x02-?`\\x17\\xef\\xa4\\x91\\x1f`? \\xc0\\xe9\\xcc\\x91\\xd9P?\\xa0\\xa3\\xb2\\x80$3A?\\xd0\\xf6\\xea\\xb0\\xb5\\\\0\\xbf\\x80\\xa0ge9\\x88c\\xbf\\xc0FV\\x83\\xfatU?\\xe4\\xea\\x03\\xaa\\xdaYr?\\\\2\\x17\\x93\\x8b\\x05i\\xbf\\x00\\x10\\xe0|a\\xa1\\x19\\xbf\\xc0E+-;\\xa0h\\xbf\\xc40\\x01\\xe7&2d?\\x808\\xd0\\xb6#\\xc7P?\\x00?<L\\xfd\\xa1\\x15\\xbf@\\xde~\\n@\\xbeA?\\xf0\\x14\\x03E\\xef\\xd1d?\\x00\\xfa\\xa6\\xf4k\\xb3X?\\xf0\\xd0\\xed\\'\\xb2\\x815\\xbf@\\'e\\x10a\\xc4Q\\xbf\\xc0\\xf6\\xa9\\x9b\\txh\\xbf\\x00\\xbf^\\xae\\x0c\\xf9e?\\xa0\\xe6\\xf5\\x19\\xf3\\x91B?@\\x88\\xe1d\\x9e\\x97H\\xbf\\x004\\xbd\\r\\xdc\\xb6Z?\\xc0;_\\xe2[lf?\\x00\\xf0\\xb3i\\xa4TU\\xbf\\xc0eH\\xa2,\\x8fT?\\x00B\\x9f\\xc4\\xbf]`?\\x00\\x1c\\x8d\\xe8\"\\x837?\\x00\\x8d\\xa9\\x08\\xc3$$?\\xa0\\'X\\xc0\\x1d\\x88\\x7f\\xbf\\x00\\xd1\\xc5R\\xb7\\x1dS?0R\\x83\\xc4\\x17Pj?\\xd8\\xc4/\\x06x\\xe9\\x93?\\xa0\\xb5\\xadW\\xd5\\'`\\xbf\\x12\\xd8\\x19(\\xa3D^\\xbf\\x90\\x15\\xb3\\x8c\\x1dWD\\xbf\\xa0\\xf8sd\\xc0eo?\\xcc\\x1e7*k\\xb1d\\xbf\\xee~8u\\xac\\\\c?\\xf0\\x05\\xb0\\x0c%\\xadl\\xbf\\xc0\\xdd\\xaai\\x7f\\xf3Y\\xbf@\\x10T\\x9c\\xe9\\x081?\\x80}\\xa1A\\xeb\\x11R\\xbf\\xc0gG\\xc6\\xc5\\xf5C\\xbf\\x00`\\x98\\x90\\xa4\\xad\\xf4\\xbe\\x80\\xf7\\x85\\t\\xf6\\x10G?\\xc0\\xe5\\xedY[\\xfa3\\xbf\\xf0\\xbad46P??\\xf8z\\xcc\\xcd\\xdb\\xdf/?@$\\xb4\\xd8w$[?\\x90#\\xee4\\xc0/H\\xbf\\xc0\\xb8>\\xb8\\xa2\\xa6\\x10\\xbf\\xc0\\xad\\xbd;\\x9b\\n<\\xbf\\xd8\\xe5\\x90\\xf2\\n\\x91,?\\xc0q\\x98\\xb7G\\x12\\xf3\\xbe@\\x89\\xb3\\xc8\\xdbIZ? \\xde4lG\\x86Y?`Xb\\xf9\\xf8^7\\xbf\\x00\\x84\\x8f\\t+,d\\xbf\\x00\\xb3\\x0c\\xf9\\xf4A$?\\xa0\\xd9<\\x9f\\x02\\x8e:\\xbf\\x00\\xf6\\xcez \\x8b\\xd1>0n\\xc3\\xfa\\xa3\\xc9\\r\\xbf\\x00\\xcb\\x13\\xe2(\\xe4-\\xbf\\x90H`U\\xa9\\xbe<?\\x80=\\x83\\xa2l\\xd4#?8\\x84d\\xa6\\x90bD\\xbf0w8\\xaeR\\xe4Z?\\x00)\\xf5\\xd5\\x84\\x1fQ\\xbf\\xf0\\xad8\\\\\\xa4\\'U?\\x00\\xc1\\xcb{\\xc2;$?\\x00\\xf0e\\xbe1\\xe6\\xca>\\x00z\\xa0\\xbaGK\\xf8\\xbe\\x80O\\xc2\\xa6\\r\\x9e2\\xbf\\x00\\xa0w\\xca\\xdfC\\xf1\\xbe`D\\x85\\xa6\\xe4\\xe48?\\xb8\\xfb\\xb0s\\xbcTO\\xbf\\xc0\\xb4\\xa7\\xcd\\xa5rW?X7\\x7f\\x99\\x11\\xe8a\\xbf\\xe4\\x90\\x8a\\x9b\\xc8\\x82^\\xbf@\\x87hT1R*\\xbf`%\\x89\\xda \\xf70\\xbf\\x80\\x89\\x95\\xc96\\x8c!\\xbf\\x80\\n\\x1e9\\xe3q\\x10\\xbf\\x00$\\xa1\\xb3\\x93\\x9d\\x15?\\x98\\xa9)\\x1b\\xd2\\xe9$\\xbf0Q\\x86\\xd7\\xbb\\xe7\\'?\\x00\\x90f\\xc6\\xd2\\x1d\\xf1>\\x00\\x929\\x91^\\xc0\\x13\\xbf\\xc0H\\xa3\\x1d\\x95\\x90&?\\x807\\xdc\\xd8\\xc4g-?\\x00\\x08\\\\\\xd3q\\'\\r\\xbf\\x00N\\x82P\\xf9\\xb7\\x15?\\x00\\xd6#l\\xd0\\xc0(?\\xa0\\xfd\\xcc\\x93|\\xe3A?\\x80P\\xc5\\x9dB\\x8d5\\xbf\\x80\\xe0*\\xffn\\xaf@\\xbf\\xc0\\xd0\\x1c\\x96\\xa1\\xe8E?\\x80\\xa4\\x9c\\xb2\\x8f\\xa0V?\\xd0\\x92\\x9d\\x91\\xdc\\x9cS\\xbf0\\xe2\\xea\\xdf\\xe9\\xb2R?\\xa0\\xb5\\xadW\\xd5\\'`\\xbf\\xe6\\xad\\xcf\\x98\\xa7\\x0fk?\\x8aK\\xb5\\x94x\\xb2??`s\\xa4\\x88\\xb8\\xc1:\\xbf\\x800$\\xadv\\x074?\\xa4\\x06LE&\\xc0S?\\x00\\xd6\\xfdG7#\\x19?`\\xf9.\\xb9\\x99\\xe73\\xbf\\xc0\\xd7f\\xd4*\\xf01?\\x00y\\xed\\xc0V@(\\xbf\\x80\\xda\\xafx=\\xd52?\\x00\\xbbHx\\n\\xa8\\x1f\\xbf\\x00\\xc2\\x83\"Vi\\x0e\\xbf\\x00@\\xec!\\x15\\x0c\\x02?\\xcb\\xc2]\\xa1\\xac\\x87z?34\\xe9\\x85\\xfb1b?(\\x97!? \\xe7T\\xbf&8\\t\\x08\\xa2\\xa0i\\xbfh\\xf0\\x85\\xd8\\xd1^K?\\xa4~\\x8fC\\x80^B?r}\\x11Q\\x9dRZ\\xbf\\xbc\\xd35\\xa7\\xb6\\x9aY\\xbf\\xc4\\xdf\\xd6\\x15\\xa1\\xa9$?\\xb2\\xc5\\x07\\x12\\xcb\\xc1\\x80\\xbf\\x18\\xe9,\\xc4<\\xfcD\\xbf=x\\xc8\\xb5\\x04xb?\\xc2}J\\x8aY\\xc4^\\xbf\\xcd\\x15@\\x9e\\\\zQ\\xbf)-\\xbe1\\x0cP@\\xbfi\\x8c{\\xa6D#5\\xbf`b\\xadj\\x1e\\xc2)\\xbfN\\xb9\\x94e\\xf1.!?h\\xa0\\xfd]\\x0c{5\\xbf>`\\xca+\\xe2`N?\\xd8\\x843\\xb2\\x8bM9\\xbf\\r\\xe4(\\xd1\\xa22X?\\xe5\\xc6_\\xa45\\'X\\xbf\\xda\\x84\\x05\\r\\xe2\\xb9c?(\\x8a\\xc0\\xd0K\\xd5B\\xbf `\\x9fI\\xb4gE\\xbf\\xa2\\xc5\\xe7M\\x1f> ?hF\\xc1\\x02\\x03\\xfeY?\\xfc}\\xa0\\xdce\\xdf:\\xbfc\\xf3\\xd5\\xd5\\x0289?\\xb7\\x8ah\\xd8\\xd9\\xcf#?\\xce!\\xbbY\\xcc5c?\\xd9\\xf9!\\xfd^\\xdfe\\xbfn\\x97\\xaa\\xa9%\\x9ev\\xbf\\xcd\\xdc\\xe7\\x84(\\x9f6\\xbf\\\\RU\\x80\\xb0ZX?\\x80\\x7fV\\xe8M\\xdcW\\xbf\\x82\\x07^9x\\xdeU\\xbf\\x90\\xdd\\x06\\xfaS\\xfaW\\xbf\\xa1Z\\xba$d\\x9c\\\\\\xbf\\r\\xd2\\xd4]\\xe8\\xf5)?i\\xdfY\\xfb\\x87\\x1d]?\\x9e`1\\x8c\\x80\\x18X\\xbf\\xfd\\xe8\\xc6@fOa\\xbf61\\xa4\\x1b\\x8aw6?\\xf6E\\nAu\\xb97?\\xe0\\xa3\\x81;\\x95?>\\xbf\\x88\\x9b4\\xab(\\xb0c?\\xe7u^4\\x16UM?\\x02\\xd4=/\\\\\\xaaI\\xbf\\x94\\xb4N\\xc9\\xc3=U\\xbf\\x98\\x16x\\xa2kGZ?(\\xf6qw\\xe3\\x06s?\\x10\\x85.\\xdc\\x05\\x07g\\xbf\\xe0\\x06\\x00{\\xca\\xc5\\r?\\x16\\xd8\\x19(\\xa3D^\\xbf~K\\xb5\\x94x\\xb2??\\x0e\\xa1\\x99\\x89B\\xdf\\x86?\\x12\\xf2\\xf6\\xa7&\\x9aI?2d\\xf7\\xc8w\\xe9:?\\xd7\\xf2\\x91\\x1a\\x95\\x8eu?\\x98\\xfdDq\\xa8\"D?\\xf0\\xec\\xfa\\x85\\xf8\\x92\\x16\\xbf\\x12xZ\\xe8\\xffMl\\xbf`\\'\\x0c\\xf7\\xdc\\x87P\\xbf\\xf48,rbt^\\xbfF\\xdaCA\\xb7\\xdc\\\\\\xbf\\xd8\\xbf\\xd9\\xd3\\xf2uA?6\\xa1u\\xe2\\xe6\\x02V?8.\\x1a\\x8d\\xb9\\xd7K\\xbf \\x94k:\\xd9&,\\xbf\\xa1\\xcb\\xe1\\xc6\\xa87\\x17\\xbf\\xb7\\x18\\x0e,\\x85\\xc2R?\\xf0\\xf8\\xad\\xd7\\x92\\x8b1\\xbf\\xd8\\xd0/\\x9c8$\\x18? q5\\xbcK\\xea\\x15?6\\xbc\\xe8\\x17\\x03\\x13:?\\xc4\\x83\\xf3+\\xa8\\xb13\\xbf\\xbcJ\\xc0V#)U?\\x08+\\xca\\x94\\x8b\\x0e7\\xbf\\xc0\\x8d\\x03\\xf06\\xa1,\\xbf\\xb6i|\\xb5\\xfb\\x98d?D\\xf8\\x06g\\x18fB?\\xa8\\xee\\xdc\\xac-\\xcf*?h\\x1a\\xa6\\xa7\\xb9\\xb3D?\\xb5\\xc9C\\x18n+%\\xbf\\x94\\x90\\xd3\\xaa5\\xc1#?\\xab\\xf8\\x8crck@\\xbf\\xe0\\xa8\\x98\\xf9\\xc2\\xf1\\x04\\xbf\\xf8\\x96\\x88\\xa9\\xc4\\x1fZ?L\\xd7J)\\x9a\\x00C\\xbf`_g\\xa3!\\xeb\\'?\\x03s\\xaa\\x07\\xbcrU\\xbf@\\x18\\t\\x8e\\x15\\xc4\\xfe\\xbe`\\xdf.\\xca70\\xf3>\\x9aX\\x8bEG\\x95 \\xbf\\x80\"My\\x01\\x908?\\\\\\xd5\\xedk\\x1d\\x92L?\\xc3M\\x90%\\x89\\x89U\\xbf\\xee\\xda\\xc3\\xdb;\\xc05?@\\x13_\\xcd\\x84\\x8c\\x1e\\xbf\\xb2N\\x02{\\x90~\\\\?\\xa6E/O\\x81hh?\\x94t9\\x80\\x8c2Q\\xbf\\x80#\\x98\\x96P\\xcc??$`\\xec\\x13zM.?\\x18l\\xd9\\x8bTk@\\xbf\\x90_Nk\\xe7\\x1aE\\xbf\\x16X\\xe6L\\xac\\xcb&?\\xa0R\\x9dW\\xde-<?\\xc0\\xb4\\xc5\\xae\\x9cOA?\\xd8\\xce\\xdad>\\x04@?\\xb4\\x97*0\\xf8%B\\xbf`6\\xda\\x18+\\x16\\x1b? \\xd9\\xfc\\xbaz/J\\xbf0\\xaa>\\xc24\\xe6%?`\\x8f\\xac%S\\xe9M?\\x18D\\xd3L\\xa1<E\\xbf\\x80\\xd05\\xce\\xc4\\n\\x13\\xbf\\x00Z\\xd2u\\x1eI\\xfd\\xbe..\\x828\\x87VI\\xbf\\x8c\\x86\\xeb\\xae\\xd0\\x8bY?@%\\xe7y\\xb8\\xf2,\\xbfp_L\\xc9\\x0b\\xe6I\\xbf\\x90\\x15\\xb3\\x8c\\x1dWD\\xbfPs\\xa4\\x88\\xb8\\xc1:\\xbf\\x12\\xf2\\xf6\\xa7&\\x9aI?\\x94\\xdb\\x9e\\xd2\\x0f\\xafl?\\xe7h\"\\x18\\x9ctP\\xbfl\\x06_]2\\xde9?\\x86\\xf7o\\x9a@\\'R\\xbf\\x1e\\x1b,\\xf6\\x97\\xf2K?\\x08\\x0f\\x19v?\\xb9J\\xbfX\\t\\xcb\\xf5\"{2\\xbf\\x90g\\x19\\xae\\x17\\xd5K\\xbf\\xf4h\\xd2x]\\x98;\\xbf\\x88\\xba\\xed\\xbe!<<?\\x90\\xcb?X\\x86\\x16J?Hgp\\xd8\\xdf\\x00W\\xbf(M;[\\xffP+\\xbf/\\xa3\\xe3\"[\\x02G?h\\'\\xfa\\x8cX\\xc5g\\xbf(F\\xecU\\xdej4?\\xdc\\'\\x1e\\x0b7(J\\xbf\\xa0\\xb4s\\xb1W\\xfeC?V\\xac\\xbbd\\xbf|0\\xbft\\xdd=R\\xb5\\xba6\\xbf\\x00\\x8eY\\x15#!4? 7\\xda\\xc6$\\x9cN\\xbf\\x00\\xe9\\xdd_\\xca\\x19/\\xbf\\x00\\x88\"`\\xbb\\xecK?Zr\\xea@\\xba\\xd8Q?\\x00b\\x9d2\\\\\\xbc,\\xbf6Gf\\x84\\xc8\\xf6H\\xbfl\\x99\\xd1\\x05i\\x188?\\x88\\xf9\\x8ac\\r\\xd5 \\xbf\\x0eUJ\\x0c\\xd9\\xd0P\\xbf@\\x8c\\xe8M\\xeb\\xec\\x1f\\xbf9[\\x1d\\x88%\\xa6X\\xbf\\xa8W\\xb3\\xb8R\\x1bH?\\xc0\\x1d:\\x7f\\xec\\xcbG\\xbf\\x16c\\xea#\\xc2\\xb6n?\\x00\\x98\\xaeZ\\xbb\\xe9E?\\xe0\"\\x93\\xb0\\xa8T\\x15\\xbf\\x00\\xecw\\x01\\x92\\xd5\\xef\\xbe\\xa0\\xeb3\\x86\\xe9*G\\xbf\\x80N^WPv\\'\\xbf\\x12\\x1d\\xb6K\\xbe\\te?\\xdb\\xbe/\\x06\\x92\\x05d\\xbf\\xd8y\\x9b\\x1e\\xe3\\xf7_?\\xcca\\xc4\\x00\\x9fQs\\xbf\\xd8-C\\xfe\\x91\\x7fi\\xbfn\\x12\\x93:\\x05\\xc7\\\\?\\xc0\\xb6\\xbbiq\\xa1*\\xbf\\xb8\\xca\\xec\\xdd\\xe2{E\\xbf\\xf0\\xa0\\xe66\\xd7\\xc4R?\\x00P\\x93;\\xc42@?Sz\\x1fS\\x99\\x12E\\xbf~C\\xa8\\x98\\xc4\\x0bV\\xbf\\x00\\x80&\\x18I\\xab \\xbf\\x10f\\xeb\\xb6/\\x8cQ?\\x80~`n\\x15\\xcd??\\xc0\\x05\\xf6\\xe8+6 \\xbf`\\x07\\xa19\\xab\\xde+?@\\xb1*\\x7f\\xf9\\x0e<\\xbf\\x00\\xa6S\\x10\\xe7\\xaf!?\\x00\\xe0\\x88\\xa0\\xf8mZ?\\xc0\\xbcC\\x10\\xed\\xbd>\\xbf\\x00\\x88\\x83\\x0b\\xbdS3\\xbfp\\xacX\\xb7\\xd0\\x8dS\\xbf\\x90$\\x07\\'\\xbbQk\\xbf\\xa0\\x95\\x1d\\x99\\xee\\nD?\\xf0\\xe5b\\xe6\\x1dsB?\\xa0\\xf8sd\\xc0eo?\\x800$\\xadv\\x074?2d\\xf7\\xc8w\\xe9:?\\xe7h\"\\x18\\x9ctP\\xbf\\x86\\x0bL3]\\xb1x?\\x80\\x99\\xcd\\x12!eK?\\xb8w\\xab\\xf1\\x10\\xc5P?\\x18(\\n\\xb7\\x88\\xdde\\xbf\\x80\\xf7\\x98l\\x97\\x1f2?\\xd00\\x158\\xe9^9\\xbf0\\xfc\\xd0\\xc1\\x1b*I\\xbf0\\xb3T\\x1e\\xfa\\xa6B\\xbf\\x00`\\xe9\\x9dj\\xf4\\x0e?\\x80\\xa8\\x10-C\\x08B?\\xe9\\xdeW\\xbbQxt?\\x1e\\xf2;+0.W?\\xcc\\xac2\\xd9\\xb4\\xd9L\\xbf\\x053\\x8d2\\x1c\\x14n\\xbf\\x00j\\x13\\xe7\\xdd\\x84\\xed\\xbe\\xb6kHu0fI\\xbf\\xc8]\\xactP%R\\xbf\\xb9\\x9b\\xeeVh\\x9fU\\xbf\\xf0\\xe6\\xc8ST\\x90\\x11?\\x11+R\\x0f\\xd6\\xb3w\\xbfP\\xc0\\xa7\\x8a\\xee/F\\xbf\\x9d\\xb2i\\xf0,\\x93U?\\xa0W\\x84\\xad\\x9f\\xd80?\\xe0\\xc7\\xdd\\xcf\\r~Y\\xbf\\x08sR\\x83:i1\\xbf\\xa0\\x16\\x99N\\x96\\xc6\\x04\\xbf\\x8cg\\x11\\x1e \"7?\\x10\\x0b\\xc1\\xce`7\\xff>A\\x07\\xe5[{\\x06U\\xbf\\x18\\xa8cu\\x17EE?8\\x81\\x8b\\xb0\\x14\\x19 ?\\x88\\xb6Hd[\\x19k?\\xd64\\xec\\x810\\x86j\\xbf\\x04&\\xe2\\xb2ySn?\\x00\\xca\\xde\\xe4Y+\\xde\\xbe\\x95\\xbf\\xe4p6\\xc7@\\xbf\\x9c\\xcb[\\xcf\\xf1_\\x1f\\xbf\\x08P9\\t\\xcd\\xa6N?\\xb0\\xb4\\x1d\\xf3\\x98\\x1c5?\\xf83\\xd5\\x8fq\\xbdD?L;\\x9c\\xb8_AT\\xbf\\x9cU\\xda\\xc1+\\xedq?U~\\xc7\\xace\\xdbs\\xbf\\x9f\\xb8GpB\\x84s\\xbf4\\x8f\\x94`N\\xf9U\\xbf\\xe46,\\xa3\\xd4\\xc0P?&\\xd5(\\xe6\\xaa\\xfdG\\xbf\\xa8\\n`\\x9d\\xd8\\xbe@\\xbf\\x90G\\xd1w9\\xd8S\\xbfVa%2\\xd1vS\\xbfL\\xb3&t9\\x808?\\xc0C\\xe3\\xe53\\xdfa? o\\xdd\\x85i;;?\\x88n\\xb3\\xe1\\xc1\\xc8e\\xbf`\\x1b\\x15\\xc9\\r\\xd2\\x12\\xbf\\xfcx\\xb9\\x1aU\\xb4C\\xbf\\xcc(.\\xfa\\xda\\x12Q\\xbfp\\x86\\x7fK\\x89\\xd2a?l/6\\x9c_\\xceU?\\xb0\\xf5\\x06Uc\\xd1F\\xbf\\x90\\xa4R\\xd5\\x8a\\xae^\\xbf0\\\\R\\x8aj\\x0f3?`cc\\x8d\\xc8gR?\\x86\\x8e\\xe6\\x88\\xd4\\x85X\\xbfLC\\x8c8:JC?\\xc8\\x1e7*k\\xb1d\\xbf\\xa4\\x06LE&\\xc0S?\\xd7\\xf2\\x91\\x1a\\x95\\x8eu?n\\x06_]2\\xde9?\\x80\\x99\\xcd\\x12!eK?\\xe2\\xdbn\\xd5\\xe45\\x81?\\xaa6\\x1b\\xf0\\x98\\xb9(?;\\xf0D\\x10,xI\\xbfh\\x96\\x02_\\x8a\\xa6O\\xbf\\xbc\\xa2\\xb5\\xd3\\xfa\\xe2S\\xbf \\x16\\x123\\xfc\\xacE\\xbf^\\x9f\\x19T\\xb1\\x86S\\xbf\\xd8\\xda_\\\\\\x94-E?0\\xc6\\xae\\xdf\\x9e|M?\\xd4\\xcb\\x04\\x0e\\x94\\xe9F\\xbfv\\xa8sy\\x96\\x16\\x15?\\x1d\\xd3!M\\xa2E(\\xbf\\xc0O\\xc3\\xc1\\xeb\\x8cC\\xbf\\xa0\\xc2N\\xdf\\xa4Y\"\\xbf\\x8a\\x1e\\xe4\\xc68G\\x1b\\xbf\\xc8\\x02\\xd2\\x82f\\xd73?)+t\\x05N\\xca\\x0f?\\xcd\\xbd\\xb3x\\xf9\\xf2 ?\\xb5\\xf6\\xa0\\xba\\x0f\\xa8f\\xbf\\xb8\\xd2FWT\\x0cD?\\xa6gX\\x98\\x00\\xbc;?\\xccN\\x83\\xa7\\x19VN?\\xf7&\\x86\\x9a2\\x128\\xbf\\xc0\\x97<\\xdf\\xad\\xd6\\x0f\\xbf\\x00B\\xdc\\xc9]\\xa1D\\xbf\\t\\xe0\\xe5>:\\xf73?\\x01?\\xa8\\xed\\x89J*\\xbf1\\xec\\xd0%\\xc3C2?&\\x15,\\x1c\\x1c\\x8c3?H\\xea\\xb0\\xc5\\x11\\xb6P\\xbf\\xbe\\xba\\n\\x13\\xacr0?LiF\\xd4\\x90\\x978\\xbf\\xfd\\xd9@\\xf2\\xff\\xe8R?\\xa8\\x0bh\\xe1\\xe7\\xf0\\x1b?\\xbc\\xbd\\xf3\\xc2\\x86C)?\\xa8\\x90\\xd1\\x9b\\x08K\\xfd>@)\\x91\\xe7\\xaeb\\n\\xbf\\xf4C\\xe0-\\x92\\x035\\xbf\\x86d\\xcdA\\xcc\\xe6]?\\xf5\\'q\\xda\\x83~L\\xbf\\x88\\xdb[`o\\xf02?\\xc5\\xfd\\x9ef\\xfb;U\\xbf\\x88\\'`\\x17)P_\\xbf~\\xe7\\xab\\x84\\xe3\\x1cR?\\xe8\\xe2U&\\xdd\\xf1\\x1c\\xbf\\xa5\\x18\\xa8)\\xce)7\\xbf\\xa0\\xce\\xc4\\xe5\\xe5SH?\\x00\\xc6\\xa0\\x93:\\x1b/?Y\\xc2?\\xb9\\xd2\\xa09\\xbf\\x92\\xfa0\\xa1E\\xe80\\xbf\\xa0\\x92w!j\\xff<\\xbf\\xa0\\xf5( \\xcal\\x1f?\\xc8\\xd19\\xb2\\xb6^??f\\xd5\\x1c#D\\xf4<\\xbf\\xf6Z\\x17\\x10\\xc7DI?h\\xaa\\xbac\\x7f\\xb2E?\\x90\\xf9\\xf5m3\\x1a@\\xbf(\\xb5.\\x15\\x8d9;?Z\\x8c9\\xe7\\x03\\xfaE?\\xc0\\x84B\\xf8$\\xa5/\\xbfR\\xc2\\xdd\\xac\\x89\\x88=?h\\xb5\\xf4\"\\xfd\\xbfB\\xbf8\\xc4&r\\xa8A-\\xbf\\x0c\\xc7@\\x84\\xc1TC?\\xee~8u\\xac\\\\c?\\x00\\xd6\\xfdG7#\\x19?\\x98\\xfdDq\\xa8\"D?\\x85\\xf7o\\x9a@\\'R\\xbf\\xb8w\\xab\\xf1\\x10\\xc5P?\\xa76\\x1b\\xf0\\x98\\xb9(?\\xf2\\x9f8\\x85\\xc8\\xcbb?\\xe3\\x030\\xb2\\x9c@P\\xbf@\\xb4k\\rz\\xcf>\\xbf\\x90\\x0b\\xacZmG\\x15?\\xd8\\xb8x\\x8d\\xa2\\xdc#?\\x80\\xa9\\xe5\\xc8\\xf9K\\x12\\xbf\\xa8\\x03;\\x0e\\xdc\\x023\\xbf\\xf8/\\x92c4\\x8d1\\xbf\\x96\\x0c\\x9e\\xba\\x1e\\x0ew?#J\\xcb\\xc1\\xdf5>?E\\'\"X\\xcf\\xcaI\\xbfH O&3\\xcbR\\xbf\\xaa\\xd3\\xee\\xcc\\x02\\xe9H?@\\x19\\xea\\x8d4\\x8c??\\x08\\x0f$\\n\\xb4\\nP\\xbf\\xb8\\xfd\\xe8,\\xf2\\x01O\\xbfhZ\\xb1\\xe1\\xb8\\xfc\\x01\\xbf|i&\\xb0b\\x00x\\xbfv\\x03\\x17e\\xeb\\xd9d\\xbf\\xe0\\x83\\x97\\x126^P?\\x88\\x8f\\x96\\xfc%{f?\\x840.\\xee\\xcf\\xacK\\xbf8\\t\\xf3&\\x16\\x83B?j\\xabz\\xbc\\xf4\\xa7G?}\\x11I\\xa4qE0\\xbf\\xd4\\xcf\\xca\\xb0p\\x0b8?@8\\x8e\\x1a\\xf7\\xec\\xff\\xbe\\x00\\xe4\\xd7\\xa1\\x8e&\"?\\xde\\x04\\xbdu\\x15vW?\\x90\\r_\\xb2>AA\\xbf\\x1cL\\xeb\\t\\xf7\\\\R?\\x8cACz\\xa0M]\\xbf\\xf4\\x03\\xe9\\xfb\\xc0\\xabD\\xbf\\x04\\xb28h\\xec\\x944\\xbf@o\\xf2\\\\>y ?\\x08\\xcf\\xcf\\x12\\xcb\\x06W?@\\xb6X\\xbaI\\x14I\\xbf_D\\xb0\\x88LZa\\xbf\\x96r(\\xa4\\x83\\xa1Z?l\\x14Uq\\xb4\\x85U\\xbf\\xbe\\x91\\x9e\\xbc\\x98Kk?\\xd3-\\xf9P%\\x07^?\\xa0\\x7f\\xc1\\xeci\\xc8D\\xbf`\\xf6\\xc7\\x8es\\xca\\x1a?p58-\\xa5\\x82!?\\x139\\xabr\\xc0:[\\xbf\\xc0:\\xb6\\x80qh2?1\\x877\\xc5\\x9aKE?8\\x8f\\x9eS\\xdc\\t@?\\x80\\x98\\xee\\x04\\x84\\xae!?x\\x94\\xaf\\x10\\x00\\x03U\\xbf\\xf8\\x0c\\x0c>\\x1eB7\\xbfT\\x84P\\x8a\\xbb\\xd7A?<\\x94\\t\\x0e\\xe1!F\\xbf(\\xfa\\x08\\xbb_\\xfeS\\xbf\\x00t\\xcd>\\x8c\\x89;?pgV\\xd5\\xd5\\xa11\\xbf(\\x88FH\\xb7>U\\xbf\\x80\\xa6\\xd9\\x0e\\xdbzV?@33>kGA\\xbf`\\xc4s$\\x1a\\xaaL?@\\x9ev\\xea\\x8bE\\x17?\\x80\\x0b\\xc6\\xdc5|,\\xbf\\xe8\\x05\\xb0\\x0c%\\xadl\\xbf`\\xf9.\\xb9\\x99\\xe73\\xbf\\xf0\\xec\\xfa\\x85\\xf8\\x92\\x16\\xbf\\x1c\\x1b,\\xf6\\x97\\xf2K?\\x18(\\n\\xb7\\x88\\xdde\\xbf=\\xf0D\\x10,xI\\xbf\\xe3\\x030\\xb2\\x9c@P\\xbf)5\\x90r\\xb5\\xear?\\x00\\x0f\\xb3(a\\xc9\\x06?p\\xb7M\\xe6eD1?\\xf0\\xbb\\xe7\\x9d\\xbb\\x931?\\xe0\\xe1\\xc4\\x82 \\xcd;?\\xc0\\xd7\\x81\\xca\\x0c\\x8f\\x10\\xbf\\xf0m\\xc4]\\xf4\\xebI\\xbf\\x90\\x90\\x08[\\xf2\\x82Q\\xbfXR\\x85\\xe4X\\x9d>\\xbf\\xc5;3\\xbf\\xf5hD?@\\xed\\xea\\xf9\\nvU? \\x8am\\xa8\\xb3\\x9f$\\xbf\\xf8\\x9a~\\xa1=\\xbcA?@\\xd5\\x0f\\x96\\xff\\\\D?\\x80-R5\\x85\\xc7\"?\\x00\\xacsHs_\\x1a?\\xfc\\x9d\\x06\\xa9d\\x04\\x81?\\x00<\\xf0y\\x02.6?Pu\\xc0\\x97\\x96\\xbeP\\xbf\\xe0\\xa7\\x19\\xe7|x\\x83\\xbfh\\xces\\x190\\x0bB\\xbf\\xc0{\\xfa\\xd3\\xc6\\x91M\\xbf\\x1c\\xde\\xd9\\xb1\\xd4\\xcf\\'\\xbf\\xf0\\x8b\\xe0n\\xfd\\xfb:\\xbf\\xf0\"\\x9c\\x1cB3(\\xbf\\xe8%\\x03,\\xc5bD\\xbf\\x80\\xf7\\xc1\\n\\xf4\\xaaQ\\xbf@\\xea\\x07\\x90lI!\\xbf\\xc0\\xec\\xaf\\x91\\x1c~W\\xbf\\x00,\\x9eM\\x13 \\x01\\xbf \\x8a}y|\\xe4J\\xbf@\\xb0\\xa9\\x0f\\x7f\\xd1,? \\xf2\\xe0k\\xe5\\xd9(\\xbf \\x92\\xe0SB\\xe1\\x1a?@\\xef=\\x89\\x01*F\\xbf\\x00\\x1aj\\xd6\\xccx&?\\xf4\\x14S\\x7f\\xaa|c\\xbf<\\xb8}\\xf6A\\xe2^?\\x00|\\xf2-04!\\xbf\\x80\\x13\\x96j\\xa3\\xb93\\xbf\\xa46\\x031\\xe3\\xd1Q?\\xe0D\\xc1\\xd6\\x02\\xb5B\\xbfP\\x98\\xae\\xa5\\xf1\\xcdP\\xbf\\x80\\x96SI\\xc1\\xe6,?@\\xb0(\\x0eb\\xce5\\xbf\\x00\\x15\\x9b\\xdb\\x02\\xba@?\\xc0\\xf9P\\x1a\\xb3\\xab<?pl]\\xff\\xb1\\xfc5\\xbf\\x00X\\xa8\\xd0O+\\x05?\\x00\\xfa\\x84\\x9e\\xb3\\xa0F?\\xc0\\x80uJ\\x98\\xcf0?\\xd0<\\x88\\x8a\\x9b$C?h/<g\\x00\\x91W\\xbf\\xe0\\x8fA\\x04\\xda]`\\xbf\\x000(\\x85\\xb5\\xaa\\x17\\xbf\\x00@\\x8f\\x87\\xf8\\x07\\x0f?\\x80\\x9e\\xc1\\x85\\x8d\\xa9R\\xbf\\x00*\\x18\\xf7\\xb5eB?\\x10\\xcc\\xe3\\x92\\x92[R\\xbf@\\xf2\\xc5\\xaeI\\x19l\\xbf0\\x1f]\\xa9H\\x1c^?\\x80\\xae\\xcf:1\\xec(?\\xc0\\xdd\\xaai\\x7f\\xf3Y\\xbf\\xc0\\xd7f\\xd4*\\xf01?\\x0fxZ\\xe8\\xffMl\\xbf\\x08\\x0f\\x19v?\\xb9J\\xbf\\x80\\xf7\\x98l\\x97\\x1f2?P\\x96\\x02_\\x8a\\xa6O\\xbf@\\xb4k\\rz\\xcf>\\xbf\\x00\\x0f\\xb3(a\\xc9\\x06?\\x87\\x18\\xc1\\xf9\\xc5\\xe1t?@\\x1f\\xbeLD\\x9f0?@\\xb7\\x83^\\x05\\xf8[? \\x1d\\x7f\\xd8l\\xf0\\\\?\\x00\\x8c\\xd3<\\xe9s\\xff>\\xe0*\\xf7+\\x95\\x02Q\\xbfH\\xac\\xfao0[X\\xbf`>\\x0fg$A\\x10?\\xfa\\x19\\xc0\\x04)\\xd0E?\\xa0[~\\xe7\\xcd\\x93O?\\x00\\xd3\\x02\\xe2,\\xf0\\xf4\\xbe@i\\xc9-U\\x95\\x13\\xbf\\x00\\xded\\xf279>?4&*\\xe1C\\xd3+?0\\x9c\\xe6\\x01F\\x92\"?\\x00(\\x06-u\\xb51?\\x80\\xa6\\x91\\xd1c/F?\\x8058V\\xab\"+\\xbf`9\\xef]\\x80FT?\\xe8\\xe2\\x98=\\xeb\\xb17?\\xc0\\xeeS\\x8e\\xf1\\xdf4?S^zo\\xfa0$\\xbf7>\\x86GDp-\\xbf0\\x90\\x7f\\xad\\xdcD\\x13?\"\\x1a=\\xc24zP?\\xe06L\\x08\\x9fW0?\\xf6m}|-\\x0bA\\xbfG\\x18U\\xe8\\xccQd\\xbf\\xa0\\xf9a\\xdc!QR?,\\xe0\\x08\\xb6-\\x99a\\xbf\\x80\\xb2i_\\x01\\xe4\\x06\\xbf@(\\xa0\\x1b\\xd0n\\x05?@\\xc4\\xdc\\x93\\xbfA\\xfe>\\x80\\xc9\\x17\\x16\\xfa\\xc34\\xbf`\\x0c\\xfdr\\xdc\\xc91\\xbf \\x10\\x0f\\x93\\xa15>?r(\\x0e\\x0cK\\xedK?@eJ\\xf04\\xb4`\\xbfH_2\\x8a.lf?Z\\xd2\\xe1\\xf7\\x9b\\x06N?h\\xae\\x15\\xc8\\xcb{G\\xbf\\x00\\xe6\\x8c\\xdby\\xb7\\xe3\\xbe\\xe0A\\xdep@\\x80\\x1d?\\xa0\\xc3\\r($\\xe3-?\\x80\\x0e\\x1b\\x01b\\xa17?82\\xbe\\xba\\xc4\\x85\\x18?\\x00\\x1dV\\xee\\x89\\xf9\\xe4\\xbe\\xc0k\\xbec\\x0b\\xa6D\\xbf@&9pcl0\\xbf``\\x00\\xc5\\xd7\\xa1F\\xbf\\xc0\\xf0\\xc9\\xb2y\\xca\\'?\\xc0\\xd0\\xef\\r-\\x14=?\\x00\\xd3(|Yc:?\\x00^\\xf0\\xf6o\\xe5A\\xbf@\\xe4d0|\\x976\\xbf\\x80\\x89\\xbaC\"e0?\\x00\\x90\\xa6\\xfd\\xb4\\x997?\\x80\\x8cmZ\\xa1\\xb0:?\\x00xP\\xd9\\x14%\\xfd>@\\x9e\\x1f\\x85\\x98;1?\\xf03q\\x0c\\xf9\\xbaF?@\\x10T\\x9c\\xe9\\x081?\\x00y\\xed\\xc0V@(\\xbf]\\'\\x0c\\xf7\\xdc\\x87P\\xbfX\\t\\xcb\\xf5\"{2\\xbf\\xd00\\x158\\xe9^9\\xbf\\xbc\\xa2\\xb5\\xd3\\xfa\\xe2S\\xbf\\x90\\x0b\\xacZmG\\x15?p\\xb7M\\xe6eD1?@\\x1f\\xbeLD\\x9f0?\\xd44a@4\\x8e\\\\? \\xaf\\xd6\\xc0\\xcf\\x06E?@n\\x96\\xfa\\xcc\\x96A?\\x80+\\xfbD\\x82\\x11<\\xbf\\xd0\\x11nW\\xc5\\xd7P\\xbf0\\xf3\\x85\\x1c*;^?|\\xf3\\xef\\xd7\\xba\\xf6P?\\x8cE\\tc\\x1c\\x033?\\x00v\\xcb\\x9b\\xe2\\xadG\\xbf\\xd0~<h$\\x18>\\xbf Kw\\xf9\\xedM!?\\xc0s\\xd7\\xfa\\xef2F?$\\r4\\xff\\xc1&@\\xbf\\xbc!\\xab\\xb7\\xe592?@\\x84\\x11\\xe6\\xd2Jl\\xbf\\x00j\\xbfj@\\xb6R?@\\xcaX\\xc7\\xe87??\\x80\\xa5\\xbfR\\xee\\x02K\\xbf\\x92\\x85\\xab0\\x89/j\\xbf\\xc0\\xecP\\xcaw) ?H@\\xa7\\x03\\t=-\\xbf\\x14k)\\xee)\\x00\\x11? \\xd5s\\x14\\xf4\\xb9\\x1b\\xbf@B\\xe6\\x08\\xa3\\'\\x1d?\\xc0$\\xc7T\\x12\\x9cA?\\xb0\\x04MepG<\\xbf\\xf0\\x02\\xfc\\xba\\xb5D_\\xbf\\xe0\\x94\\xe8\\xfb\\xcf\\xdbT\\xbf\\xa0&\\x90#\\xd9\\xf4]\\xbf\\x00\\x93\\xb5M\\xac\\x98\\r\\xbf@\\xea\\x10k\\xa32+\\xbf`g\\xb8\\x96\\xcc\\x13!?\\x80\\xac#\\x9d\\xd0\\x98@?\\x00<te\\x9c_\\x0e\\xbf@\\x0f1D\\x89i\"\\xbf\\x84\\x19\\xa7\\xaf]\\xedT?\\xc0\\xd3\\xc5\\xa1\\xf7\\x85K\\xbf\\xf0\\x08\\xbb\\xaf15`?\\xd0q\\xd8\\xc5\\x81\\x90G?\\x80A\\xf4G;\\x86J\\xbf\\x00\\xe2\\xcc\\xe4\\xc8\\xdd\\xf8\\xbe \\xb3\\x1c\\xba\\xa3E5?\\x00@\\xcc\\xaa\"\\x0b\\xc8>\\x00\\xc6\\xd9\\x8a%\\xc4A?\\xe0\\xba\\xe6H\\x103\\x1a?\\x00\\x0c\\xea\\t?\\x13\\xf0>\\x00\\xd0\\x90\\xfb\\x04/>\\xbf\\x000\\xc83c\\x85\\xfa>\\xd0\\x83\\x8f\\xfe\\xc6+I\\xbf\\x00\\xe0\\x9b\\xc5\\xbb\\xd5\\x0c?\\x90\\x87y\\x0e\\x9d\\xf2G\\xbf\\x00z>5)\\xe2E\\xbf\\x00r\\xfbb(\\x0e7\\xbf\\x00\\xa0U\\xbe\\xff\\x80)\\xbf\\x00\\xa8UG\\x12\\xdc\\x15\\xbf\\x00\\n\\xcb\\xfefv@?`\\xf2Z.\\xd9\\xb0G\\xbf\\x80\\x91\\xd1\\x9e\\xbd\\xcfG\\xbf\\xc0\\x82#\\x9b\\x8d\\xc7M?\\x00\\x14\\xd3/\\xbeh\\x1d?\\x80}\\xa1A\\xeb\\x11R\\xbf@\\xda\\xafx=\\xd52?\\xf48,rbt^\\xbf\\x90g\\x19\\xae\\x17\\xd5K\\xbf0\\xfc\\xd0\\xc1\\x1b*I\\xbf\\x10\\x16\\x123\\xfc\\xacE\\xbf\\xc8\\xb8x\\x8d\\xa2\\xdc#?\\xf0\\xbb\\xe7\\x9d\\xbb\\x931?@\\xb7\\x83^\\x05\\xf8[? \\xaf\\xd6\\xc0\\xcf\\x06E?\\x8e\\xfe,k-\\x8bn?P\\xf0gn\\xfb\\x17Y?\\xc0\\xa6\\xb6\\x0f\\x87\\x17C\\xbf\\xf0\\t\\x93\\x1d\\xe5\\x15c\\xbf\\xa0\\xb3F\\x9e1\\xbb6?\\x90\\x0bW\\x93\\xc1N\"?\\xd0p\\xa8\\x17,k\\x07?\\xb0\\x11\\xb4\\x9f\\xbb~G\\xbf\\x00(s\\xc0\\x17\\xcd\\xed\\xbe\\\\\\r\\xb5M\\xdc7H?@\\r\\xdf\\xd9\\xf8tE?Pu\\xf2\\xa3\\xa7\\x08:\\xbf\\xf4\\xc3\\xc2D\\xb5\\xfa(?\\x90\\x9f}\\xc5\\x83\\x00o?@\\xe2T!9\\x98\\'\\xbf\\xc0\\xe6\\x86\\xa8\\x10\\x9f6\\xbf\\x00\\xaa},)\\x9f!\\xbf\\x8cJ\\x1eM3\\x00^\\xbf@\\x12{\\xf5\\t\\xb3/?\\xf1C\\xa8\\x9c+R8\\xbf\\xc2_\\xe8\\xf6\\x1d4\"\\xbf@!\\x12\\x91]\\xe0\\xfb>I\\x04\\xa1YH\\x92R?P\\x0f\\x1c\\xb0/I@\\xbfJ\\xfaO\\xcfa\\xc6B\\xbf\\xb8\\xb5\\xad\\xbe\\x18\\xd1_\\xbf\\x80\\xdd\\x16\\xc0\\xe4{!\\xbf\\xc0Q\\xf9s\\xb3kb\\xbf\\x00\\x93\\x8f\\xc7b\\xe4\\x0e\\xbf\\x98\"\\xd8[M\\x971\\xbf\\x00\\x06;\\xb1\\x88H\\xc6\\xbe\\x80N\\xe6\\xd6\\xe8\\xd0Q\\xbf@\\xd9\\x9b\\xb6\\xb3h0\\xbf\\xb4\\x80*\\x9f\\xb5\\x1dR\\xbf6\\x80^\\x81\\x1axW?`\\xe54\\x08?\\xa9K\\xbf\\xd0\\xb4|\\x14\\r\\x83^?\\x9b\\xa1\\xae\\x9b\\x98\\xd3V? \\x9a\\xb7\\xf6\\x91\\xefU\\xbf\\x00\\x17\\x1b\\xb4\\xa9\\xb8\\x14\\xbf\\xd0\\x9e\\x86=4\\x165?\\x00(2\\xa7t\\'\\x18?\\x003\\x86\\x0f\\x97\\xc0!?\\x00\\xd2\\xf2=\\x01\\x04\\xe0\\xbe`\\x04\\xb3O\\x7f\\xdf0\\xbf\\x00\\xd0\\xaa\\x89\\x88\\xcd\\xe7\\xbe\\x80\\xba28\\xff\\xdfG?\\xa0\\xe7\\x97\\\\7\\x8aJ\\xbf\\x80\\xdd\\xc6\\xf7z\\xc42?\\x10\\xd4z\\xc8)eA\\xbf \\x8b\\xb7%8\\xa6@\\xbf\\x00\\x8c\\xc6\\xd6j\\xff\\x10\\xbf\\x00\\x99g\\xfaW5\\x19\\xbf\\xc0X\\xf1\\xf7*\\xf5B\\xbf\\x00L\\xb4\\x9a\\x0c\\xcd>?\\xb0E/\\x06\\xc7\\xc2G\\xbf@\\x97G\\x1e\\xe1\\rM\\xbf\\x10\\x97|\\xed\\xd9\\xbaN?\\x80\\\\~\\x04\\xb3\\x8c\\x16?\\xc0gG\\xc6\\xc5\\xf5C\\xbf\\x00\\xbbHx\\n\\xa8\\x1f\\xbfF\\xdaCA\\xb7\\xdc\\\\\\xbf\\xf4h\\xd2x]\\x98;\\xbf0\\xb3T\\x1e\\xfa\\xa6B\\xbf^\\x9f\\x19T\\xb1\\x86S\\xbf\\x80\\xa9\\xe5\\xc8\\xf9K\\x12\\xbf\\xd8\\xe1\\xc4\\x82 \\xcd;? \\x1d\\x7f\\xd8l\\xf0\\\\?@n\\x96\\xfa\\xcc\\x96A?P\\xf0gn\\xfb\\x17Y?V(\\xb2v\\xc7@g?\\xa02:Y0\\x0f5\\xbf\\x10\\xf4d}~tZ\\xbf\\xa0\\x8a\\xf0w^]E?\\x00\\xa1\\xd9{\\xf5\\xce\\xec\\xbeD\\xbf*@\\xbc\\xbf-\\xbf@\\xeds\\x1c\\xcb\\x14.\\xbf\\x00\\xb8\\xa0\\x96\\x18[\\xcc\\xbe\\x00f\\xf9(\\x91*\\xf3\\xbe\\x00\\x9a\\x06\\xd4}\\xbb\\x0e\\xbf\\x00\\xc8\\x88\\x15\\xa6\\xea\\x08\\xbf\\x0c\\r\\x88\\x06\\t\\xb8%\\xbf\\x00\\xb2\\x16\\xd4\\xfe\\x82R?\\x80\\xfan~\\x0f.D\\xbf\\x00\\x7fF\\x94B4(\\xbfP\\x05\\x97\\xf6|\\x07a\\xbf\\x80w\\x9f\\x1e\\xafZ\\x06?\\x80\\xe6\\xa0\\xe1\\xb8\\xfd.\\xbfpR\\x9aF0^!?(\\xd5Q\\n\\x9f\\xdc\\x11\\xbf\\x00vGm\\xf4\\xbc\\xf7\\xbe\\xb0)\\xe4\\x95\\x1b\\\\Y\\xbf@\\xfbn\\x18\\xc3-=\\xbfH\\xf2\\xd3\\xc4\\'\\xbcQ?\\x08.\\x8dwU\\xbcU?\\x00`\\xadI\\xa49\\x15\\xbf\\xe0\\xcaU\\x92*yM?\\x00L\\x95 \\xf1\\x13\\x00\\xbf\\xa0(\\xc6\\x13\\xbb\\x07\\x14\\xbf\\xc0\\xfb\\x17\\x1b6\\r\\xfe\\xbe@\\xc5\\xef\\x8eo\\xc3D?@\\xe8\\xed(\\x06(7?$\\xde`{\\xae\\xd1V\\xbf\\x001\\xf8\\xc2i\\xfe\\x03?@\\\\\\xbf2\\xaegH?\\xc0@~\\\\h\\xddK\\xbf`\\xc1f\\xbc\\xa6\\xd3/?`\\x10\\xc7\\x97\\xe6s4\\xbf\\x00\\xd8\\xf5vI\\xf9\\xd5>\\x00\\x9c`]\\xcb\\xf0\\x0f?\\xc0:\\xd1~\\xca7:\\xbf\\x00\\xcd]\\x1f\\xcd\\x9b1\\xbf\\x80\\xee\\xf5\\xa0I>\\xf5>`\\xe1\\xa5oN\\x8e ?\\x00\\xab\\x9cw\\xc9\\xae9?\\x00 i\\x88\\xeb\\x82\\xe5\\xbe\\xc0\\xc6\\xb8]_\\x00\\x1d\\xbf\\xc0\\x92\\x8bQ\\xd76&?0\\x81F\\xc8d>?\\xbf\\x80\\x1eN\\x94\\xf0\\x192\\xbf\\x00\\xd8\\xff\\x9f\\xe7\\xb1B?\\x00\\xc2\\x19\\x84\\xd7\\xc4\\t?@\\xc5\\xa0\\xf4\\x85\\x864\\xbf\\x00x\\xfa\\x0f\\xd8E\\x1b\\xbf\\x00\\xe8\\xc7\\xbf\\x9a\\x04\\x0b\\xbf\\x00\\xdcyqn\\x87\\x16\\xbf\\x00\\xaa\\x11\\xed\\xa29 \\xbf\\x00.HQ\\xef\\xa3\\x1a\\xbf\\x00`\\x98\\x90\\xa4\\xad\\xf4\\xbe\\x00\\xc2\\x83\"Vi\\x0e\\xbf\\xd8\\xbf\\xd9\\xd3\\xf2uA?\\x88\\xba\\xed\\xbe!<<?\\x00`\\xe9\\x9dj\\xf4\\x0e?\\xd8\\xda_\\\\\\x94-E?\\xa8\\x03;\\x0e\\xdc\\x023\\xbf\\xc0\\xd7\\x81\\xca\\x0c\\x8f\\x10\\xbf\\x00\\x8c\\xd3<\\xe9s\\xff>\\x80+\\xfbD\\x82\\x11<\\xbf\\xe0\\xa6\\xb6\\x0f\\x87\\x17C\\xbf\\xa02:Y0\\x0f5\\xbf\\x94L/\\xb8U}X?\\x00\\x0e\\xb7<\\tYM? \\xbe\\x14\\xaau%^\\xbf@\\xd8\\xee\\x8b\\xd3\\xecO\\xbf0\\xe8\\xa4\\x083t;\\xbf\\xb0\\x8e`\\xfe\\xda\\xf4X?\\x00\\xb0Ho z\\xdd>\\x805\\xbe@O)\\x0f\\xbf\\x00\\x88\\xb30\\xcf\\x90?\\xbf\\x10\\xd3\\x05varH?$\\xb0n\\xae.\\xb4=\\xbf@\\xc1\\x83\\xa8&\\xa1q?@O\\x15\\xdbrHB\\xbf\\xc0<\\xd2M\\x97\\xbaJ\\xbf@\\x8dY]\\xc4\\x1bj\\xbf\\x98\\xa7\\x80OH\\xacf?\\x00[\\x8d\\xd7\\xdd.C\\xbf\\x86\\x91\\xdc\\x1b\\xd3\\x8c>?P1\\xf9B\\x101\\xf1> \\x94\\x82q\\xa8\\x05\\x1a\\xbf`Y\\xe4jz\\x80_\\xbf\\x80\\x94\\x10v\\x1e\\xe7M\\xbfJ\\x11\\x8c\\xb9\\xe7\\xedX?\\x18\\x8a1\\xdf\\xc3\"n?\\x80\\x0c\\x1f\\x9f\\x98ZD?P\\x9e\\xc5\\x96h\\xd3i?\\xc08\\xba\\xa5\\x83\\xba)?00\\x88\\xcd\\x90s1?\\xb0\\xfb{,~\\x95#\\xbf\\x80\\x80\\xb8N%\\x8e5?\\x80\\xe9\\xbfh\\x03\\xfaL?\\xb8q\\xf0-\\xd4fT\\xbf\\xe0(\\xfd\\xfaI\\xb7Y\\xbfP\\xcf\\tA\\xa4+`?\\xd0\\x00\\tN\\xd8Ml\\xbf`o\\xcc\\x8b5\\xfc/\\xbf\\xe8\\xdc\\x8d}Z\\x05Z?\\x80\\xbc\\x0b\\xf0\\xe9\\xdc/\\xbf\\x80\\xc0\\xa5j\\xf4W\\x1a\\xbf\\x008.\\x0f\\\\\\xeb\\x00\\xbf\\x00\\xc8\\xdb\\t\\xd1\\xfaB\\xbf`\\xcd\\xd8\\x83\\xcb\\xf1\\x15?\\x00S\\x16\\x9fX\\xd8\\xf7>\\x00-VPQvD?\\x00\\xf1R\\xfaO\\xba1?h>l\\x17O\\xba[?\\xc0\\xbfm\\x06\\x93G:\\xbf\\x00\\xa4\\x9c\\xde\\xe7\\xbc\\x0f\\xbf\\x00\\x83\\xfa\\xc5\\x1bw;?\\x00\\xd0\\xb4rn\\xa9=?\\x00p\\x14M\\x90\\t\\xf0>\\x80\\xcbhz\\x96\\xfb4?\\x00\\x9eCd\\x89\\xb7D\\xbf\\x80\\xaa\\x8a7\\xb8\\x81E?\\x80m\\x03\\x10\\x99\\xbeA?@o\\x8a\\x94\\t\\x0cF\\xbf@\\'\\xd4\\xbc\\x19\\xad=\\xbf\\x00\\xf8\\x85\\t\\xf6\\x10G?\\x00@\\xec!\\x15\\x0c\\x02?6\\xa1u\\xe2\\xe6\\x02V?\\x90\\xcb?X\\x86\\x16J?\\x80\\xa8\\x10-C\\x08B?0\\xc6\\xae\\xdf\\x9e|M?\\x000\\x92c4\\x8d1\\xbf\\xe0m\\xc4]\\xf4\\xebI\\xbf\\xe0*\\xf7+\\x95\\x02Q\\xbf\\xd0\\x11nW\\xc5\\xd7P\\xbf\\xf0\\t\\x93\\x1d\\xe5\\x15c\\xbf\\x00\\xf4d}~tZ\\xbf\\xc0\\r\\xb7<\\tYM?\\xaf\\x95\\xbf\\xa8G\\x9ap?\\\\@\\xdd\\x9c\\xcf\\x9a\\xc0?\\xfcc\\xb0\\x14!\\xf1\\x90?td|~\\x10\\x97\\x92\\xbf\\n\\x81(\\x003\\x8d\\xb3?\\x070\\xf7[\\x03\\xbay\\xbf\\xf8$\\xee\\x83\\xf7+\\x84?8m\\xbaE?e\\xac\\xbfPMV\"w\\xf0~\\xbf\\x02\\xe8\\xe8h\\xe9\\xfbf?\\xca\\x8b\\t(\\xe5\\x96\\xb1\\xbf\\xba\\x8c\\xcd\\x8b\\x04\\xbb\\x92\\xbf\\xe0\\x82\\x10#P\\xb6\\x8c?\\xa44o\\x90,g\\xb3\\xbf}\\xdc\\xbe\\x87rh\\x83\\xbf\\x88\\xbe\\x99o\\xb3fk\\xbfl\\x91\\xb3\\x90\\xdf\\xd0\\x8d?6r\\xae4\\x94\\x14r\\xbf1(\\x7f\\xa1\\xf9\\x1ae?\\x00u~*\\x18\\xad\\x15?\\xacT\\xfa\\x84?\\xfas?\\xa0\\xf9\\x7fW\\xea\\xc2`\\xbf\\x046\\x98\\xbbK\\xfc\\x92?\\xd4\\xca\\xaa\\xf4H\\xba\\x84\\xbf`\\xa0\\xc1\\xeaP\\xa5q?\\x80\\xc7\\xc2p\\t\\x17\\x04\\xbf\\xa8\\xa6j\\x06B\\xeer\\xbfK\\xc4\\xf09\\xeala\\xbf\\x00\\xeb\\xb5?B\\xd3r? \\x05\\xbcU\\x94\\nx\\xbf\\xe0\\xf5\\xbbi\\x10X\\x87\\xbf\\xd4,}\\x1f\\x01\\xf3\\x87?\\x94u\\x9di\\xc9\\x90\\x8e?@NHW\\xa7\\xc1W?L+g~\\xf0N\\x94?\\xd8D\\x99Ea\\x05\\x8e\\xbf+\\x1b\\xa1]H)\\x89?\\x82zz\\xb1\\x9c\\xa2n?\\xf0\\x87\\xcf\\xb9\\x90\\xa1t?\\x80\\xd1J\\x1f\\x14\\xc1u\\xbf\\x08\\xfb\\xfe\\xe0\\x14\\xedo\\xbf|\\xca\\xb9\\xf4it\\x89\\xbf0\\xba\\x8c\\xb2\\x01\\xd9\\x80?\\xd22)!\\xc3h\\x99?@\\xb5\\x9ed\\xc2\\xe0~\\xbf \\xc8d\\xee\\xf0cl\\xbf\\xded\\x9c\\x15K\\xf9|? P\\x1d\\xb5\\x94\\xf9z\\xbf\\x803.\\x956\\x1ed?:\\x95\\x89rv\\xe2\\x92?H\\x16+A\\xb4\\xad\\x8b\\xbf\\xa0\\x8cL6\\xe1vr\\xbf\\x86\\x94\\xc3\\xe9<v\\x98?\\x90\\t\\x86\\xf1\\x88\\x9c\\xa0\\xbf\\xf0\\xff\\xca\\xf8(\\xabz\\xbf\\xd2\\x07\\nX2!\\x95?\\x08e\\x1a\\xc9t\\x02\\xa0?\\xe0*V\\xe5n\\xf6x?\\xb0c5\\x80u\\x01t?\\x83C-\\x00\\x16U\\x90\\xbf\\x16\\x95O\\x14\\xbfX\\x91\\xbf\\x84)\\xde\\xe3\\xd2Te?\\xa6\\xe4\\xa2\\x96\\xa3\\x12\\x81?x\\x84\\xff\\xa50y\\x88?\\x18>\\xf4\\xd4\\x8e\\x9c~?@X\\xea-\\x90sK?`ZY9\\xea\\x9fh?\\xac\\xaa\\x80\\xff\\x93\\xaf\\x83?\\x00v\\xdaF2\\xb2<\\xbf\\x00\\xcd#C\\x12\\xf4e\\xbf\\xfcc\\xb0\\x14!\\xf1\\x90?p\\xfc\\x84\\xc7H\\xcf\\x82?21\\xc5\\xa3\\xd5Oc?\\x9d\\xeaB`\\x8cmr?\\xa86\\xb9.1Y]\\xbfm\\xde\\x9b\\x82\\x8e\\xeeW\\xbf\\x1b\\xf0\\x15\\xd7\\x96\\xe5t\\xbfUV\\xc9\\xb8\\xbc\\x8df\\xbfr\\x89\\xd2\\x92\\x9f\\xd9F?\\xee\\x9b\\x06A)\\x96\\x81\\xbf\\xcar\\xb8sI\\xf6m?\\xf9\\x93\\x9bU\\xd4\\xe1L?\\xaa3\\x11\\t:\\x11\\x81\\xbf\\x85\\xc0\\x96\\x02v[d\\xbf*%\\xb7i\\x8ccM?.\\xbd\\xf4h\\x0f\\x19P?e\\xd1\\xf71\\x11a_\\xbfja\\x03\\xccz*G?\\xaa_T\\xf0L\\xc2j\\xbf\\xc9\"\\xd6\\xd8\\x1d\\xafl?\\x9c\\x80\\xf6\\x1e\\x8c=L\\xbfp?d\\xd7\\xdaFC?z-\\x1c\\xda\\x9e\\x12[\\xbf\\xde\\x9bzx:$R?(\\x8d*\\x83X;G\\xbf\\xf7\\n\\xd6\\xa8\\x15\\x99^\\xbf6E\\x87\\x0fyJ\\x15?\\x95y\\x8f\\x8a\\x9a\\x01i?\\xb9\\xb1m\\xc3T\\x08[\\xbf\\xacs\\xb2\\xa7^\\xf9E\\xbf.\\xd2R\\xdc\\x1c4d?\\x1a\\'\\x14O\\xdcnZ?\\x00o\\xb2\\x96\\x01Y\\x15?\\x84\\x81\\xf5\\xf6QSb?C\\x0f\\x92\\x81RjX\\xbf\\xae\\x17\\xa0~\\x1f\\'Y?Z\\xb3\\xe9yuf0?\\xbc\\xc8\\x8b\\xa6\\x16Ta\\xbfHch\\x0f\\t\\xdeG?\\xc0\\n\\xc7\\x81\\xb8\\xfdQ\\xbf\\x8cR\\xa6\\xb9\\x8d1\\\\\\xbfD/\\x804\\xea\\x96D\\xbf\\xc9\\xf3\\x07F\\xda\\xfeY?\\xca\\xa1\\xaeQ\\x82W3\\xbfTI\\x0f\\x8e#\\xb7\\x1f\\xbf(o\\xadp\\x1a\\xa2e\\xbf\\x9bD\\xd7Oq\\xe4Q?E\\xe6\\x96\\xae?\\xc7\\x7f?\\x85\\r\\xc9\\xd5 FQ\\xbf{T\\xd3\\x12\\xc1\\x86n\\xbf\\x0f\\xb0\\xbd\\x04\\xda\\x1b{\\xbf\\x11\\x95\\xfd\\xc2\\x06Pe?\\x011\\xa1w\\xed\\xe8y?>\\xabs3\\xb1:t\\xbf,\\xb6\\xe5\\x9e\\xf9+]?\\x142\\xb3;\\xc6\\x0ec\\xbf\\x0eJ]\\xeab\\xa9o? .\\xf0G$\\xed\\x82?\\x18\\xad\\xbf,\\x7f\\x95[\\xbf\\xaa\\xa5\\xa0\\x11\\xb2Ai\\xbf\\xa8\\xcc\\xb7\\xf7\\xee\\xa7e?NjE\\x82\\x99\\xc0G?\\x90\\xba\\x0eXy\\xa4e?\\x10\\xd5\\xd7&\\xbevd\\xbf\\xb2\\xa7\\x05\\x9b\\xd1A7?(R.\\xb3\\xdc\\xb64?\\xce&\\xbc\\x13M;:?\\xaeZ\\x0cX&\\xa61\\xbf$.W`8\\xeaB\\xbftd|~\\x10\\x97\\x92\\xbf21\\xc5\\xa3\\xd5Oc?\\xa5D\\xeb\\x9b3\\xb0\\x95?\\xcc@\\x8e\\x8fta\\x91\\xbf\\x902s\\xc8.\\xd94?82\\xe2\\xff\\xaa%\\x89\\xbf\\xd0cj\\x0e\\x05\\x81x?>\\xc4\\xbf\\xcf\\xca\\xecA\\xbf\\x80\\x9c\\xe8z\\xb0\\xad_\\xbf\\xc0\\x90]\\x98;\\x17\\x8a?\\x00J7\\xcfo1\\t?\\x10~\\xdaR\\x0c\\x02Y\\xbf\\xd8\\xc6\\xdf\\xf4\\xe6u\\x8f?\\xf80\\x89\\xe7\\x9d\\x8fw?\\xf07\\xd5!\\xf7\\xae]?\\xb4^8\\xbd\\xbb\\xacQ\\xbfv\\xbfOD\\xbb\\x1a;?\\xc2$EKi\\xf5B\\xbf\\x9aID\\xaf\\xab\\x99t\\xbf\\x00\\xec\\x18\\xe9\\x9c\\x10B?\\xa8\\xcc%M\\x94Zw\\xbfl\\x9dk\\x9c\\x9a\\x93\\x7f\\xbf,zR\\xa2\\xacTv?\\x80\\xd0\\xb8j\\xdc/0\\xbfA\\xbfw\\x94\\xf8y`\\xbfx1\\xe8\\x83\\xc1\\xdaC\\xbfx\\xb8\\xbf\\xe2|\\xdf5?\\x00\\x17\\xf4\\x17b\\xd0(?\\xc0\\x7fH\\xd1\\xf1pY?T\\xef\\xdb\\xbd\\xb0K\\x84?d\\x02O3e\\x85`\\xbf\\x84>\\xeb\\xd6\\xa7Z\\x83\\xbf\\xb0N.\\x13\\xee`e?\\x90`\\x18\\x8b\\xc3Mc\\xbf\\xe8O\\x7fW\\xd8{t?\\xf4:\\xdd\\xdf+\\nW\\xbfPGH\\xab\\xad*J\\xbf4\\xed\\xa3\\x8e\\xdc4T\\xbf@ga^\\xd4\\xbfb?x\\x92G\\x00\\xdf\\xa8R?\\x00\\x1b\\x07\\xc5hm9\\xbf\\x00\\x99\\x987\\xd6\\ng\\xbf\\xd4\\x04\\'I\\x9cnv\\xbf;,\\xaaHg7e?@\\xdd\\xa7\\x7f\\xf6\\x07F?\\xdd\\xd5\\x07\\xb9\\xc7Vv\\xbf`\\xa1\\xb8\\xdds\\x03f\\xbf@g\\xe81c\\x04w?tk\\xdf.j\\x90t\\xbf\\xb0\\xf3\\xbf\\x15\\xba;a?\\x80\\x07\\xf68\"&a\\xbf\\xa5\\x16\\x98\\xea\\x95\\x82\\x80\\xbf\\x80R\\xd2s\\xe0\\x9aR\\xbf\\x80\\xa4\\x8ag\\xd6bv?P\\xbdp\\xeb\\xa8\\xf4s\\xbf\\x00\\x803Mf[\\x17?\\x88\\x96\\xb2S\\x08\\xc2p\\xbfl\\x87\\xccb\\x1fip\\xbf\\x98\\x04\\xf4?\\x7f\\xd3i?\\x00\\xe1{E\\x0f\\rG?\\xa1\\xcc\\xc6\\xbb\\x91[r\\xbf\\x04\\xd3F\\xbd\\xea\\xede\\xbf\\x14Ul\\x83\\xe6\\xe8c?\\x80c\\xee\\xbei\\xc4G?\\x00)\\xaa3\\xc5DV?\\x00\\xd6\\xb4+m\\x12/?\\x88\\xcd\\xd6\\xbd\\x07f`\\xbf\\xa0\\x9eT\\xc5\\xea\\x18K\\xbf\\xc0\\xb3\\x0b?:\\xfeL\\xbf\\n\\x81(\\x003\\x8d\\xb3?\\x9e\\xeaB`\\x8cmr?\\xcc@\\x8e\\x8fta\\x91\\xbfSN\\xe8}\\xfc\\xd1\\xc0?\\xae\\xa7y\\x84\\x0e\\x8f\\x8f\\xbf\\x80\\xf1\\x904\\xef\\x03\\x90?\\xba\\x9a\\x14\\x0e\\xb8\\x8a\\xac\\xbff\\x17\\xdb\\x15\\xe8w\\x86?\\x92\\xd4\\xb9[\\xbaX^\\xbfX\\x85\\xab\\xeb\\xf3\\x9a\\xb0\\xbfP!\\xcdz\\xa4VZ?,\\x9a]\\x18\\xc6\\x16\\x81?\\x84J\\r\\x08\\xca\\xdc\\xb3\\xbfB\\xa9\\xf3i\\x0f\\x97\\x81?\\xdc\\xe3\\xdb\\x00\\xacs\\x80\\xbf\\xce\\xdb\"\\xfcZ\\xf0\\x8b?\\x883\\xaa`\\xfacu\\xbft\\x81J\\xaa=1Y?\\x1c\\x1f0\\xd8\\xc9\\xae\\x88?\\x88\\xdf\\xce\\x04\\xde!|?\\xb8\\xbe6\\x18\\r\\x93z\\xbf0\\x1a\\xdb\\x96\\xfeSo?\\x00=\\xf2Fp\\x9dy\\xbf`\\xac\\xceq\\x18\\x03\\x7f\\xbf\\xd0\\x07\\xf8\\x90n\\xaeO?\\xac\\xa9\\xd3\\xad\\xabri?nmg\\xc1\\xc9\\x92d\\xbfH\\x8eeC\\x1f\\xda\\x80?\\xa0\\x0fU\\xe9\\xab<w\\xbf\\xc0\\\\\\xe0\\xd0\\xb6\\xebR?8mG\\x8d\\xb1x\\x7f?\\x9c\\xa1\\xdd\\x95\\xb6\\x92\\x80?\\x90s\\xfe\\xdc\\xabe\\x91?\\xb8\\x07\\xc22\\x1a\\xf0\\x93?\\xe0\\x0b\\xa3\\xcd\\xb5\\xc1`\\xbf|]/\\xc7\\x9d\\x14\\x88?\\xe0\\xe9\\t\\x01\\xff\\xc0J?\\xe4\\x19e\\x80\\xc52\\x86?\\x80\\x95ke\\x03\\x7fu\\xbf8\\x04\\x95\\xfdH\\x8fg\\xbf >\\'rz\\x1f|\\xbf\\x80\\x12T\\x0b\\xce\\x9a\\x81?\\xc6{TU\\x1fw\\x97?\\xb4&\\xa9\\x8d\\x10\\x1e\\\\\\xbf\\xb9- \\xd6inx\\xbf\\xb6|\\x06\\x9e\\x8a\\x9c\\x89?\\x10\\x08\\xd1\\xee5\\xc9\\x82?@*t\\x8a\\x1a\\ny?\\x9a\\x9cn~\\nE\\x8d?\\x00\\xee\\r\\x19v\\xb8<?\\xc0\\x10\\xcf\\xf1\\x1d\\xf5z\\xbfg\\x94\\x07\\xe8K\\x17\\x96?\\x80\\xadG\\\\\\xbb\\xbe\\x89\\xbf\\x00\\x15\\xadU\\x99\\x00\\x8c\\xbf\\x10Z\\xbb_h\\\\\\x95?\\x800\\xb7\\xdaA\\x08\\x91? s\\xffK\\xd4!\\x8b?\\xd0\\x9e\\xa94\\x82bh?\\xf4\\x9cK\\x02\\x1d\\xb4\\x89\\xbf\\xe2\\xe06y\\xdf\\x12\\x91\\xbf\\x10XC1\\xe5{v\\xbf\\x0cF\\x1a.1\\xa5|?t\\x87\\x9a\\xf8\\xa5\\xef\\x84?\\x00\\x88G9\\x8b\\xcd??0s\\x9c\\xe7\\xdeDi?\\x80\\x8d0Y\\xb9\\x08^?@(y\\x9d#\\xb9y?@\\x1a\\xf0\\x023Xj\\xbf K\\x06\\x97\\xc2ah\\xbf\\x070\\xf7[\\x03\\xbay\\xbf\\xa66\\xb9.1Y]\\xbf`2s\\xc8.\\xd94?\\xaf\\xa7y\\x84\\x0e\\x8f\\x8f\\xbf\\x9e\\rhQ\\xf3#\\x80?\\xf0E\\xb3\\x03b,G?=\\x9f\\x0f\\xb3\\x90\\xddq?>\\x94\\xf4\\xa6\\xe5\\x1cg\\xbf\\xee\"\\xd3\\xbe\\x16F1\\xbf\\x1e@\\xc9\\xb8\\x0c\\x9ey?\\xccV\\xca\\xdb\\x06U`\\xbf\\x80\\xab\\x02\\xf6\\xa5T\\x19?M\\x9c\\xcb21\\xc7\\x80?\\xfc\\x83\\x94k\\xd8=w?H\\x19\\xc2\\x9e\\xeb\\rM\\xbf_\\x10\\x96\\xdd*\\xafK\\xbf\\xc0\\xf9\\x17?X\\x9eA\\xbf\\xa8\\x97&\\x07F\\xdbR?\\xb2a\\xeb\\x9f\\\\\\xae`\\xbf G\\xda\\x99TNV\\xbf.\\x9b7\\x00v\\xdd]?$S\\xa8\\xae\\x1dHV\\xbf\\xa4\\x98\\x82\\xb9\\x83\\xb2t?P\\x9aW\\xd6\\xd1=D?\\xd0\\xa3\\r\\xef.\\x0c\\x04?\\x80\\x83\\x0e\\xb5\\x12\\xe8[\\xbf\\xf2\\xec\\x19\\x04\\xfaC6?\\xe4q\\x0ex`\\xa3Y\\xbf -\\xc6P\\'\\x7fZ?\\xf0\\'\\xb1\\xc8\\x0f|O\\xbft\\xe8\\xd4F\\xfa2S\\xbf\\xc8g\\xc2\\xc99\\xf0c\\xbf\\xa8\\x9a\\xdbVu\\xecP\\xbf\\x88\\x06\\xb9\\xd8R`e\\xbf\\x00\\xbe\\xe7\\xfc}<\\xf1>\\x9c\\xfb&;\\xd5\\x935\\xbf\\xe3\\x03E\\xf1\\xbdkK?\\xd2\\x9b{ \\x8d\\x01Q\\xbf`z]\\xbc\\xb3u9\\xbf\\xf04h\\x95\\xb7=+\\xbf\\xa4\\xc8c\\xfc\\x05\\xdeQ\\xbf\\xc0\\xb9!\\xda&\\x82G?h\\xff&\\xaa\\xe6\\tg\\xbft\\xbe0\\xc6AtU\\xbfx\\xd0\\x15\\xf0\\x0c\\x90.?\\x8d\\x8b\\xa5W\\xfd\\x12@?v\\xfdN\\xe0\\x7f\\xa3q\\xbf&\\xd2\\xf9\\x8a\\x9c\\xad{\\xbf\\xd7\"\"Y\\xe6Qf?\\xfc\\xd1\\x9e\\xd4P7[?\\xa5C\\xcf \\x17\\x8c\\x80?\\xb8\\x03=\\xd2I\\x08I\\xbf\\x94\\x91\\x81J\\x14\\x1ey\\xbf`$4\\x89`\\x96w?\\x002\\xdfN\\x88=\\x04?\\x1c\\x8d\\x04\\xc7&U\\x7f?\\xccb\\xe2v\\x06\\xd6y\\xbff\\xe17\\x0bEml\\xbf\\xd6k\\xa7\\xf2\\xf6\\x17[?\\xa4\\xee\\xbf$\\xf6\\x11h?\\n\\xda,(S\\xfbp\\xbf\\xf8\\xd8\\xa1\\xeb\\xf3*C\\xbf\\xfc\\x9b0\\xdb\\x11\\xb8b\\xbf\\x98[\\x9d\\xf26xP?P\\x89\\xbf\\xf1%\\xc4+\\xbf\\xa0n8z\\tES\\xbf@\\x0f\\x8a\\xf2J\\xf1P\\xbf4\\xc5\\xe6n^\\xe2F?p\\r\\xd5\\xf9\\xa3\\xee]?\\xf8$\\xee\\x83\\xf7+\\x84?k\\xde\\x9b\\x82\\x8e\\xeeW\\xbf82\\xe2\\xff\\xaa%\\x89\\xbf\\x80\\xf1\\x904\\xef\\x03\\x90?\\xe8E\\xb3\\x03b,G?\\xa8\\xd8D\\x17n\\xce\\x92?\\x10[l_\\\\\\xe5q\\xbf\\x83%?\\x81\\xdb)Q?\\xa0\\x87\\xdc\\xef\\xd1CT\\xbfx\\r\\x84\\xd3K^\\x81\\xbf@3\"\\xeb\\xffpl?\\x007 \\x1a\\xa8;Y?\\x90:\\x1aK\\x8ew\\x8b\\xbf\\xa8\\x84\\x13\\xfc\\xfagi\\xbf@I\\x18\\xc0\\xc0\\x84(?\\xa0\\x9fW\\x1b7L\\'\\xbfU\\x0b\\x02*r\\x9e\\\\\\xbf\\x105\\xa1\\xd4\\xd7\\x885?\\xcapAt\\x0c\\xa5{?dAk\"\\x8d\\x10d?\\x00M\\x7f\\x86\\xeb\\xacb?\\xc0\\t\\x90\\xa9W\\x873?P\"]\\xe1r\\xf4S\\xbf\\x10\\xe25\\xf5\\xb9\\xe8u\\xbf\\xa0[AA\\xfbpS?@\\xde{-\\xe5\\x9a-? \\xe6S\\xe9\\x06\\x97\\x0e?\\x90S!N\"+`?\\xf8\\xb7w9t\\xacq\\xbfxXv\\xbcy\\xe9{\\xbf\\x16\\x04\\xd8\\xcd\\xfd\\x1bs?\\xd0C\\xb1\\n\\xf7\\xb9p?\\x90\\x1f\\x0f\\x00d*r?\\x00;\\xe3\\x8d./Y?@\\x81v@{\\x9fM?\\x00\\xf8\\xa7\\xb8\\x7f\\xb7;?\\x18F\\xc6\\xcc\\x81\\x19<\\xbf\\x001\\xd9\\xd3\\xd0\\x0f\"?\\x00\\x18\\x1fz\\xac\\xba4?\\x88?\\x88\\x8f\\xde\\xa0S\\xbf\\x00q\\x1d\\xb4i\\xcd?\\xbf\\x00\\xe6\\xc5\\x81\\xbc\\xb8M?\\xa0\\x1e8\\xa0\">@?pg\\xa3\\xd3<\\x19%?\\x00N\\'\\x00\\xf1\\x88B?@\\xa2_\\xe8e|j?\\xd8\\xcb\\x06J\\xfd\\xecu?\\x00\\x9e|\\x90\\x03\\'6\\xbf&\\xc5\\xc2\\x10\\xa6\\x97p?`\\xb1\\xf5\\x1fY\\xfe]\\xbf@d\\xe7\\x9d\\xf9>n?R-1\\xda\\x82cj?\\x10=\\xe4gZ\\t\\x84?\\x18\\xab-6\\xf2My\\xbfr\\x9c\\x17h\\xd9;\\x82? \\xb3\\x1e\\\\k8u\\xbf\\x98\\xa3\\xf4\\x10\\xa4\\x1ar?\\x14l6Q\\xefou?\\xe8\\xba\\x12]QGW\\xbf\\x80*\\xaa\\x93.E;?\\x08w\\xb0\\x0c\\xe9\\xf6E\\xbf\\xf0\\xa9\\x88\\xa8\\xd8\\x84^? f\\xb2\\xc1\\x0e\\x82@\\xbf\\x80\\x83\\x91\\xee\\x02\\x98g\\xbf\\x10w\\xbc\\x10\\xb9\\xe6E\\xbf\\x00!lsW\\x8eD?\\xc0\\xa2^\\'U\\xcfa?\\x00\\xf3i\\xef<\\xa3\\x11\\xbf\\xc0\\x85-Q\\x1f\\x0f@?8m\\xbaE?e\\xac\\xbf\\x1b\\xf0\\x15\\xd7\\x96\\xe5t\\xbf\\xd0cj\\x0e\\x05\\x81x?\\xb6\\x9a\\x14\\x0e\\xb8\\x8a\\xac\\xbf=\\x9f\\x0f\\xb3\\x90\\xddq?\\x18[l_\\\\\\xe5q\\xbf\\x1a/8\\x16S\\xcf\\xa6?\\x80B\\x9c\\xf6\\xd0{\\xe0>\\x81\\xa5h\\xd2\\x9e\\xfeQ?\\xfc\\x17\\x85m\\x13\\xff\\xa2?D\\xbcD\\x0b3_s?\\x00\\xd1R\\x14oRw\\xbfD\\x88@@B\\xe5\\xa3?\\x00\\xfa0\\x8863}\\xbf\\x88.\\xc7D\\x05\\x17o?\\x8c\\x8b\\xbelo\\x93w\\xbf\\xebz\\r\\xd8\\xf7ic?\\rhs\\xa9\\xceSa\\xbf\\x80\\xda\\x87\\x83h$\\\\\\xbft\\xa8)\\xa8\\\\\\x80q\\xbf\\xec5\\xc7\\xda\\xc4Or?\\xf0\\r\\xc6\\xf1\\xa20f\\xbf\\x80]M\\xf5|\\x9bk?\\xc0\\xae\\x15]h\\x96f\\xbf\\x00\\xeb\\n;\\xc7\\xd2#?\\x84fM\\xde\\xf9\\xf3T?\\xf2\\x9a\\xb4H9O[?@\\xc2\\xe0$U\\xcb[\\xbf\\xf8\\xfc\\x1f,\\x97,s?\\x10\\xf4_)\\x92\\xc4h\\xbf\\xf0\\xeb\\xc8\\xb7\\xa6\\'d\\xbf\\x90\\xba\\x88\\xa4\\x16Q{\\xbf\\xc0\\xf7_\\x7f\\xa1\\x14^?\\x00\\x9a\\xe1)w\\xe2k\\xbf\\x80\\xc2\\xe8<i\\xb8D?C\\xd5Bj\\xbb\\xbb~\\xbf\\xe0\\xd7_(I\\xafJ\\xbf\\xa4Y\\xb3\\xb9\\x06{\\x8b\\xbf\\x00@\\xcc8\\xb2\\xa6!?$\\x89\\xa9\\xd3\\x9c\\xcdf?Z92?1D\\x90? T\\xbaV\\x96%j\\xbf\\xf8\\x87v\\x0elC\\x83\\xbf`\\xfb\\x8brbWS\\xbf\\xb5\\x02\\xde\\x17\\xcc\\xbcr?9\\x10\\xb5\\xe6\\xe6\\x8a|\\xbf\\x00\\x1bb\\xcaR\\xd8U\\xbf\\x00.S\\xb5\\xda4]\\xbfg\\xa5B<\\xccO\\x88\\xbf\\x10\\xe6\\xafv\\x91\\x85t?\\xc0m\\xbf\\xfc\\x82rl??hH\\xb8\\x92\\xd3\\x89\\xbf\\x90\\xd4\\xe8\\xfb\\xbe\\xd2\\x99?\\xe0\\x8b\\xdam[\\x1aj?\\xd8\\x87\\xa8\\xaf\\x1a\\xc1\\x86\\xbf\\xb0\\n\\x10JIX\\x96\\xbf\\x00\\xe9\\x15\\xed to\\xbfo\\xbf\\x0c\\xd0\\xaf4\\x80?\\xac\\xb8b\\xeeu\\xbe|?@%/\\xc2\\xfd^\\x8b?\\xf1B\\x1b\\x98Z$\\x82?\\xf0A\\xcc\\xc0nCk\\xbf\\xb0\\x9a\\xceUf\\x81\\x8a\\xbf\\x08g4\\x1at\\x82r\\xbfP\\xeem\\xc2&\\x96Y\\xbf\\x80\\x98o8\\xa7r3?\\x88\\x12\\xea\\x8f\\x98\\x1bt\\xbf\\xf0i\\xc3xj\\x13b?\\xa0SZ!\\xba\\xeaY?PMV\"w\\xf0~\\xbfUV\\xc9\\xb8\\xbc\\x8df\\xbf>\\xc4\\xbf\\xcf\\xca\\xecA\\xbff\\x17\\xdb\\x15\\xe8w\\x86?>\\x94\\xf4\\xa6\\xe5\\x1cg\\xbf\\x87%?\\x81\\xdb)Q?\\x00D\\x9c\\xf6\\xd0{\\xe0>A\\xc1t\\x89\\xd4\\xf9u?Y\\xb3;\\xc6&\\x8eE\\xbf\\xdc\\x14o\\xf97\\xaaJ\\xbf\\x95\\xffQ?\\xd2\\x13[?\\xadz\\x85\\x84\\xe53E\\xbf\\xc8\\x13(\\x00\\t7d\\xbfJn_L\\xb8&Q?\\xa7\\xbd\\xac\\xf9s\\xd0@\\xbfD=\\x97\\xc2\\x94\\xfb2?\\xd8\\xa9O\\x18:wI?\\xe4\\x94}\\'+1A\\xbf\\x05N/\\x9d\\xa7ha?\\xa8\\xc9\\xb4\\xe2\\xb2\\xf0 ?\\xde\\x96\\xbf\\xa7\\xf8\\xa2M\\xbf@x\\xe7w\\x95RY\\xbf\\x18\\x92X\\xf36w1\\xbf\\xf1;\\xf0L`c`\\xbf\\x80\\x89\\xa5\\x17\\x8f\\x07\\xf6>Mq\\x8d\\xcd\\x8d#e?\\xae8\\xbe\\xc7\\x0fe\\x08?\\xfd\\x9eF\\x0fa\\x17Z?8\\xf2\\x87\\xb3n!2\\xbfj\\xe9\\xa9Zn\\\\a?\\xc9iCg\\x93\\x9a1\\xbf\\xd5zi\\x00\\xb0.G\\xbf\\xa6P\\xdf4\\xb6\\x92h?B\\xa4.\\xab\\xa1RJ?\\x943\\x9e$j\\xa9h? z\\xc2?&\\xdd\\xf9>\\xcd]\\xbd\\x18\\xa3\\x9eT\\xbf\\xb7\\xdc\\xcd_\\xfb\\x965?d\\xbc\\xbd\\xbb\\xfc\\xa6A?\\xba\\xa1\\xf2\\x95F\\x915?\\x81\\x9c\\x935T\\x03n?\\x80Xz_J\\x83)\\xbf\\xc8\\x86<\\xba\\x83\\x89\\x1f?\\x00\\xac.\\xbb3fQ?\\xb6\\xe9\\x13\\x9f\\x83\\xdb<\\xbf!\\x11\\xef\\xb3*\\xf0P?\\xe4\\xfa1\\xa4\\xce\\xd7o?\\xdc\\xf4\\x0bP\\x10[b?`\\xbc\\xd2p\\xda=^\\xbf\\x03\\xcasz\\xc3|q?\\xbc\\xae\\x0b\\x8c\\x1a\\x8c]\\xbf\\xa9\\x01_\\x85\\x9f,Y\\xbf\\xa6NX\\xa5c%x?\\xc4\\x94\\xca\\x82\\xc3wf\\xbf\\x00\\x18\\xe8\\xe3\\xd9)\\xb3\\xbe\\xe6`\\x8f\\x1e\\xdb|o\\xbf\\xb9W\\xd8\\x8cy\\xb0d?*g\\x8c1\\xf97G?0\\xda\\x06\\x90\\xfc\\xfd<?3\\xc1\\t\\x06\\xea\\x91=?\\xc8x\\xfee\\xf0\\x188\\xbfx5x\\xb6\\xbe\\x9e\\x19\\xbf\\x1c\\xd4\\x96y\\xc1\\xf7E\\xbf\\xcf\\xb3+]\\xffL]\\xbf\\n\\x8e=\\n:\\x1e*?\\xc8\\x16XS\\x04)/\\xbf\\x1d7\\xe5<\\x0b\\x1bK\\xbf\\x0c\\xdb0\\x07\\x14\\x95:\\xbf\\xd0\\xa8\\xabr=o\\x1c\\xbf\\x02\\xe8\\xe8h\\xe9\\xfbf?r\\x89\\xd2\\x92\\x9f\\xd9F?\\x80\\x9c\\xe8z\\xb0\\xad_\\xbf\\x96\\xd4\\xb9[\\xbaX^\\xbf\\xf0\"\\xd3\\xbe\\x16F1\\xbf\\xa0\\x87\\xdc\\xef\\xd1CT\\xbf\\x7f\\xa5h\\xd2\\x9e\\xfeQ?Z\\xb3;\\xc6&\\x8eE\\xbf6\\xb0\\xf3 \\xd4\\xdbj?@c?\\xf2\\xc4\\x01U\\xbf\"\\xb8\\xe1\\x95&6E\\xbfP\\xf49\\x0f!\\xce9?\\x87\\x8dF\\x97\\xec\\xean\\xbf\\xf588\\xf4\\x99>]\\xbf\\x18\\xb6\\xdf\\x1f\\x1bN\\x17\\xbf\\xde\\x11P\\xf1752?\\xc9\\x9a\\x13\\x96\\xe70J?W\\x1e\\xf7\\xb3\\xa0\\xd25\\xbf\\xa0\\xd6A\\xce\\xf0\\x7fX?\\xae\\tO\\xf4\\xd3*:\\xbf\\xed\\x049>\\n\\xa6D\\xbf\\x0be\\xf0T\\xd5\\x88W?\\x0e\\x15\\xa0\\x9b\\x83&S\\xbfJc\\xd4\\xe7\\xe1G@?n\\xd3L-\\x1b~!?`\\x98\\xc3\\xa2\\x86\\xcb7?\\x9b\\x98\\xc9\\x13\\xd1\\x060?\\xac^\\x1e\\xe0\\xce\\xaaQ\\xbf\\x00\\x98\\xadH\\xc8\\x1b\\xb7>\\xac2M\\xbb-\\xae6\\xbf\\x9e\\x81[\\x874\\x8bF?C]\\x03\\x1b\\x87\\xddI?\\x8a\\xf3\\xd6\\x8a\\x89~U\\xbf\\x1e\\x02\\xd7\\x1c\\xf1|:?\\x0e\\xb79\\x07\\xdd\\x1cS\\xbf\\x81\\xd9k\\xb3\\xe6M3\\xbf\\xe0\\x96%wv8)?\\xa0\\xb2Z\\x9b\\xdd\\x90\\xd3\\xbe\\xaa\\x7f#L\\xf6wG\\xbfJ\\xea1+U@2?\\\\\\xa9\\xcb\\xf7\\x83NY?\\x18L\\x86v\\x83\\xe5I\\xbf\\xec5@\\xf4\\xd7\\xda!?\\xe4\\xaa\\xe1\\x8f\\xfe\\x1aT?\\xb2\\xa6[O\\xdft<\\xbfz\\x88\\xbb?S\\x7fM?@`g\\xd7\\xcf\\x92H?\\x0c\\xecj\\xd5(\\x17\\\\\\xbfx\\x10\\xce\\xba\\xb0\\x1aa\\xbf\\x80\\x86\\x82\\xdd\\x92\\xa7<?\\xf1\\x0b\\x9c\\x8f\\x93\\xe7i\\xbf\\xf2\\xd5{\\xac\\xc8\\x1bN?<Y\\xea\\xcc\\x7f\\xb5\\\\?\\xf6_\\xf5n,\\xabM\\xbfNwV\\xb1\"\\xa9`\\xbf,\\x88\\xfd\\xad^\\x12k\\xbf>u\\x18\\xe0\\xb9[\\\\?\\xa3\\xdeC\\xa7P>>?\\xe4mH\\x99\\\\\\xf2G\\xbfP\\xd8\\'3\\x19r&\\xbf\\x9e\\x7f\\x91\\xe5\\xebpg?p\\x1e\\x8e*\\xb0\\xb40?\\xda%j\\xe3\\\\9Y\\xbf\\xd0PJ\\x005\\xa6\\x05\\xbf<n\\x9b\\x8doM\\x18\\xbf\\xdc\\x87`\\x0e\\xe0\\xd02?\\x18L5[\\xdc8\"\\xbf|\\x046\\x03\\x0e\\x02\\x1e\\xbf\\xfa\\xe9_\\xb4@j9\\xbf\\xca\\x8b\\t(\\xe5\\x96\\xb1\\xbf\\xee\\x9b\\x06A)\\x96\\x81\\xbf\\xb8\\x90]\\x98;\\x17\\x8a?X\\x85\\xab\\xeb\\xf3\\x9a\\xb0\\xbf\\x1e@\\xc9\\xb8\\x0c\\x9ey?p\\r\\x84\\xd3K^\\x81\\xbf\\xfc\\x17\\x85m\\x13\\xff\\xa2?\\xdc\\x14o\\xf97\\xaaJ\\xbf@c?\\xf2\\xc4\\x01U\\xbf\\xb4\\xf0\\x040\\xacM\\xbe?\\xe0\\x19\\xf7\\xc1T\\xb6Z?\\x80\\x16\\xbd\\xab\\x0f\\x91\\x8e\\xbf\\xe0l#\\xa7]\\xcc\\xb5?\\x00\\xbb\\xa2\\xf8\\xed\\xb8\\x1d\\xbf\\x80=y+\\xc2\\xe5x?\\x08\\xdd\\xc3\\x17\\x03E}\\xbf|\\xc3\\xe5\\xaa=\\x89m?\\xd4\\xa4\\xe7\\x7f\\\\\\x89P?2\\x10\\x7f\\x90\\x19\\xb9\\x92\\xbf@\\x81\\x08\\xff\\xe2\\xf4{\\xbf\\x00\\xf68\\xe2\\xfa\\xff\\x8a?\\xa0\\xac\\x93\\x96\\xe0\\x18\\x91\\xbf\\xd0Nlq\\xc2\\xb7p?X\\x05\\x1a\\rnA\\x80\\xbf`\\x93GvsQ=?P,\\xeb\\xd4\\xfa\\xebC\\xbf\\xb0\\xd0K\\x19\\xf0tB?\\x008\\x8dL\\x14\\xa7\\x8f\\xbf`\\xadfX6\\x82\\x88?p\\x0b\\x1c\\xad2E\\x7f\\xbf\\xc0\\x7f\\xf9[\\x84\\xa5\\x8c\\xbf\\x98\\xb7g\\xf4\\xf7R\\x85\\xbf\\x00\\xf0\\xbd\\x08u\\x1dO\\xbf\\xe0\\xedJv\\xc6<\\x85\\xbf0\\xc6C\\x10+?p\\xbfX\\x16sD\\x80?o\\xbfP\\x8d\\xe8\\\\\\x03\\xa0Z?0\\x0b\\x17Q\\xf6Jq\\xbf\\x00\\xdc\\x1c\\xdc\\xab\\xb02?@\\xe3I\\x1ek\\xe9Y?\\xa8u\\x1fj\\x8bEz?\\x00h\\xe2:\\xa9\\xb7D\\xbf\\xb8ziX\\x06\\xca\\x87\\xbf,f\\xa8\\xe2\\xf1M`\\xbf\\xd4\\xe1\\x99\\xbd*\\x81b?\\xe6~\\xcb\\xfd\\xaf>\\x80\\xbf@ \\xa1\\xd9\\xb9Ke\\xbf\\xc0P\\xa7\\xc0W(\\x85\\xbfxC\\x9di\\x07\\ry\\xbf\\x80z\\'4U\\x05a?\\x80o\\xc1\\xef~\\x0f\\x8d?\\x80O\\x95\\xa4\\xde\\x06b\\xbf@L\\xc5\\xf8e\\xf0\\x81\\xbf\\xe8\\xdd\\x06\\x90hS\\x92?\\xf0\\x8c`\\x93C\\nu\\xbf\\xc0\\xf5<.\\xa3\\xa6\\x83?\\xa0\":\\xaaM\\xdd\\x94\\xbf\\xc8\\xbf\\xf0\\x0c\\x82Gs\\xbf\\xf4\\x7f\\xda9\\xeb\\xac\\x8d?\\xb8\\x06y4\\x8c\\x9e\\x83?\\x18R\\xe6\\xf0\\xba~s?\\x80\\xd8\\x80\\xb4A\\x1e\\x81\\xbfdu\\xf8\\xcb\\x1f\\n\\x82\\xbf\\xa0-M\\x0c+.d?\\xb0}\\xdb]5\\x12U\\xbf`c:\\x13i\\x0bb\\xbf\\xb0R\\xfd\\x96\\xca\\x83b\\xbf\\x10\\xa4R\\x8a\\xf6pk? \\xe8\\xbc{\\xff\\x17e?\\xba\\x8c\\xcd\\x8b\\x04\\xbb\\x92\\xbf\\xcar\\xb8sI\\xf6m?\\x00I7\\xcfo1\\t?P!\\xcdz\\xa4VZ?\\xccV\\xca\\xdb\\x06U`\\xbf@3\"\\xeb\\xffpl?D\\xbcD\\x0b3_s?\\x95\\xffQ?\\xd2\\x13[?\"\\xb8\\xe1\\x95&6E\\xbf\\xe0\\x19\\xf7\\xc1T\\xb6Z?\"e!\\xb6\\x86\\x86\\x9d?\\x88\\x81\\x1a\"\\xe0\\x13h\\xbf\\x10!\\xc9x;pi?\\xf2\\x86\\xd8\\xc2h\\x1es\\xbf\\x88Hk\\xad\\xdc\\x92I?\\x0b\\xfe\\x07\\x94\\xf9BR\\xbfw\\xb9\\x8b:\\xd6\\x10e\\xbf\\xb9\\x12!7\\x00\\x93C?\\xd6\\xa0y\\x84+Ki?\\xdd\\x1e\\xe90\\x06\\xees?\\\\\\x08\\xc7n\\xda\\xacd?&=\\x7fd\\xdd\\x90`\\xbfpL!\\x92_\\xcfe?X=\\x04\\xce\\xa6\\x03k\\xbf\\xac\\xea\\xbf4\\x9ar=\\xbf\\xec\\xcd\\x8d\\xacw\\x15A\\xbf\\xd6`P(\\xa3g8?\\xe8\\xce\\xb7\\x9bU\\xbf`?@\\xda\\x0beT`!\\xbf\\xb0\\xf2\\x9f\\xea\\x01\\xa6G?\\x90\\xdb\"^D\\xcb5?\\xb8\\xba\\xa3\\xa0B8_\\xbf\\x00\\xa9Z8\\xe3`i?\\x94X\\x93.B\\xf4l\\xbf\\xac\\xf16\\xd7_\\xe6T?\\xde3\\tw\\xda\\xfe\\\\\\xbf\\xaa\\x0f\\xb4\\x86\\xda\\xe6Q?\\xfe\\x1f\\x0b\\x81\\xb2\\x0ct\\xbf\\x00G,\\x90\\x03\\x82c\\xbf\\x18\\xef\\x1e\\x07\\xfd\\x05N?\\xecUHK/te? PW\\x95F?X?\\x98Q\\x99\\x8f\\x96nS\\xbf\\x8c\\xb5\\x1c\\xf8\\xc4\\xf2V?\\x00\\xde\\xf6T\\xc6!(?\\x06\\xc8\\xde\\xa8\\\\#d?\\xa0a*\\xacC2@\\xbf\\xc8\\x9b\\x1bT<Cv\\xbf\\xd09}t#X8?\\xc22\\xc8\\xaa%\\xb1q?0\\xbez\\xaa\\xd7\\xecr?\\xc0\\x9d\\xf0{n\\rj?`S\\xf8(qZb\\xbf\\xa0~\\xcb\\xfb#dK\\xbf \\x9d|\\xf3[oc?\\x00\\x08\\xd7\\xa8\\x1dUv?\\xa87\\xb5Q\\x8d\\xfbc\\xbf\\xd8m>\\x06\\x03*Q?\\x80P\\xaa\\x84\\xeb\\xc3.\\xbf\\x10\\xf1sMy\\xc9D?\\xb9\\xfe\\xa3Fs`\\x17\\xbf\\x94\\xd1\\xd9g\\xa6\\x83]?\\xc0\\xd04\\xa6\\xae\\xb5[\\xbf\\x00>0hlYi\\xbf\\xf8\\x08\\xd1\\x16s\\xc1B\\xbf\\x10r\\xaeH\\\\\\xc1Q\\xbf| b\\xa8\\x7f\\xae_\\xbf@w\\x1f%\\xcb\\x8d:?h\\xfe\\n\\xb0\\xc4\\x01Q?\\xe0\\x82\\x10#P\\xb6\\x8c?\\xfb\\x93\\x9bU\\xd4\\xe1L?\\x10~\\xdaR\\x0c\\x02Y\\xbf8\\x9a]\\x18\\xc6\\x16\\x81?\\x80\\xab\\x02\\xf6\\xa5T\\x19?\\x007 \\x1a\\xa8;Y?\\x00\\xd1R\\x14oRw\\xbf\\xadz\\x85\\x84\\xe53E\\xbfP\\xf49\\x0f!\\xce9?\\x80\\x16\\xbd\\xab\\x0f\\x91\\x8e\\xbf\\x88\\x81\\x1a\"\\xe0\\x13h\\xbf\\x07\\x19\\x90C|Ev?\\xd0\\xb5a\\xb4\\x1a\\xf6\\x8c\\xbf`\\x1bv\\xd4\\xd6\\xf7=\\xbf8cX\\xd1\\x95\\x8dW\\xbf.\\xef\\x99\\xa1\\xd0$`?\\xc8\\xe3~\\t\\xb0W5\\xbf\\xf0\\xf0\\x98\\xf8g\\xff#\\xbf\\x08/\\xa3\\x97e\\xa9o?\\x00\\t\\xde\\x06\\xa4iA?\\xa8\\xd8\\x0cbx\\xd4e\\xbf@<\\xe6\\xa0\\xd1\\xa1o?\\x00U\\xb1=M\\x9c6?\\x00K\\xdc\\x1a\\x1a\\xadH?\\xc0O\\x05\\xeb\\xd1n#\\xbfx\\x8d\\xff\\x02\\x14\\x961\\xbf\\xa02d?p~\\x0c?@\\xc0\\'\\xcbN\\x924?\\xe0\\xb2\\xb2\\x10~AK\\xbf`pw\\xf2^\\x90U?\\xec\\x15\\xc0\\x00\\xc0$`?\\x00\\x0eSv\\x1fm\\x1d\\xbf@\\x7f\\x9d\\xd7n&H?\\x00J\\xb2\\xa9\\xbf\\x10c?\\xf0\\xa1\\x8cJ4CL\\xbf\\x08i\\x0e\\xb9\\xfeFE?\\xc8\\xe8\\xdb.>&1?p\\xef^k8%8?\\x80\\xcb\\xca\\xb3\\xe5]?\\xbfP \\xcc\\xa5\\xf8\\xc40\\xbf\\xa0\\x9f2\\x1fDjJ\\xbf\\x80v>\\xf22\\xd73?@I\\xb4\\xed\\xdd\\x98_?\\x02[\\x81\\x04*\\xbdA\\xbf\\x00\\xc8\\\\\\xb6\\xb4\\xa8\\xb1\\xbeC\\xd2\\xb3\\xc6\\xa0j[?\\x98%CJ\\xe3\\xbad\\xbf\\xe0\\xfeTP\\xf7\\x10g\\xbf\\xbaF)\\xb2\\x18=d?\\xc0.\\xf8Q\\xe2s??`\\xe4\\x84\\x9d\\x1f\\x82c?P\\x80\\xb29i5]?\\x80W\\x89x\\x06\\x16y\\xbf`\\xd8\\xa9\\xb0IkR?\\xc0\\xb2\\x85B\\x1e\\x0e\\\\?\\xa0o3\\xf6\\xad\\x1d|?\\x80\\xd8\\x87L\\xc9\\xecV\\xbf\\xc7\\xfd\\xc2\\xfd\\xb9\\x92[\\xbf\\x0c\\xd4\\xe3\\x99\\xbeoa\\xbf\\x00\\xd725r,?\\xbf\\xb9\\xca\\xd9\\x88\\x0eGZ\\xbf\\x18R\\x14\\xd2M\\xe2Y?\\x80\\x98\\x87\\xd9,\\x00.\\xbf\\xa0`\\x0c\\x84\\\\\\xc5W?\\x00m\\xcf\\x04\\x82$\\xff\\xbe@M\\x1f\"\\xd8\\xd74?\\xc0.$\\xcf\\x95\\xb7<?\\x00$)\\xef\\x19\\xf1\\xe3\\xbe\\x00\\x96\\xc5\\x1a\\r_,?\\xa84o\\x90,g\\xb3\\xbf\\xaa3\\x11\\t:\\x11\\x81\\xbf\\xd8\\xc6\\xdf\\xf4\\xe6u\\x8f?\\x80J\\r\\x08\\xca\\xdc\\xb3\\xbfM\\x9c\\xcb21\\xc7\\x80?\\xa0:\\x1aK\\x8ew\\x8b\\xbfD\\x88@@B\\xe5\\xa3?\\xc6\\x13(\\x00\\t7d\\xbf\\x85\\x8dF\\x97\\xec\\xean\\xbf\\xe0l#\\xa7]\\xcc\\xb5?\\x10!\\xc9x;pi?\\xd8\\xb5a\\xb4\\x1a\\xf6\\x8c\\xbfH\\xbd\\x06\\xf3\\xd4n\\xc1?\\x10%\\xb0\\x10\\xcbZr?\\xa4\\xdb\\xb2J;*\\x81?\\x06\\xf3\\xfef\\xc5<\\x82\\xbf`\\xa2\\x83^\\x8e\\x01v?\\x00v\\x92\\x88\\x01W\\x1e?x\\x04|\\xf7\\x11\\x08\\x93\\xbf@\\xf6\\xe5\\xbd]zh\\xbf\\xa4\\x0bB\\xeb\\xe4\\x96\\x8c?\\x0c\\x9f\\xf1\\x86\\xa1\\xe8\\x96\\xbf0./\\xe0\\xf1-p? d\\xe2\\x89\\xed0x\\xbf\\xe0\\xdb$|y\\xdf9?\\x102\"\\xaae\\xd2Q\\xbf\\xf8\\xafS\\xaclhI\\xbf\\x00\\xd3@\\x1f\\xcb\\xa0\\x8c\\xbfP\\x8b\\x18\\xd7\\x81\\xf8\\x89?\\x80\\x0cq\\xc6Z\\xccT?\\x9eU\\xe8\"v)\\x96\\xbf`00\\x11G\\xaa\\x83\\xbf\\x00\\xd0\\x18\\xf6\\x15~\\x01\\xbf\\xb0NWXy\\x8b\\x8f\\xbf\\x80\\r\\x1f\\xa8l\\x0bx?\\xd0\\\\\\xfa\\xb08\\x00t\\xbf\\xe0b]\\x11\\x03\\x1b1?0~\\xe3\\x0e\\xb2\\x07W\\xbf\\x00\\xa0e3\\xa4\\xce\\'\\xbf\\xd0y\\x02Fq\\x0ca?\\xa00Bl\\x9c#b?\\x00\\x80sP\\xf4\\xf4\\xdf\\xbe\\xb8\\xdd\\xc5^\\xf9\\xde\\x8a\\xbf\\x0c\\x97\\xae\\xc2\\x80]i?\\xe8\\xebd\\xdeS_b\\xbf\\x8a\\x86\\x06\\x05\\xea/\\x83\\xbf@YI\\xb3\\xee6d\\xbf@\\x9eV\\xc7Y\\x93\\x7f\\xbf8\\\\\\xe8!L\\x94p\\xbf\\x80E\\x8f\\xdb\\xae\\x99^?\\xb0\\xbb\\x83\\xdb\\xae\\t\\x90?\\x14\\xe2\\x9a\\xd8\"\\xe3\\x84\\xbf\\xc0\\x92\\xd1=\\xe0\\xb9\\x81\\xbf8\\xcf\\x01T\\x15!\\x93?\\xa8({C\\x162\\x85\\xbf\\x00\\xa8\\x1c\\x9fE\\xd0v?\\x00\\x96\\xf14\\xb8t\\x93\\xbf.\\xde\\xee\\x18\\xf8\\x16}\\xbf\\x8a\\x96$W(\\xea\\x91?\\xe0\\x94\\x86\\xf3\\xee\\xec\\x84?\\x08\\x95\\x1a\\xa8\\xdd\\tZ?@I\\xb7\\xf4\\x81\\x8c\\x83\\xbf\\xa0\\x9b\\xda\\xec\\n\\x9do\\xbf\\x80\\xf4&\\xb4\\xd7_T\\xbf\\x00P\\'\\xec@<;\\xbf\\x80\\xec\\x0fEt\\x83X\\xbf c8l\\xed\\x89n\\xbf\\x00OG!\\xf3vT?\\x000\\xb4\\xad0\\xdf\\n?{\\xdc\\xbe\\x87rh\\x83\\xbf\\x83\\xc0\\x96\\x02v[d\\xbf\\xf80\\x89\\xe7\\x9d\\x8fw?B\\xa9\\xf3i\\x0f\\x97\\x81?\\xfc\\x83\\x94k\\xd8=w?\\xa8\\x84\\x13\\xfc\\xfagi\\xbf\\x00\\xfa0\\x8863}\\xbfKn_L\\xb8&Q?\\xf788\\xf4\\x99>]\\xbf\\x00\\xbb\\xa2\\xf8\\xed\\xb8\\x1d\\xbf\\xf2\\x86\\xd8\\xc2h\\x1es\\xbfP\\x1bv\\xd4\\xd6\\xf7=\\xbf\\x10%\\xb0\\x10\\xcbZr?8&z\\xd3\\xc5\\x89\\x9d?\\xee\\x86\\xc5\\x8d_\\xb5p\\xbf\\xc2\\xa2F\\xf4\\xa7\\x1bC\\xbf\\x9b\\xe9\\xcbN3\\x88Z\\xbf\\xbdx\\x99k\\xdd\\xdcY?\\x18\\xe6\\xfd\\xe0\\x0fY`\\xbf\\xd8f\\x8c\\xc00\\xb3h?A\\xbf\\xfcm\\x158k\\xbf\\x1b\\x9b\\xa58!\\x8ct\\xbf=\\xe8\\xff\\xa7\\x7f\\xefy?f\\x98\\xfc\\x03\\xe1\\xb8p?J\\x14tL\\x8f\\xfcH?\\xd8\\x1a7\\xf8\\xc2\\x04)\\xbf\"Jh\\x98v\\xa2\\x15\\xbfX?4\\xe1\\xec\\x9bV?\\x08G\\'\\xcf\\xa0\\x90J\\xbfaQX~7;\\x80?6\\x07\\'\\xd3\\xe6Au\\xbf\\xc8?\\xd5W5\\xb2C\\xbf\\xe8`\\x87\\x9a\\xc3~e\\xbf\\x14\\xd7\\xc0.\\xc4!f\\xbf1S\\xa0\\x08\\xddO}?\\xbb)\\x02\\x19\\xa9\\x9cP?\\xea\\xf4\\xc9\\xb2<\\xf3h\\xbf\\xd9\\x98{\\x0e\\xec\\xc5p?+\\xc6n\\xc4\\x89R|?B\\xc5\\xf0\\xf4\\xda\\xb0h\\xbf\\xce\\x0fm\\xc0\\xeeJu\\xbfyp\\xc9\\xcf\\xae\\xd5v\\xbf\\xd0\\xc8\\xfa\\xd9\\x9c3p\\xbf-\\xa4\\xa9\\x03*\\rr?I\\xbe&7\\xce\\xe3^\\xbfs\\xe7\\x13H\\xf6*l\\xbfv_Oa\\x9a\\xc9i?\\xa2\\xae\\xfe\\xd2X[\\x86?\\xd09){\\xd8Pe\\xbf\\x88l\\xad\\x953]e?\\x05Ps\\xb9\\xc6F\\x83\\xbf\\xfe#\\xc9uw\\xc1\\x82\\xbf\\xfc\\xc7\\'(\\xff*\\x82?\\x849\\xcf\\xae\\xac\\x01j\\xbf5\\xd4\\xd2YG\\xe5u\\xbf\\xa0\\x85\\xbf\\xbc>.z\\xbf\\xe4\\x1a7_0\\xfcq?\\xe6Q\\n\\xb61\\xcap\\xbf\\xc8\\xde\\xec\\x1fR\\x0ef?PO\\x11\\xf1oTF?f\\xaa\\x997\\xe4}\\x81\\xbf-\\xd5\\x1c\\x88\\xa8Ni\\xbf\\xc2m\\xbeb\\x02\\xa3a?HquM\\xc2fM\\xbf\\x04\\xa2\\xe1E\\xca;\\\\?@\\xe3i\\xd8\\xac}e\\xbf\\xee\\x8d.\\xbf\\xb1\\x13h\\xbf\\x92b\\xb9\\x11\\xb2\\x10_\\xbf\\xb8X\\x16C\\x96\\x99[?\\x88\\xbe\\x99o\\xb3fk\\xbf*%\\xb7i\\x8ccM?\\xf07\\xd5!\\xf7\\xae]?\\xdc\\xe3\\xdb\\x00\\xacs\\x80\\xbfH\\x19\\xc2\\x9e\\xeb\\rM\\xbf@I\\x18\\xc0\\xc0\\x84(?\\x90.\\xc7D\\x05\\x17o?\\xa5\\xbd\\xac\\xf9s\\xd0@\\xbf\\x1c\\xb6\\xdf\\x1f\\x1bN\\x17\\xbf\\x80=y+\\xc2\\xe5x?\\x80Hk\\xad\\xdc\\x92I?8cX\\xd1\\x95\\x8dW\\xbf\\xa4\\xdb\\xb2J;*\\x81?\\xee\\x86\\xc5\\x8d_\\xb5p\\xbf\\t\\x189\\xd7\\xf6vt?\\xec\\xec\\xfc-8\\xd7S\\xbf\\x9a:\\xe5\\xa6\\xa7\\x87:?`P\\xd4\\x05\\x92`\\t\\xbf\\xe0\\xd3wV\\xdd\\x0c=\\xbf\\x80\\xa9M\\xb0j\\x8bX?\\x00q\\x9ex\\x06;*?\\x88\\xe1=\\xe0\\x8aUc\\xbf`\\xe1\\xd4\\xd6\\x02bM\\xbf\\x10n\\xe8-QC[\\xbf\\xd0[\\xd3sE\\x01#\\xbf@q\\x8d\\xbd\\xae\\xb4\\x06? \\nj\\x8a\\x1dY\\x13?\\x00\\x958\\xae~?\\x1c?x<T\\xb5_\\x9bW\\xbf\\x80S\\xed\\x1b\\x9f\\x9e<\\xbf\\xa2K\\x88\\xda+\\x0c`?`\\xc6/\\xa6\\xc5:=?0?Y\\x9c\\xd6\\xaaU?\\x00\\x96\\xb3\\',\\xe9\\r?\\x00\\x1f\\xb7B\\xed\\x90V?\\x00\\x8d\\xdc\\x9d\\xbc3\\'\\xbf\\xecZ\\x98FVjD\\xbf\\x1e\\xd5QP_\\x0fS\\xbf\\x00\\xd0\\xee\\xcf\\xd1\\xa2\\xda\\xbe\\x00b\\xd0\\x93$g\\'?`y\\xab\\xef\\xb5bP?\\xc0t\\xaf\\xbd\\x8eJ3? !\\'+\\xb256?\\n\\xfb\\x02\\\\n\\xb4A?\\xe0\\x11Zf\\xa2t\\x15?\\xba\\x14\\x80\\xff\\xb8>W\\xbf\\xa8\\x99\\xc6{\\xbe|f?\\x08\\x18O\\x7fn\\xbcx?\\xc3\\x06\\x9f\\nT\\xb9f\\xbf \\xdcZ\\x15~E\\\\\\xbf@\\x1c1\\x80\\xa8sv\\xbf\\x82kc\\xb7Y\\x7fh\\xbf0\\xb6\\x86\\xc3\\x90=\\x83?\\xc8*Q\\xab\\xf2\\xc6p\\xbf\\x98\\x08?\\xaf\\x9f\\x8f[\\xbfx\\xde\\xae\\x9e\\x13/\\x82\\xbfx\\x08\\xb1q\\xed^m?\\xd4z\\xf6\\xc9\\x0bPr?\\x18\\xfe\\xf3\\xcb\\xa2.A?\\x00\\xa0\\xd2Cv\\x1bN\\xbf\\xd2\\xbaI\\xfcj\\xa2`?\\x00HF\\xb3\\\\\\xbe8\\xbf\\xf8\\xee5\\xd7\\xf8FV?\\x1cm\\x1f\\xcc\\xf2\\xe3f\\xbf\\x00\\xb7\\xc5\\xc1\\xdfN\\x16\\xbf\\x00\\xa1\\x01\\xb1\\xcb\\xb3\"\\xbf\\x002\\x00\\xb3C9\\xfb\\xbe\\xa0\\x9c\\x91v8i1\\xbf\\xc0\\xb1\\xcb;\\xd2\\xb43\\xbfl\\x91\\xb3\\x90\\xdf\\xd0\\x8d?.\\xbd\\xf4h\\x0f\\x19P?\\xc0^8\\xbd\\xbb\\xacQ\\xbf\\xce\\xdb\"\\xfcZ\\xf0\\x8b?`\\x10\\x96\\xdd*\\xafK\\xbf\\x80\\x9fW\\x1b7L\\'\\xbf\\x8c\\x8b\\xbelo\\x93w\\xbfD=\\x97\\xc2\\x94\\xfb2?\\xdf\\x11P\\xf1752?\\x08\\xdd\\xc3\\x17\\x03E}\\xbf\\x0b\\xfe\\x07\\x94\\xf9BR\\xbf0\\xef\\x99\\xa1\\xd0$`?\\x06\\xf3\\xfef\\xc5<\\x82\\xbf\\xc2\\xa2F\\xf4\\xa7\\x1bC\\xbf\\xf0\\xec\\xfc-8\\xd7S\\xbf\\xe0\\x8d}\\xd4\\x0c\\x80\\x83?\\x96\\xbcm}\\xe4\\xf5E\\xbf&\\x7f\\xbaqad7?\\xbb\\xa0\\xcb\\x19\\x95od?\\xd2J\\x14:\\xc1^W\\xbf\\x08\\x1c\\xe6\\n.$O\\xbf\\xae\\xc9\\x95x\\xae\\xd2m?8\\xd7\\x18a\\x12\\x9eC?\\xc0:\\xfe?\\xd2\\xd0S\\xbfc\\xcd#\\x10y\\xdd0?\\x86\\xd4m\\xfa\\xf7\\xcc2\\xbf\\xa7\\x0e\\xca\\x00p]@\\xbfL7\\x0c5\\xa1yZ\\xbf\\xdc\\xc57\\x15\\\\\\x16l?\\xc8I\\xae\\x00?pP? \\rC3\\xb4%\\x14\\xbf\\x80\\x0e\\x95\\xa7\\x80\\xff#?\\xb0\\xdc\\x8c\\x97\\x06Jf?\\xda\\xb3C\\x87\\xe3\\xd2\\x81?|\\xefR\\x8c\\xe3<i\\xbfp\\x82\\xa7\\t\\xec\\xd3W?\\x17\\xbb\\xe1\\xdf\\xf6\\x87j?\\xa7ey\\xfb\\x02\\xfcm\\xbf\\x1b\\xfc\\xef$\\xea\\xfcp\\xbf\\xa4\\xf7\\x8d1C\\xe2a?E\\x98\\x80\\x9e\\xf2\\x07p?p_Q\\xe7\\x12@i?7\\xbf\\xeb\\x03\\xe9\\x1fu?\\xfd\\x84M\\xb3\\xf9]d\\xbf\\xfc3!\\x13\\x06jI\\xbf\\x92\\x1f\\x7f\\xdf\\xd23w?d\\xd6[k\\xfeOw\\xbf\\xba\\x97\\xac\\x97\\xe4\\x05\\x83\\xbfQ\\xc6\\xe7\\x00/\\xd7v?t\\x11`\\xd7\\x98Jj?\\xbeo\\xed\\x1dm\\x8f~?v\\x18e\\xab\\xa9k\\x85?\\xce\\xc2\\xa0R\\xa7\\xaa\\x94\\xbf\\x94\\x92r\\xaa\\xf8\\xabl?\\xa9\\xce\\x9c\\x9b\\x06~~?\\xbc\\xc2\\xe4,.m\\x94?g\\t\\xb9K\\x97]p\\xbfL\\x913\\xe1\\xf2\\x93f\\xbf\\xc0\\xe2\\x1b:4\\xf2<\\xbf\\xe0\\xf3\\xf4eg\\xa5?\\xbf\\xb3\\xc0^0\\xbdLQ?U \\xa1\\xeb\\xf4\\xfeS?\\xe1z\\x05\\xffK\\xcf]\\xbf0\\xf7\\x02\\x86;\\x03L?\\x98\\xd9@\\x08S\\xc4?\\xbfxD\\x90_\\xc7\\xe0J\\xbf\\xdb&\\x8d\\xb7\\x8b\\x83[\\xbfv\\xebS\\x8b\\x9d\\x87S?f\\x94=\\xcf\\x7f\\xc6a?6r\\xae4\\x94\\x14r\\xbfg\\xd1\\xf71\\x11a_\\xbfz\\xbfOD\\xbb\\x1a;?\\x883\\xaa`\\xfacu\\xbf\\xc2\\xf9\\x17?X\\x9eA\\xbfV\\x0b\\x02*r\\x9e\\\\\\xbf\\xebz\\r\\xd8\\xf7ic?\\xd8\\xa9O\\x18:wI?\\xc9\\x9a\\x13\\x96\\xe70J?}\\xc3\\xe5\\xaa=\\x89m?x\\xb9\\x8b:\\xd6\\x10e\\xbf\\xc8\\xe3~\\t\\xb0W5\\xbf`\\xa2\\x83^\\x8e\\x01v?\\x9a\\xe9\\xcbN3\\x88Z\\xbf\\x9a:\\xe5\\xa6\\xa7\\x87:?\\x98\\xbcm}\\xe4\\xf5E\\xbfx`+\\xd4]\\x0bs?!\\xf2\\x90\\xc6\\\\\\x9eZ\\xbfL4\\xa9I\\xad\\xdbO?\\xeb\\xd6\\xbf\\x02\\'(P\\xbf\\xde%O\\xbe\\xdd\\x1d.\\xbf\\x05\\xd7\\x92\\xd6\\x87\\xc3C\\xbfFx\\xe8\\xd0\\x84IN\\xbfdrI\\x8a`w?\\xbf-\\x8a7\\x08\\xd2\\x86@?\\xf6\\xd7Z\\xbd5\\xdcZ?\\xac\\x96\\xb2@R\\x9f9\\xbf\\xd0F\\x91\\xb1\\xf4\\xa1e\\xbfI\\x07b\\x13\\xf4,T?U\\xb5\\xc4q4\\xd3V?b\\x9e\\xc8\\xe6i\\xef^\\xbfQ\\xa8\\xf5\\x9cD\\x95S\\xbf\\xf0\\xf2\\xaf=\\x05\\\\<\\xbfD\\xb8\\x93#\\xde\\xf48\\xbf\\x16\\x01\\xeaL%\\x1a^?Ev5\\xe9gfB\\xbf\\xa4\\xc5\\xc036\\x92S?\\t\\x1be\\x85X\\xe8\\x7f?.)\\xfb\\xc8\\x0f\\xeci\\xbf\\xd1\\xc0x\\xd3t\\xe3a?|%FMe#a\\xbf\\x0eZ\\xc5\\xca\\xaa\\xd5^?\\x94\\xd2\\xa6w\\xf8n5\\xbf\\xeb\\xa6\\x00L\\x99Hj?\\xf6\\xedD\\xbeD)\\\\\\xbf\\x8cM\\xc5\\xd2~&i?\\xfc:g\\x92\\x04!v?\\xe1\\x11\\\\\\x1c\\x89\\xfav\\xbf\\xd7\\xefw\\xbbu8D?\\x9cr\\x91\\x87\\xe5w3?D\\x97\\xc2\\xf9}\\xf0a?\\xc0\\xde\\xb9\\xdc\\xbf.U?\\x1c\\x0f\\x93\\xae\\xb6\\xc4T\\xbf\\x88\\xe6\\x83/\\xbbMS?\\x98\\x88\\x15\\xf4\\x12\\xceP\\xbf\\xd4\\xabP<\\x1b\\xdbh\\xbf\\xd5\\xd8of\\xcb\\x80c?\\xa3l\\xc9<\\xb4/c\\xbf\\xf6\\xfa\\xc4\\xc6p\\x92[?X\\xefp\\x83Y\\x9c(?$\\xf0~\\xa9x\\x8aA?\\x86\\xea\\xd0qi*P\\xbf\\x08\\xa1~\\xa14*M\\xbf\\x1f\\x942\\x1e\\x0b\\x05N\\xbf[\\xbb\\x01\\x00Vc8\\xbf\\x80\\xc1\\xd7=m{\\xf6>?\\x81+\\x96\\x8e\\x1bN\\xbf\\xe4\\xec&r\\x11\\x883\\xbf\\xb8\\x92\\xb1X\\xfb\\x0e2?0(\\x7f\\xa1\\xf9\\x1ae?na\\x03\\xccz*G?\\xc0$EKi\\xf5B\\xbft\\x81J\\xaa=1Y?\\xa8\\x97&\\x07F\\xdbR?\\x185\\xa1\\xd4\\xd7\\x885?\\x0fhs\\xa9\\xceSa\\xbf\\xe6\\x94}\\'+1A\\xbfW\\x1e\\xf7\\xb3\\xa0\\xd25\\xbf\\xd4\\xa4\\xe7\\x7f\\\\\\x89P?\\xb8\\x12!7\\x00\\x93C?\\x00\\xf1\\x98\\xf8g\\xff#\\xbf\\x80u\\x92\\x88\\x01W\\x1e?\\xbfx\\x99k\\xdd\\xdcY?`P\\xd4\\x05\\x92`\\t\\xbf&\\x7f\\xbaqad7?\"\\xf2\\x90\\xc6\\\\\\x9eZ\\xbfPo\\xc9\\xed\\xd3\\x7fp?\\x12\\xb0\\x95h\\x0c4f\\xbf\\x80P\\xab\\xb3\\x08tI?x\\x82\\nL\\xf1FS?p\\xcf\\x1dL\\x84MP?\\xd90msm.W?\\xf67\\xc2\\xa5\\xc3MP?x\\x98\\xd6\\xdc\\x92\\x1b\\x10?\\x15\\xbe\\xadD\\xf7\\xc7Q\\xbf\\xb9=\\xce\\xa5\\xda\\x8eL?\\xc8\\xea\\x9fJ\\x90\\xfaT?\\xec\\xd6\\x96\\xd3\\xf7uD\\xbf\\xc8\\x8e\\xbb\\xf2\\xe0$7\\xbf\\xb0\\x08\\xf0S\\xbe\\xf7<\\xbf\\x00[\\xae@\\xa97\\xfc\\xbe\\xc0\\x04/\\xa6`\\x91\\x1d\\xbf@-llrn\\x13?0\\x95+&\\x0e\\x90A\\xbf\\xd0\\x8ct\\xf5\\x00\\xd5b?ljL,F\\xcbH?\\x80\\xa2,b\\x1aL\\xd4>\\xe0\\x03\\x17(o?,?h\\xc8}.\\xcfO>\\xbfk\\n\\'^\\xc7\\x05d\\xbf\\xac\\xf4\\x87}n\\x1ci?0IA\\xebB\\x8bT?\\xe8\\xf4\\x1eL\\xde.e\\xbf\\x0e\\xdfK]\\x92]1?\\xc4H\\x10\\xf3*U\\x10?\\x8c\\x90I\\x87\\xa5qM\\xbf@[qS\\xed\\xc5*\\xbfd#\\xd2l\\xffYe?\\xb4\\x8a\\xfd\\xb3\\xb5BO\\xbf$6\\x10b\\x7f\\'j?\\xaf\\x9e\\xce]p>^?`f~\\x04m\\xe9\\\\\\xbf\\xc0\\xcc\\xe9^\\xfb\\x1b\\x13\\xbf\\xe3\\xc5\\xe4\\xbc\\xf2#P?\\xa0\\x92\\xa0\\x04l\\xebm?\\xdc\\xc2\\xf7\\x02\\xd1\\x12c\\xbf\\x0cf\\xe3\\x16\\xadHU?\\xbc\\x14\\x07\\xc8K[4?<\\x05\\xcd\\xe4\\xd8l<\\xbf\\x84i \\xd7\\xd4\\xe3\\\\\\xbfP\\xdb\\x9a-\\x11\\xd1\\x19\\xbf\\xfd\\x05\\xa8\\xf0-<I?H\\x13\\xb8i2\\xcdN\\xbft\\xe2\"\\x01v\\xb06\\xbf\\x9c\\xc5\\xa4X\\x98\\xccY\\xbf>\\xcc\\xebm\\xb4\\x8d@\\xbfP\\xa3Qm\\xfaq??\\xd4Y\\t\\xd8H\\xb1S?\\x00u~*\\x18\\xad\\x15?\\xa8_T\\xf0L\\xc2j\\xbf\\x9aID\\xaf\\xab\\x99t\\xbf\\x1c\\x1f0\\xd8\\xc9\\xae\\x88?\\xb2a\\xeb\\x9f\\\\\\xae`\\xbf\\xcapAt\\x0c\\xa5{?p\\xda\\x87\\x83h$\\\\\\xbf\\x04N/\\x9d\\xa7ha?\\xa0\\xd6A\\xce\\xf0\\x7fX?2\\x10\\x7f\\x90\\x19\\xb9\\x92\\xbf\\xd6\\xa0y\\x84+Ki?\\x08/\\xa3\\x97e\\xa9o?v\\x04|\\xf7\\x11\\x08\\x93\\xbf\\x18\\xe6\\xfd\\xe0\\x0fY`\\xbf\\xe0\\xd3wV\\xdd\\x0c=\\xbf\\xbb\\xa0\\xcb\\x19\\x95od?R4\\xa9I\\xad\\xdbO?\\x10\\xb0\\x95h\\x0c4f\\xbfx\\xa4I\\x064A\\xa5?P\\xdbk\\xf6\\x9a\\x11U\\xbf\\x88\\xdfw\\xfa\\x93\\x1a\\x91\\xbf\\x81\\x11ns{%\\x8a?\\xfc\\x85\\x08\\xf7fgc\\xbfH\\xafe\\xba\\xddcb\\xbf\\xae\\x1b\\xc9ux/Q?\\xcf`qp\\x7fE\\\\?\\x1a\\x9eg\\xef\\x9d!B\\xbf\\xdb\\xe5\\x8f^\\xf9\\xe8\\x85\\xbf\\xfa\\xd2\\x02\\xf6\\xcf\\x08t\\xbfu\\xe7#\\xc9\\x88R\\x81?x\\xe0jh\\xc7\\xf8G?\\\\\\xbeQ\\xa1v\\x04q?\\xa0v1\\xda\\xbf4G\\xbf\\x84!\\xef$I\\x89m?b\\x90\\xbf\\x10$\\xb2f?4\\x02\\xf2\\x12\\x9f\\x81w\\xbf,\\xc0J\\x03\\x0fvB?\\xc1gi\\xebsSp?\\x008\\x91n\\x88\\xfbT\\xbf\\x9dP\\x11wL\\xcdd?\\xa0\\xc2)1-|B\\xbf\\x00\\xbd\\x93\\x17\\xc9%E?j\\xe8n\\xe24\\x96i?\\x1fy\\x7f^>\\x98t?\\xec\\xf9\\xfa<\\xa6v<?\\xb7@\\x91\\xa8\\x81\\x1ds?\\xa8{\\xf2\\x1e\\xdf\\xc8m?\\xe0\\xb7)\\x03\\x04\\x93a\\xbf\\xdb#bSp(e?\\xc0P\\x15Ho\\x89H\\xbf\\xc0\\x94W\\x187\\xd2E?\\xf8\\xdb\\xa5\\x15\\xe6=w\\xbf\\x90\\x1d\\'\\x9e\\xafh\\x89?^\\xe1\\xfeRC\\xee\\x82\\xbf\\xc2d\\xde\\xb1\\xf5og\\xbf@\\xcf\\xa8\\x93\\xb9,\\x8b\\xbf\\xec\\x11r\\x94\\x86\\xfc\\x85?jDd\\xfe\\xbe r\\xbf\\xd4\\x98\\xc3P]V\\\\\\xbf0\\x9f\\x88\\x0c\\xf7\\xddD\\xbf\\xbd\\x0e\\xbfd$\\x02c\\xbf\\x80\\xad\\xc7\"3%L?H\\x81\\xd5B]fA\\xbf\\xd8\\xeen\\x1d\\x8d\\xce`\\xbf\\xd4\\xde\\xb9\\xf6\\x17gG\\xbf\\x80\\xeb =\\xe5F9\\xbf@Pc\\xe5\\xddv(\\xbfx\\xab\\xe1=MP[\\xbf@\\x10\\x01:\\xbf\\x80=?\\xa4T\\xfa\\x84?\\xfas?\\xc9\"\\xd6\\xd8\\x1d\\xafl?\\x00\\xec\\x18\\xe9\\x9c\\x10B?\\x88\\xdf\\xce\\x04\\xde!|?(G\\xda\\x99TNV\\xbfdAk\"\\x8d\\x10d?t\\xa8)\\xa8\\\\\\x80q\\xbf\\xa4\\xc9\\xb4\\xe2\\xb2\\xf0 ?\\xae\\tO\\xf4\\xd3*:\\xbf@\\x81\\x08\\xff\\xe2\\xf4{\\xbf\\xdd\\x1e\\xe90\\x06\\xees?\\x00\\t\\xde\\x06\\xa4iA?@\\xf6\\xe5\\xbd]zh\\xbf\\xd8f\\x8c\\xc00\\xb3h?\\x80\\xa9M\\xb0j\\x8bX?\\xd2J\\x14:\\xc1^W\\xbf\\xed\\xd6\\xbf\\x02\\'(P\\xbf\\x80P\\xab\\xb3\\x08tI?H\\xdbk\\xf6\\x9a\\x11U\\xbf\\x923\\xbd\\xb6`\\xfc\\x84? \\x1a\\xe5r\\xdb\\\\T\\xbf\\xc0\\xca\\xec}\\xe8\\x14d\\xbf\\x18<\\xbe8\\xdd\\x80i\\xbf\\xc0{\\xa2\\xf1\\x1a\\xff@?\\xa8\\r\\xc8*8/P?\\xf0\\xf1h\\xef\\x0e\\x90+?Z\\xc8BT\\xfaM8?X\\xe1\\xd9nV>t?\\xa4\\x7f&\\xc1\\xc9\\xc9y\\xbf\\x10|\\xfe\\xb0E\\x11g?\\x94\\xe6\\xf7B\\xad\\xd5a?P\\xfd.\\xfa\\x92\\x8dg?\\x00.\\xea\\xe6.\\x83:\\xbf`\\xe8\\r\\x84yTO?\\x08\\x84&}\\xf4Jg?\\xc80y=\\xfe\\x8bF?n\\x14p%\\xee\\xae\\\\\\xbff\\xd9\\x19\\xd2\\xd8\\xf4c?\\xccy\\x1f\\x14\\r\\x0eu? \\xbf$J\\x99)W\\xbf\\xd0\\x81\\xd8\\n\\xe2\\xf4j\\xbfXD\\x15\\x8c\\xfc6o\\xbf`\\xd3\\x0eQZ\\xa6<\\xbf\\x85\\x10\\xee\\x96P\\x8ae?`\\x7f\\xe9H\\x1a\\x06&?\\x03\\xa8j\\x99\\xf9 `\\xbfZ\\xc2\\x95Q\\x08\\xf7\\x83?\\xd0a#\\xe6\\x92\\x8a\\x90?\\x9e\\x03\\xa2\\xe8\\x0f!l\\xbf\\x04\\xfb\\xc5nlqr\\xbf\\xb8\\x140\\x91\\x1a\\xd4\\x8e\\xbf\\x92\\x80W\\x0bZ7t\\xbfp\\xba\\x88\\x01\\x16\\xfa\\x95?vU\\xc3@\\x9b.\\x8d\\xbf\\xc0XL\\\\*Q3\\xbfD\\xc5%\\xf5\\x82\\x84\\x94\\xbfx\\xed\\x10XD\\xe1\\x8c?\\xc6]\\xd0\\x84s\\x0ey?x\\xbf\\xac\\xf2(\\x1aQ\\xbf@=-\\x8d\\x05*l\\xbf\\xc4\\x1f\\x1f\\x15\\xe8\\xe33?@\\xd9a\\x9c\\x04\\xdaC\\xbfrj\\x8b\\x10\\xa2\\x84u?|eB\\x93s\\xc8q\\xbf\\xf8\\xcc\\xefV\\xdc\\x88Q?\\xb0\\x18\\xf0k\\x90\\x90Q?\\x00?\\xd8\\xe9\\xc3\\x93\\x0f\\xbf\\x9c\\xdcF.Uwa\\xbf\\xa87\\xcd\\xcf\\x1fQe\\xbf\\xa0\\xf9\\x7fW\\xea\\xc2`\\xbf\\x9c\\x80\\xf6\\x1e\\x8c=L\\xbf\\xa8\\xcc%M\\x94Zw\\xbf\\xb8\\xbe6\\x18\\r\\x93z\\xbf.\\x9b7\\x00v\\xdd]?\\x00M\\x7f\\x86\\xeb\\xacb?\\xec5\\xc7\\xda\\xc4Or?\\xdc\\x96\\xbf\\xa7\\xf8\\xa2M\\xbf\\xed\\x049>\\n\\xa6D\\xbf\\xfc\\xf58\\xe2\\xfa\\xff\\x8a?\\\\\\x08\\xc7n\\xda\\xacd?\\xa8\\xd8\\x0cbx\\xd4e\\xbf\\xa4\\x0bB\\xeb\\xe4\\x96\\x8c?A\\xbf\\xfcm\\x158k\\xbf\\x00q\\x9ex\\x06;*?\\x10\\x1c\\xe6\\n.$O\\xbf\\xde%O\\xbe\\xdd\\x1d.\\xbfx\\x82\\nL\\xf1FS?\\x88\\xdfw\\xfa\\x93\\x1a\\x91\\xbf \\x1a\\xe5r\\xdb\\\\T\\xbf\\'~\\x06\\x8b\\x81\\xdd\\x91?0\\xc4\\xf9W\\xc3QW\\xbfPp\\xee\\xae\\x9d\\xdfc?\\xb0!Ct\\x1e\\xecd\\xbf\\xd6\\xb5\\x02\\xb5VKC?Y\\xe6\\x86\\xe8Z\\x8cS\\xbf\\x0c?\\xdf+j\\x8f \\xbfx%\\xb7D\\xb5\\x8af?Tz\\xe44\\xf8Dv?`\\xd4f\"\\x9d\\x8e\\x8c\\xbf\\xc8\\xad6\\x9e;`W\\xbf\\x90\\xaeh\\xf1\\xf8\\xddb\\xbf\\x007(\\xd7\\xcc\\x8ct?p\\xeb\\x99\\x8a\\x0f4[?FL\\x93LV\\\\t\\xbf7FxU\\xd6\\xcd`?\\xb0\\xcb\\xd3^\\x9f\\x0e\\\\?H\\xb4\\x9c\\x06\\xf9\\xb4a\\xbf\\xe0\\x15\\x89\\x068xm\\xbf\\xc0\\xff\\xd7\\n\\xbc\\xb0G?\\x80\\xb3\\xb7\\x11\\x8e`;?\\xf0K\\x0b\\xf0z\\xf7l?0\\x1a\\xbb\\x99\\x82\\xc7F?6\\xa0\\x01Ty\\x89h\\xbf\\x00%N\\xe1\\x88\\xa7+?\\xe6\\xd0\\xda\\xc9H\\x0e4\\xbf\\x88\\xda\\xbe\\x8f\\xab\\xbbw\\xbf\\x8czVG\\xf31\\x86\\xbf\\x8c\\x0f\\xbf\\xfcO\\x07j?\\x00\\x95\\xc1`\\n\\xc5\\x1c\\xbf\\xcc\\xdc\\xc3*\\xe4\\xce\\x87?\\xe9y>\\xb8\\x93_\\x81?P\\x08\\x88\\xb3<\\xf7\\x87\\xbf\\x84{\\xcb*\\x06\\xfa\\x82?&\\x96\\xe9\\xbc\\xe8-s?hO\\x89\\xa2\\x11-\\x83?&\\xdf-)\\xabH\\x84\\xbf\\xca\\xb4/\\xc1S\\xb2J?\\xc0\\xe1\\xa3\\x11dUg?\\xa0\\x95\\xa7\\xdc\\x99\\x00\\\\?r.\\x0b\\xfb\\xc1fh?PdQ\\xbc\\xc8\\x80L\\xbfp\\x08\\xb7\\x06\\xedeg\\xbf\\xb8\\x80\\x17\\x7fY\\x14`?`\\xf09\\xf7I.M\\xbf\\xa0\"y\\x99\\x1d\\x87C\\xbf\\x00\\x9c\\x87\\xa5d\\x91\\x1d\\xbf\\x0c\\x83\\xfc\\x9d\\xb3fd?p\\x84>u\\\\\\x0cc?\\x046\\x98\\xbbK\\xfc\\x92?k?d\\xd7\\xdaFC?l\\x9dk\\x9c\\x9a\\x93\\x7f\\xbf0\\x1a\\xdb\\x96\\xfeSo?$S\\xa8\\xae\\x1dHV\\xbf\\xc0\\t\\x90\\xa9W\\x873?\\xf0\\r\\xc6\\xf1\\xa20f\\xbf@x\\xe7w\\x95RY\\xbf\\x0be\\xf0T\\xd5\\x88W?\\xa0\\xac\\x93\\x96\\xe0\\x18\\x91\\xbf&=\\x7fd\\xdd\\x90`\\xbf@<\\xe6\\xa0\\xd1\\xa1o?\\x0c\\x9f\\xf1\\x86\\xa1\\xe8\\x96\\xbf\\x1b\\x9b\\xa58!\\x8ct\\xbf\\x88\\xe1=\\xe0\\x8aUc\\xbf\\xac\\xc9\\x95x\\xae\\xd2m?\\x02\\xd7\\x92\\xd6\\x87\\xc3C\\xbfn\\xcf\\x1dL\\x84MP?\\x81\\x11ns{%\\x8a?\\xc0\\xca\\xec}\\xe8\\x14d\\xbf@\\xc4\\xf9W\\xc3QW\\xbf\\x14\\xc9?\\xea\\x92l\\xa5?(\\x11\\x05\\xad\\x06\\xe6a\\xbf\\t\\x86\\xc01}\\xcf\\x8f?\\xc8w\\xf7p\\xe1\\x85M?`\\xe0\\xafd\\x13\\x1eP\\xbfh|\\xdbZ\\xb4\\x12H?\\xd0\\xe4\\xd6\\xe6\\x82cS\\xbf\\x80\\xb3\\xe6\\xb5\\x10\\xf5U\\xbf8\\xdd\\xf8\\xbf%\\xf6h\\xbf\\x7f}\\x84\\xe5\\x8e\\xc6w\\xbf\\xac)&\\xff,+\\x82?\\xc4\\x8e\\xd7\\x8d\\x1c*\\x89\\xbf\\xa0\\xc94E{\\xecq?`\\xaa\\xb5\\xee1\\x05\\x85\\xbf\\xd8\\x16*\\xb39\\xa7J\\xbf\\xe6\\x1d\\xaf\\x03\\xd4\\'e?\\xb8\\xa4\\xd9{|@M\\xbf\\x00E\\xe9\\xa8\\xcb\\xfe\\'\\xbf\\x00\\x871v\\x8cz+?\\xb0q\\x14\\xc8\\x95\\xdeJ\\xbf\\xe0\\x02@\\x97\\xf3\\xbeT?\\xea\\x01S\\x9a\\xe3/t?\\x88\\xb5\\x88\\xf2\\x15;p\\xbf\\x1adQ\\xe5\\x8a\\xd1p?\\xc1/\\r\\xdd\\x16\\x15)?p\\xbf\\x0fcS,s\\xbf .\\xe5\\xe2\\x80\\x80t\\xbf.\\xdc^?]\\xc2q?\\x98\\x8d\\x0e\\x86\\xca\\xbch\\xbf0\\xd0d7\\x04\\x98p?\\xa8\\xebX\\xf4\\xf3\\xebO\\xbf\\x00yA\\xe6\\x85\\xe4Y?\\xb8C&\\xed\\x1b;y\\xbf\\xc4\\x1dG\\x04\\xca\\x86m\\xbf\\x00\\xa8\\xa5\\xc4\\xd7_\\x18?\\x00\\x14\\xa2\\xd7\\xc7\\xf6p?U\\xe6\\xb2Q\\xfe\\xcdP\\xbf\\xecZNDn\\x0bf\\xbf\\xc0M!JC\\x1d2\\xbf\\x04\\xaa\\x10\\xac\\xbf\\xe7o?\\xc8\\xbc_\\xca\\x1d\\xc9V?\\xf0\\xab\\xea\\xe9#\\x94Z\\xbf\\xf0i\\x9fe\\xfe\\\\P\\xbf\\x05]\\xba\\xe0\\xb6\\x18p\\xbf\\xb8\\xbe\\nj\\xb1\\ro\\xbf$\\xf5\\xf7\\x0e1Qe\\xbf\\x84\\x03\\x8a\\x7f\\xc2\\x01e?@_>p\\xf3\\x95x?\\xd4\\xca\\xaa\\xf4H\\xba\\x84\\xbfz-\\x1c\\xda\\x9e\\x12[\\xbf,zR\\xa2\\xacTv?\\x00=\\xf2Fp\\x9dy\\xbf\\xa4\\x98\\x82\\xb9\\x83\\xb2t?P\"]\\xe1r\\xf4S\\xbf\\x80]M\\xf5|\\x9bk?\\x18\\x92X\\xf36w1\\xbf\\x0e\\x15\\xa0\\x9b\\x83&S\\xbf\\xc0Nlq\\xc2\\xb7p?pL!\\x92_\\xcfe?\\x00U\\xb1=M\\x9c6?@./\\xe0\\xf1-p?=\\xe8\\xff\\xa7\\x7f\\xefy?`\\xe1\\xd4\\xd6\\x02bM\\xbf8\\xd7\\x18a\\x12\\x9eC?Hx\\xe8\\xd0\\x84IN\\xbf\\xd90msm.W?\\xf8\\x85\\x08\\xf7fgc\\xbf\\x18<\\xbe8\\xdd\\x80i\\xbfPp\\xee\\xae\\x9d\\xdfc?(\\x11\\x05\\xad\\x06\\xe6a\\xbf\\x1eT\\x03\\x8c\\x1f\\xe9\\x91?\\xe0\\x9e1\\xb5)^g\\xbf\\x98\\x94\\xa1\\x85B\\xc6Z\\xbf\\x908\\x85\\xd8z\\xe6H\\xbf\\x8esF\\xb0\\xf6\\xd9G?\\x00\\xa4\\xdfj.\\x7f\\x17\\xbfpk\\xdaj\\xa2lf?\\x00\\xbb\\xa03+LL\\xbf\\xa0\\x075\\xee\\xe1?F\\xbf\\x14\\x1e\\x9a\\x88Ir\\x8b\\xbf8\\x18\\xe9\\x8c\\r.\\x84? \\xab\\xe4t\\xf1gP\\xbf\\x00\\xf2\\t\\xae\\x9c\\xd9\"\\xbf\\xa0AO\\xb2?\\xda6\\xbft\\xc2\\xb2\\xb8\\xbb\\xc3Z?Pi\\x18\\x91D\\xa3S\\xbf@\\x08)>\\x93So\\xbf\\xe4\\xc7\\x1b\\xe7\\x1fGa?\\xc0\\rH\\xa1:\\xd09?\\x98Y\\xcd\\n;\\xffp?L^\\xfa\\x1f\\xfb\\xa6r\\xbf\\xad\\x88\\xe4\\xea8\\xbfb\\xbf\\xf8/\\xe4\\xdf\\xac\\x95K?\\x10\\xbfF\\x94C\\x98q?\\xdcRF$\\x85\\xbd\\x82\\xbf\\xf4\\x8b\\x81\\x8b\\xdfy\\x94\\xbf(m\\xc8\\x94%br?P\\x81\\xde\\xa8Y_\\x80?lVB\\xc5\\xba-\\x96?8\\xc0_w&\\x84r?0\\xae\\xde\\xbf\\xc4u\\x93\\xbf\\xac.\\xa1\\x9f\\xf0\\xfb\\x8e?\\xc8\\xce\\x1c\\xf4\\xbcou?0\\xf7\\xc8\\x06\\xe3\\xb2\\x91?0\\xeb\\x14~\\x19\\\\\\x8e\\xbfK\\xab\\x19\\x82\\x1aB\\x83\\xbf\\xb0\\x90\\xf3c\\x02\\x9b]?\\x00\\x0c}\\xc7\\x0c\\xd3s?\\x8f\\x9e\\xc3Y\\xaaV\\x80\\xbf\\x00Q\\x80\"\\xa8\\x95@\\xbf\\xa8G\\x7f_\\xdd<j\\xbf\\xa0Y+w\\n\\x02k?`\\x95\\x0c\\x9c`J4?\\x10.N\\x9b?\\x03f\\xbf\\xd0}\\xbf\\xf6Zf^\\xbf\\x90{\\xc2\"\\xf2P[?@H\\xc8\\xea\\x08\\xael?p\\xa0\\xc1\\xeaP\\xa5q?\\xda\\x9bzx:$R?\\x80\\xd0\\xb8j\\xdc/0\\xbf`\\xac\\xceq\\x18\\x03\\x7f\\xbfP\\x9aW\\xd6\\xd1=D?\\x10\\xe25\\xf5\\xb9\\xe8u\\xbf\\xe0\\xae\\x15]h\\x96f\\xbf\\xf1;\\xf0L`c`\\xbfJc\\xd4\\xe7\\xe1G@?X\\x05\\x1a\\rnA\\x80\\xbfX=\\x04\\xce\\xa6\\x03k\\xbf\\x00K\\xdc\\x1a\\x1a\\xadH? d\\xe2\\x89\\xed0x\\xbff\\x98\\xfc\\x03\\xe1\\xb8p?\\x10n\\xe8-QC[\\xbf\\xc8:\\xfe?\\xd2\\xd0S\\xbfdrI\\x8a`w?\\xbf\\xf67\\xc2\\xa5\\xc3MP?H\\xafe\\xba\\xddcb\\xbf\\xc0{\\xa2\\xf1\\x1a\\xff@?\\xb0!Ct\\x1e\\xecd\\xbf\\x08\\x86\\xc01}\\xcf\\x8f?\\xe0\\x9e1\\xb5)^g\\xbf&\\x0bPg\\xc6\\xf3\\x92?\\xe0\\xb4\\x88\\xc9\\x85K8?\\x18G\\xafVV\\xdcL\\xbf\\xd0z\\x19\\x9a\\x1f\\x06E?\\x00bM+\\xdb\\x87T?`\\x00\\xfe\\xc1KE_\\xbfH\\xc1Jr(\\xd7r?\\x8c\\xf3\\xe8\\xf4\\'4x\\xbf\\x94C?\\xd5B\\x1c\\x83?\\x88?D<\\xc4\\x12\\x95\\xbf(\\xd1\\xb49\\xee\\x9bx\\xbf\\x80\\x1c\\xc9pu\\x95(? \\x00\\xd0\\x19\\x7f\\xbd:\\xbf\\xb4\\xad<y\\xb1\\'X\\xbfp\\x9f\\xb9\\r\\x11\\xa7B?\\xf0eZ|\\xba\\x1ew?\\xec\\xe7a\\xacXvc\\xbf\\xdc^|Fg\\xa2p\\xbf\\x00DS\\x16\\x97\\x9dq\\xbf\\x00H,iX\\x1dM\\xbfl$_\\xe4/\\xcdD?\\xe4\\x85C\\xc8o\\xdcT?\\xe1\\x7f^D0\\xecj\\xbf\\x00T#\\xcb\\xaa\\xd8\\x0c?`\\x80\\xf6\\x1b\"V\\x7f?0\\x8a\\x03+P\\x14U\\xbf`\\xa9\\xb6\\xcb\\xa0\\xc7u\\xbf\\xf0\\xa6\\x8d\\x95-\\x80\\x81\\xbf\\xea*\\x8f\\xed\\r\\x12u\\xbf\\x00(\\xd3u\\x01\\xec#?\\xe0y\\xb4\\x9f|\\xe6p\\xbf81o\\xbeLn{\\xbf\\x00@\\xe5\\xfd+\\xbe(?\\x00\\x9d\\x80K\\xe4\\xa2m?\\xedf\\xf7\\x91\\x8f\\x9ff?\\xa08\\x8d&\\xb0\\x16X\\xbf`B4i5\\xe8^?\\xb5D*WC\\xb5k?@\\x06ERy\\xc2M?\\x00t\\xebT\\x94\\xf8\\xf5>\\x80\\xdd\\xb8x\\x04\\xc2Y\\xbf\\x8c\\x92+\\xe6N\\x89`\\xbf\\xf0i\\xfa\\xebT\\xcfl\\xbf8\\x1cU\\xec\\xfc\\x10h\\xbf\\xe0r\\\\XZ\\xaaC?\\xe0.\\xed/\\x95#l?\\x80\\xc7\\xc2p\\t\\x17\\x04\\xbf(\\x8d*\\x83X;G\\xbf@\\xbfw\\x94\\xf8y`\\xbf\\xe0\\x07\\xf8\\x90n\\xaeO?\\xd0\\xa3\\r\\xef.\\x0c\\x04?\\xa0[AA\\xfbpS?\\xc0\\xea\\n;\\xc7\\xd2#?x\\x89\\xa5\\x17\\x8f\\x07\\xf6>n\\xd3L-\\x1b~!?\\x80\\x93GvsQ=?\\xac\\xea\\xbf4\\x9ar=\\xbf\\xc0O\\x05\\xeb\\xd1n#\\xbf\\x00\\xdc$|y\\xdf9?H\\x14tL\\x8f\\xfcH?\\xd0[\\xd3sE\\x01#\\xbf`\\xcd#\\x10y\\xdd0?.\\x8a7\\x08\\xd2\\x86@?x\\x98\\xd6\\xdc\\x92\\x1b\\x10?\\xad\\x1b\\xc9ux/Q?\\xac\\r\\xc8*8/P?\\xd4\\xb5\\x02\\xb5VKC?\\xc6w\\xf7p\\xe1\\x85M?\\x98\\x94\\xa1\\x85B\\xc6Z\\xbf\\xe0\\xb4\\x88\\xc9\\x85K8?\\xa7\\xd7+4XUj?\\x08P\\xf6\\x03@\\xd4&\\xbf6Z\\x99\\x85\\xdf\\xa7+\\xbf\\xc0J\\r\\x8c\\x8b\\xea[\\xbf\\xb0o\\xbaK\\xda\\xa24\\xbf\\xa0\\x80KF\\x07d\"?wh\\x01\\xcf\\x0b\\x18X\\xbf\\x8e\\x05c\\x14\\xc6\\x90S?\\xe4\\\\I\\xd3\\xc3jU\\xbf!\\xcd\\xbb\\xe7P&o? \\xac~s{\\xbc\\x18?\\xa0s\\xdeQ\\x0b\\x17!?\\x8e\\xfeqB\\xf1B[?\\xff9\\xdf35My?0h\\xef\\x83\\xe0\\xe28\\xbfB\\xe2K]\\xd9\\rN?\\xc6\\x01Zp\\xb3\\x18w\\xbf\\xe0m\\xf4\\xffP\\xf19?\\xff\\xb2%\\x18\\x7fGd?\\xb2\\x83\\xd8VZ\\x81W?\\xb8n\\x96A\\xe7\\x8c9\\xbf\\xd2\\xa4I\\'YP_?&\\xc0\\xe4\\xa1Z\\xf4o?d#\\xa9.\\xb5\\x07k\\xbfH\\xd6\\xd5\\x81\\xa4\\x8cf?\\x98\\xf4Uf\\xe4\\xd0l\\xbf\\xc0\\xf6R\\xc2o\\xdaa?\\n\\x987rA\\xd3f?\\xb8\\xe4\\xef\\x00\\xe4\\xa7a?\\x1e\\x1f\\xb4\\x14\\xc2qi\\xbf\\xc2\\xf6\\x1d!r~c?0\\x9a\\xb79-\\xbbY\\xbf\\x8aiM\\x89\\xdf\\xbch?\\x9a\\xfaU\\x87L\\xf3Q\\xbf\\x00\\xd9l\\xbb\\x0f\\'F?P]@\\x19\\xb8\\x9aJ?\\xb7\\xb1L\\x83Z\\x07S?\\xb0]\\xee\\x8e\\xc1!)\\xbf\\xd4t\\xb5\\xcc\\xde\\xd9L\\xbf\\xa0\\xb6\\xa7\\xe4+\\xdeE\\xbf\\xfc\\xa9h\\x8f\\xb6C6\\xbf\\x80\\x98g.\\x89\\xd1#?L\\x7f\\x8a/\\xa9}@\\xbf\\x00\\x82Cr\\x9c\\xa7\\xf2\\xbe\\x80\\xd7\\xc0\\xa7-\\x004?\\xa8\\xa6j\\x06B\\xeer\\xbf\\xf9\\n\\xd6\\xa8\\x15\\x99^\\xbfx1\\xe8\\x83\\xc1\\xdaC\\xbf\\xa0\\xa9\\xd3\\xad\\xabri?\\x80\\x83\\x0e\\xb5\\x12\\xe8[\\xbf@\\xde{-\\xe5\\x9a-?\\x84fM\\xde\\xf9\\xf3T?Nq\\x8d\\xcd\\x8d#e?`\\x98\\xc3\\xa2\\x86\\xcb7?`,\\xeb\\xd4\\xfa\\xebC\\xbf\\xf0\\xcd\\x8d\\xacw\\x15A\\xbfp\\x8d\\xff\\x02\\x14\\x961\\xbf\\x102\"\\xaae\\xd2Q\\xbf\\xe8\\x1a7\\xf8\\xc2\\x04)\\xbf@q\\x8d\\xbd\\xae\\xb4\\x06?\\x88\\xd4m\\xfa\\xf7\\xcc2\\xbf\\xf8\\xd7Z\\xbd5\\xdcZ?\\x15\\xbe\\xadD\\xf7\\xc7Q\\xbf\\xcf`qp\\x7fE\\\\?\\xe0\\xf1h\\xef\\x0e\\x90+?Y\\xe6\\x86\\xe8Z\\x8cS\\xbf`\\xe0\\xafd\\x13\\x1eP\\xbf\\x908\\x85\\xd8z\\xe6H\\xbf\\x18G\\xafVV\\xdcL\\xbf\\x08P\\xf6\\x03@\\xd4&\\xbf\\xed\\xc28!\\x0f\\xe0l?\\x9a\\xd1\\xe4\\xfct\\xe1\\x13?\\xd0%\\x0c\\x0fC\\x06R?\\xd0\\x8e\\x95)\\x9fxH\\xbf8B\\xd3\\xd6`XX?\\x10/\\n\\xf1\\xd0\\xbf/?\\x00\\x97\\xe4\\x90T4\\x12?\\x00\\x1a}\\x05y\\x90P?\\xc0#\\x9aJp\\x04\\'\\xbf\\xfb\\xf9\\xa2Z\\xd6vc?\\\\\\xca\\x88+g\\xcaC\\xbfp\\x1c\\xc5 a\\xee^\\xbf2\\x9a\\x8a5^Q2\\xbf\\x80H\\xdd\\xd55\\x9f\\\\?\\xa0\\xda\\xbeH\\xbe\\x15\\x07\\xbf\\x1ch(a\\x1c\\xd3s?X\\xd5\\x0e\\xb2\\x81\\xcca\\xbf\\x18\\xcc\\x89\\xf1\\xc1\\xc2O\\xbf\\x86WT\\xfe#\\x8bX?\\xb7_\\xe7\\xcf\\x93\\xcc6\\xbf^\\xdc%\\x86\\x93X-?\\xb2\\xe5d\\x99t\\xb2l?\\xa83\\xa2g\\xc7\\xdfl?\\x0c/\\xe7Iq\"p\\xbf1(\\xa9\\xb4_cr?p\\xcen\\x85\\xf2\\x10t\\xbf\\xd8U\\xb1\\xe5\\xed\\xeaj\\xbf\\xe0I\\xcf\\xc4\\x1d|y?\\xb4\"\\xf6\\x80G\\x9bd\\xbf\\x0c\\x00\\xbe\\xdc:4Z\\xbf4\\xc5nh!0|\\xbf\\x8c\\x13?Cl\\xaco?x\\x93E\\x9c{X6?\\x00\\x8a\\xb3\\x9c|\\xcd\\x08?\\xac\\xab(\\xdfZtN?\\x92\\xaaw \\x9bIP?\\xa8{;\\x08\\xfb\\xc05\\xbf\\xe0\\xa4\\xac\\xe7uiK\\xbfb\\xf7\\x8f\\xc5t\\x8bP\\xbf\\xf0\\x1a}\\x87\\xac[2?\\x80\\xad\\xa5\\xce\\x1a\\x9b:?\\x10\\x9d=\\x83\\x03\\x9f:\\xbf\\x08\\xf8\\x1e2\\'\\xe7C\\xbf\\x10\\'\\xfb\\xe4\\x99AL\\xbfI\\xc4\\xf09\\xeala\\xbf6E\\x87\\x0fyJ\\x15?|\\xb8\\xbf\\xe2|\\xdf5?pmg\\xc1\\xc9\\x92d\\xbf\\xf1\\xec\\x19\\x04\\xfaC6? \\xe6S\\xe9\\x06\\x97\\x0e?\\xee\\x9a\\xb4H9O[?\\xac8\\xbe\\xc7\\x0fe\\x08?\\x9a\\x98\\xc9\\x13\\xd1\\x060?\\xa0\\xd0K\\x19\\xf0tB?\\xd7`P(\\xa3g8?\\xa02d?p~\\x0c?\\xf8\\xafS\\xaclhI\\xbf\\x1cJh\\x98v\\xa2\\x15\\xbf\\x18\\nj\\x8a\\x1dY\\x13?\\xa7\\x0e\\xca\\x00p]@\\xbf\\xab\\x96\\xb2@R\\x9f9\\xbf\\xbb=\\xce\\xa5\\xda\\x8eL?\\x1a\\x9eg\\xef\\x9d!B\\xbfR\\xc8BT\\xfaM8?\\x0c?\\xdf+j\\x8f \\xbfh|\\xdbZ\\xb4\\x12H?\\x8esF\\xb0\\xf6\\xd9G?\\xd0z\\x19\\x9a\\x1f\\x06E?5Z\\x99\\x85\\xdf\\xa7+\\xbf\\x9c\\xd1\\xe4\\xfct\\xe1\\x13?(\\xe2\\x12\\xcea\\xfe^?\\x0f\\xc3r\\xa7%kR?\\xf8\\x19\\xb9\\xeb}yB\\xbf\\xdc\\x129}pi4? o\\x17\\xd2$\\x17\\r\\xbf\\x82\\r\\xf7\\x19\\x89~B\\xbf %pwL\\xf93\\xbf\\x8fn\\xc2\\xd4\\x94WQ\\xbf\\xa0\\xd4\\xd9\\x8d[A_?\\x98\\xf9z\\xc1\\xfe\\x1e\\x0f?r\\xa5(\\xa1]\\xe7C\\xbf]\\xfaQ\\xb4\\xcfM]\\xbf\\xed\\xbf\\xb4*[\\x18\\\\?X\\xfb\\x154\\xa7&\\x14\\xbf\\xbf\\xceD\\x18\\x9d\\x82Q?\\x0c\\xf2\\xb7\\xa5\\xef\\xefJ\\xbf\\x99\\x8d\\x02\\xfa.Hb\\xbfq\\x87\\x99\\xb9I\\xc5V?\\xb4\\x81\\xf6\\x1c\\xc5kE?T\\x8aA\\xb1`\\xeaN\\xbf\\xf0\\x86\\xc9&7\\xfb1\\xbf\\x14\\x03Aq\\xeaIR?P[\\x07f\\x95\\x84I\\xbf\\xc8\\x16\\xdc\\xfa\\xc4\\xb1G?`\\xf4>\\xc6w$2?B\\x90\\xbf\\x83K(Y\\xbf\\xf4G\\x7f\\x8d\\xfd\\x19e?\\x9c\\x81\\x8bg7sC\\xbf\\x90\\xdd\\x03#.\\x87<\\xbf\\xac\\t\\x96\\xc3:\\x90a\\xbf\\xe0\\x06\\xdca\\xf3\\'7?\\x80V\\x0bm\\xacAD?\\xa2\\xbex\\x18(\\xfb-?\\xbb\\x97}\\x85\\xd8\\x0eR?\\x02\\x8amkc/C\\xbf\\xd4G|\\x96\\xbd\\x8b+\\xbf\\xe2\\x9a\\xe4\\xe4\\x12\\xb28\\xbfL\\x80\\xacL\\xd40@\\xbf\\x10\\x9eh\\xea\\xe2\\xd3%\\xbf\\x10;\\xd2Z\\x11@!\\xbf\\xf4\\x97\\xb0\\x18#(A\\xbf0Z$\\x9b\\xeb/\\x0b?0$\\xec\\xd68\\x18\\x19?\\x00\\xeb\\xb5?B\\xd3r?\\x95y\\x8f\\x8a\\x9a\\x01i?\\x00\\x17\\xf4\\x17b\\xd0(?H\\x8eeC\\x1f\\xda\\x80?\\xe4q\\x0ex`\\xa3Y\\xbf\\x90S!N\"+`?@\\xc2\\xe0$U\\xcb[\\xbf\\xfd\\x9eF\\x0fa\\x17Z?\\xac^\\x1e\\xe0\\xce\\xaaQ\\xbf\\xf07\\x8dL\\x14\\xa7\\x8f\\xbf\\xe8\\xce\\xb7\\x9bU\\xbf`?@\\xc0\\'\\xcbN\\x924?\\x00\\xd3@\\x1f\\xcb\\xa0\\x8c\\xbf\\\\?4\\xe1\\xec\\x9bV?\\x00\\x958\\xae~?\\x1c?H7\\x0c5\\xa1yZ\\xbf\\xd1F\\x91\\xb1\\xf4\\xa1e\\xbf\\xc8\\xea\\x9fJ\\x90\\xfaT?\\xda\\xe5\\x8f^\\xf9\\xe8\\x85\\xbfX\\xe1\\xd9nV>t?x%\\xb7D\\xb5\\x8af?\\xf0\\xe4\\xd6\\xe6\\x82cS\\xbf\\x00\\xa4\\xdfj.\\x7f\\x17\\xbf\\xa0aM+\\xdb\\x87T?\\xbcJ\\r\\x8c\\x8b\\xea[\\xbf\\xd0%\\x0c\\x0fC\\x06R?\\x0f\\xc3r\\xa7%kR?\\xc8\\x7f\\xb1\\x0e J\\x90?p\\x02\\x9dls\\xaew\\xbfPeQY\\x98\\x84g\\xbf\\\\\\xc8J}QN{?@)\\x8a\\x87\\x8dw^?`\\x983\\t\\x7f\\xc9m?\\x80\\xbf\\xa4\\xdd?7P\\xbf\\x18\\xc3\\x801\\xadUe?x]\\xaf\\xa4\\xead[?\\xf7\\xd8\\x93\\x88F\\xe6t\\xbf=Q{\\xf1%X\\x85\\xbf\\x90\\xd0\\xd9\\x0c4sy? E\\xc1^Dnm\\xbf\\xf9~\\xebA\\x90\\xed\\x81?P\\xbf\\xdc=\\xe8\\xdbq\\xbfp\\xabK;\\xc1+b\\xbfl\\xa8\\xea/\\xa8R^\\xbf,\\xfc:DC^X?\\xb9\\xb6\\xbc\\xb0\\xed3y\\xbf\\x10\\xb5i\\xbeSRd?\\x00\\xef\\x95P\\xdb\\x11\\x96?>\\xd8\\x1c\\x9a\\xea\\xc2\\x84\\xbfx\\x1a\\x9c\\xe2\\x01\\x14r?\\x18bm\\xedM\\x96\\x93\\xbf\\xee\\xf8\\xe7s\\x85\\x9f\\x85\\xbf@\\x04 \\x83B\\x83\\x9d?\\x80\\x1b\\xb0O;\\xcd\\x88\\xbf\\xc8\\xc9K\\n\\xdb\\xd6q\\xbf\\xe8\\x13\\xa5\\xc6\\xa0\\x15\\x99\\xbf\\xa0\\x94\\x98Z\\xed\\xff\\x83?\\x0e\\x90\\xdd2+\\xc0\\x83?\\xa0\\xf0g\\xb7f\\x1db\\xbf@\\xf1\\xdah\\x84\\x17g\\xbfZ\\x95L\\x15\\xb3\\x80<?\\x80ho\\xa9\\x16S\"\\xbf$\\xf4.J\\xb6\\xdbs?\\xd0\\xbe\\x14Fq\\xf0i\\xbf\\x90\\xae#\\x0e\\xb7jR?@\\xea\\xdfZ@\\'U?\\xe0\\xba\\x8d\\x06;\\x0eI?@\\xa1\\x1au\\x00\\xcfP\\xbf@\\xcc\\xb8\\'\\x97\\x0be\\xbf \\x05\\xbcU\\x94\\nx\\xbf\\xba\\xb1m\\xc3T\\x08[\\xbf\\xc0\\x7fH\\xd1\\xf1pY?\\xa0\\x0fU\\xe9\\xab<w\\xbf -\\xc6P\\'\\x7fZ?\\xf8\\xb7w9t\\xacq\\xbf\\x00\\xfd\\x1f,\\x97,s?,\\xf2\\x87\\xb3n!2\\xbf\\x00\\x9c\\xadH\\xc8\\x1b\\xb7>`\\xadfX6\\x82\\x88?\\xc0\\xd9\\x0beT`!\\xbf\\xe0\\xb2\\xb2\\x10~AK\\xbfP\\x8b\\x18\\xd7\\x81\\xf8\\x89?\\x00G\\'\\xcf\\xa0\\x90J\\xbfp<T\\xb5_\\x9bW\\xbf\\xdd\\xc57\\x15\\\\\\x16l?I\\x07b\\x13\\xf4,T?\\xe8\\xd6\\x96\\xd3\\xf7uD\\xbf\\xfa\\xd2\\x02\\xf6\\xcf\\x08t\\xbf\\xa4\\x7f&\\xc1\\xc9\\xc9y\\xbfTz\\xe44\\xf8Dv?\\x90\\xb3\\xe6\\xb5\\x10\\xf5U\\xbf\\x80k\\xdaj\\xa2lf?`\\x00\\xfe\\xc1KE_\\xbf\\xb0o\\xbaK\\xda\\xa24\\xbf\\xc8\\x8e\\x95)\\x9fxH\\xbf\\xf6\\x19\\xb9\\xeb}yB\\xbfp\\x02\\x9dls\\xaew\\xbf\\xb0\\xc4re\\x11\\xc8\\x8b?0\\xbf)\\x81\\x82\\xb4a\\xbfd\\x03V|\\x16\\xf3t\\xbfHd\\x8e\\xff\\x84\\xcbk\\xbf\\xa0\\x97\\xb6D\\xa9\\xfdb?\\xc0\\x83\\xec5\\xc8\\x17c?\\x00~\\xf1\\xa8\\xab)D\\xbf\\xe0\\xc4\\xecR>\\xefX?I,w\\xf6\\x9f\\x91a?\\x14s\\xae\\xe4\\x0cFj\\xbfPF\\x94\\xd4&8t\\xbf0O\\x19\\xd2?\\x88T?\\xd8fg\\x06\\xa0\\xa8o?\\xa0\\x15(z\\x04)h?\\xa0\\xfa-\\x9a\\xe9\\xa5_?\\x98s[\\xe8!\\xc1;\\xbfZW\\xa6\\xb6\\xb0Ba\\xbfn\\x93\\x87\\x08\\xd8B8?\\xcc\\xd7\\x9a\\x01\\xb3\\xe2\\x88\\xbf`\\xacq\\x18\\xd0\\x84\\x90\\xbf\\xdaI\\x7fK\\xc6\\xb7x?\\xc07\\xc3\\x12\\xf6.~?\\x80\\xb9\\x92\\x1b\\x0e\\xab\\x92?\\x02\\x05\\xaf\\x1e\\xc0G\\x81?\\xbc\\x9b_\\xad\\x85L\\xa3\\xbf`\\xf3i\\xd1\\xaa\\x9e\\x95?\\xb0~\\xc1\\xa5\\x13\\xc9p?\\xb4?^\\xf9h~\\xa3?D\\xebl\\x8d\\xb2\\xe9\\x92\\xbf\\x1c\\xcfG\\x88\\xac|m\\xbf\\x8c\\x91\\t^\\xbb\\x17l?\\x18\\xe6\\xa9Q\\xcd\\xebt?>\\xd3\\x12\\x85O\\x03A\\xbf\\xc0\\xd6\\xd9\\x1cZH<?`\\x90&Wb\\xb5\\x81\\xbf\\xd0\\xd7\\x91d\\xb2$m?\\x10\\xff\\x96\\xe2\\x0ciL\\xbf@Hm\\xe75?M\\xbfp\\xa4C\\x93Vw`\\xbf -\\xc5@U&d?`w\\xb7\\xcd\\x86(q?\\xe0\\xf5\\xbbi\\x10X\\x87\\xbf\\xa8s\\xb2\\xa7^\\xf9E\\xbfT\\xef\\xdb\\xbd\\xb0K\\x84?\\xc0\\\\\\xe0\\xd0\\xb6\\xebR?\\x00(\\xb1\\xc8\\x0f|O\\xbfxXv\\xbcy\\xe9{\\xbf\\x10\\xf4_)\\x92\\xc4h\\xbfj\\xe9\\xa9Zn\\\\a?\\xa62M\\xbb-\\xae6\\xbfp\\x0b\\x1c\\xad2E\\x7f\\xbf\\xb0\\xf2\\x9f\\xea\\x01\\xa6G?`pw\\xf2^\\x90U?\\x80\\x0cq\\xc6Z\\xccT?aQX~7;\\x80?\\x80S\\xed\\x1b\\x9f\\x9e<\\xbf\\xc4I\\xae\\x00?pP?U\\xb5\\xc4q4\\xd3V?\\xc8\\x8e\\xbb\\xf2\\xe0$7\\xbfv\\xe7#\\xc9\\x88R\\x81? |\\xfe\\xb0E\\x11g?`\\xd4f\"\\x9d\\x8e\\x8c\\xbf8\\xdd\\xf8\\xbf%\\xf6h\\xbf\\x00\\xbb\\xa03+LL\\xbfH\\xc1Jr(\\xd7r?\\x80\\x80KF\\x07d\"?<B\\xd3\\xd6`XX?\\xdc\\x129}pi4?PeQY\\x98\\x84g\\xbf0\\xbf)\\x81\\x82\\xb4a\\xbf\\x9e\\x9f4\\xd7WO\\x96?\\xa8K\\x84\\xa5\\xa5\\xeco\\xbf\\x80\\x84a\\xa3\\x9a\\x06D\\xbf\\xe8\\xdcIQS)\\x81\\xbf\\x88\\x83\\xe4\\xbfpDp\\xbfLp\\xa0\\xfa\\x96l\\x81?@/\\xfcs\\x06oG\\xbfp\\xb1\\xee\\xb9\\x99\\xd9??\\xe9\\x92\\xeeY94~?@1_\\xdaF\\xb1]?\\x00\\x1e\\x1c\\x06{\\xaeJ?x4\\xf8Z)\\x9co\\xbf\\xc0\\xb5\\xc8We^b\\xbf8`\\xfb)\\xc5\\xe6b\\xbfH\\x15\\xaa\\\\\\x05iu?\\xf0\\xc9\\xbd\\x8fk\\x8a`\\xbf\\x90\\xe2r=;\\\\q?\\xd47\\xea\\x97Zy\\x81?\\xc0\\x87\\xe15\\xd2\\x93`?\\x00\\xac\\x9f\\xc6I[\\'?\\xf0O\\xe1\\n\\x0b\\xd3d?\\xc0=\\x8b\\x0f\\xc7zl\\xbfL\\xf8\\x80\\xbf\\x9b\\x8do\\xbf\\x00\\xb8\\xd9=;_*\\xbfP\\xb8\\xf0,\\x89\\xc3v\\xbf\\x18\\xac\\x14\\x9a!\\xcdj\\xbf\\x80\\xac\\xcb^1#s?\\xf0\\xc6%\\xff$\\xcct?h\\xddT\\xb6\\\\\\xc2s\\xbf\\x80$Cde{Q?\\x00\\xf2?\\xd1\\x13-\\x0f?\\xf15A\\x0b9\\x18v\\xbf\\x80Q`\\n\\x99\\n.?`\\xff#I\\x0f\\x82U?\\xb0\\xe8J\\xa4\\xf1\\x7ft\\xbf\\xa0\\xc7\\xc1~\\xcf\\xce6?\\xb0\\xc5\\x1fd\\xeb#c\\xbf\\x90\\xa8\\x06;\\xb8hq\\xbf0\\xda\\xf1\\xa7\\x1e\\xd4`\\xbf\\x80R\\x05\\xd7\\xfc,5?\\xd4,}\\x1f\\x01\\xf3\\x87?.\\xd2R\\xdc\\x1c4d?d\\x02O3e\\x85`\\xbf8mG\\x8d\\xb1x\\x7f?t\\xe8\\xd4F\\xfa2S\\xbf\\x1a\\x04\\xd8\\xcd\\xfd\\x1bs?\\xf0\\xeb\\xc8\\xb7\\xa6\\'d\\xbf\\xc6iCg\\x93\\x9a1\\xbf\\x9f\\x81[\\x874\\x8bF?\\xc0\\x7f\\xf9[\\x84\\xa5\\x8c\\xbf\\xc0\\xdb\"^D\\xcb5?\\xec\\x15\\xc0\\x00\\xc0$`?\\x9eU\\xe8\"v)\\x96\\xbf6\\x07\\'\\xd3\\xe6Au\\xbf\\xa4K\\x88\\xda+\\x0c`? \\rC3\\xb4%\\x14\\xbfb\\x9e\\xc8\\xe6i\\xef^\\xbf\\xb0\\x08\\xf0S\\xbe\\xf7<\\xbfx\\xe0jh\\xc7\\xf8G?\\x94\\xe6\\xf7B\\xad\\xd5a?\\xc8\\xad6\\x9e;`W\\xbf\\x81}\\x84\\xe5\\x8e\\xc6w\\xbf\\xa0\\x075\\xee\\xe1?F\\xbf\\x88\\xf3\\xe8\\xf4\\'4x\\xbfwh\\x01\\xcf\\x0b\\x18X\\xbf /\\n\\xf1\\xd0\\xbf/? o\\x17\\xd2$\\x17\\r\\xbf\\\\\\xc8J}QN{?d\\x03V|\\x16\\xf3t\\xbf\\xa8K\\x84\\xa5\\xa5\\xeco\\xbf\\xcc\\x83y_\\xf9@\\x8d?\\xa0\\x92\\x95\\x1ag\\x99Q?\\xac\\x06\\xca\\x82\\xc6\\xdb\\x80?\\xe0\\xfb\\xaf\\xe2\\xf7-l?\\xb8e\\xdbN\\x82\\x9dW\\xbf\\xd8\"\\xc78{\\xa9P?\\x15*]a\\xdc}h\\xbfo\\xb5\\x94ba\\x84\\x82\\xbf@\\xf4\\xdc\\x19!\\xe5;\\xbf\\xec\\xe9\\xed\\x83D ^\\xbf\\xf6%q\\x95\\xca6\\x80?\\x00\\xd8\\xd1\\xac\\xd8\\x86\\x17?\\x8e\\xdb(\\x92\\xd5\\x93s?\\xcb-t\\x13\\xe04p\\xbf4\\xa1\\x08~d\\x1cK?DV\\xfd\\x0c]\\x94E\\xbfP\\x17S\\x96\\xb6\\xa5[\\xbf\\xf4\\x9d\\xa1\\xc32\\xc0\\x8b?\\x14\\x86\\x83\\x96t\\x14{\\xbf`\\xe3/\\x11Q\\xb2^?\\xda\\x01\\xf0\\x988:\\x90\\xbf\\xce\\xc7~\\xc0\\xb9\\xf5m\\xbf`5\\x9a\\x88\\xe8W\\x8d?\\x08V\\xfd\\xf77\\x07~\\xbf$\\t~\\x9f\\xa1\\xd5f\\xbf|!\\xbf-\\xfb\\xb3\\x91\\xbf0?\\xf1\\x07\\xc19}?\\x94F\\x05\\xe7\\x08\\xe6|?\\xec\\x83V\\x89\\x10\\x11t\\xbfRO\\xbf$Y+q\\xbf\"\\x8f\\xff\\xfe\\x94\\xb44?\\xc4\\xcf\\xa7\\x96\\x8fQ[?\\x8c\\xb1\\x19\\xcaf\\xa2m?\\x00H\\x9c\\xf6\\x87k*\\xbf,\\x7fl\\x95\\xcd\\xa4Y?\\x80\\xfd\\xc5\\x97{\\xd8a?\\xf8\\xf5\\x15\\x92\\xc4\\x85k?\\x00\\x89\\xc7\\xc1\\xe3\\xcbR\\xbf\\xc8\\xce\\x98c\\x18zl\\xbf\\x94u\\x9di\\xc9\\x90\\x8e?\\x1a\\'\\x14O\\xdcnZ?\\x84>\\xeb\\xd6\\xa7Z\\x83\\xbf\\x9c\\xa1\\xdd\\x95\\xb6\\x92\\x80?\\xc6g\\xc2\\xc99\\xf0c\\xbf\\xd0C\\xb1\\n\\xf7\\xb9p?\\x90\\xba\\x88\\xa4\\x16Q{\\xbf\\xd5zi\\x00\\xb0.G\\xbfC]\\x03\\x1b\\x87\\xddI?\\x98\\xb7g\\xf4\\xf7R\\x85\\xbf\\xc0\\xba\\xa3\\xa0B8_\\xbf\\x00\\x0eSv\\x1fm\\x1d\\xbfX00\\x11G\\xaa\\x83\\xbf\\xc8?\\xd5W5\\xb2C\\xbf`\\xc6/\\xa6\\xc5:=?`\\x0e\\x95\\xa7\\x80\\xff#?Q\\xa8\\xf5\\x9cD\\x95S\\xbf\\x00[\\xae@\\xa97\\xfc\\xbeZ\\xbeQ\\xa1v\\x04q?P\\xfd.\\xfa\\x92\\x8dg?\\x88\\xaeh\\xf1\\xf8\\xddb\\xbf\\xac)&\\xff,+\\x82?\\x14\\x1e\\x9a\\x88Ir\\x8b\\xbf\\x94C?\\xd5B\\x1c\\x83?\\x8a\\x05c\\x14\\xc6\\x90S?\\x00\\x97\\xe4\\x90T4\\x12?\\x82\\r\\xf7\\x19\\x89~B\\xbf@)\\x8a\\x87\\x8dw^?Hd\\x8e\\xff\\x84\\xcbk\\xbf`\\x84a\\xa3\\x9a\\x06D\\xbf\\xa0\\x92\\x95\\x1ag\\x99Q?Y\\x92\\xcdN\\xed\\xa7\\x96?D\\xdad\\x92\\x1b\\xab\\x90\\xbf\\xe0\\xbf\\x1d\\xe3\\xc1sS\\xbf \\x88\\x07\\xeb\\x1d\\xe4j?\\x98E\\xdd\\n\\x1c\\xdaM?\\xe9\\x1fm\\x94\\xc7\\xd2r\\xbf\\r\\x85\\xedE\\x9c\\xce~\\xbf\\xf0K\\x89\\xb1\\xfblv?\\xbc\\xe4\\x97\\x82\\xf8Xr\\xbf\\xec\\xad\\xba\\x8e\\x88\\x9es?p\\xa7\\xdf\\x84\\xcaAi\\xbf\\xe2\\xb3,\\x94\\xfc\\x9a\\x81?\\x86\\x08\\xdfq\\xcc\\xfcY?\\xf8w\\x8e\\xd3\\x11\\x89S\\xbf\\rE\\x12\\xc0h\\xc1x\\xbf\\x80\\x7fq\\xd3E;a?\\xc8\\xc0\\xa5\\xebm\\xc6\\x9a?\\x91c7\\xff\\xc3[q\\xbf\\xe0\\x88RU\\xed%q\\xbf\\x10\\x8ep\\xf2\\xb9\\x00\\x9a\\xbfO\\xed\\xf8db#\\x84\\xbf00\\xbc\\x05\\xee\\xce\\x93?\\xb4\\xc3\\xf9\\xe7\\x95\\xe3\\x91\\xbf87\\xf6\\x93\\x8b\\xde}\\xbf\\xc0\\x92\\xf4\\xafy\\x05\\x94\\xbf\\x88\\xc5\\xa7\\xf5K\\xe1\\x92?\\xbeqwCMQ\\x8a?\\x04\\xfd\\xa2~\\xe3qb\\xbf\\x80\\xb3\\xa0\\x85\\x9e3\\\\\\xbf\\x81\\x0eu\\xf7\\xe4n\\x7f?\\xb0_\\x049\\xa6\\xdeG?<\\xf9\\x8e\\x1ea\\x87`?\\x08\\xe8@\\xa0\\xf1\\x14n\\xbf\\xa0IY\\xa1\\x809Z\\xbf\\xe0\\xdct \\x08sD\\xbf@\\xed\\xe9O\\xdc\\x025?\\xb0\\xad\\xe0\\x85\\x8c\\xb3H\\xbf@\\xf0\\xc5\\xda!}:?@NHW\\xa7\\xc1W?\\x80o\\xb2\\x96\\x01Y\\x15?\\xb0N.\\x13\\xee`e?\\x90s\\xfe\\xdc\\xabe\\x91?\\xa8\\x9a\\xdbVu\\xecP\\xbf\\x90\\x1f\\x0f\\x00d*r?\\xc0\\xf7_\\x7f\\xa1\\x14^?\\xa6P\\xdf4\\xb6\\x92h?\\x8e\\xf3\\xd6\\x8a\\x89~U\\xbf\\x00\\xf0\\xbd\\x08u\\x1dO\\xbf\\x00\\xa9Z8\\xe3`i?@\\x7f\\x9d\\xd7n&H?\\x00\\xd0\\x18\\xf6\\x15~\\x01\\xbf\\xe8`\\x87\\x9a\\xc3~e\\xbf0?Y\\x9c\\xd6\\xaaU?\\xb0\\xdc\\x8c\\x97\\x06Jf?\\xe8\\xf2\\xaf=\\x05\\\\<\\xbf\\x00\\x05/\\xa6`\\x91\\x1d\\xbf\\xa0v1\\xda\\xbf4G\\xbf\\x00.\\xea\\xe6.\\x83:\\xbf\\x007(\\xd7\\xcc\\x8ct?\\xc4\\x8e\\xd7\\x8d\\x1c*\\x89\\xbfH\\x18\\xe9\\x8c\\r.\\x84?\\x88?D<\\xc4\\x12\\x95\\xbf\\xe4\\\\I\\xd3\\xc3jU\\xbf\\x00\\x1a}\\x05y\\x90P? %pwL\\xf93\\xbf`\\x983\\t\\x7f\\xc9m?\\xa0\\x97\\xb6D\\xa9\\xfdb?\\xe8\\xdcIQS)\\x81\\xbf\\xac\\x06\\xca\\x82\\xc6\\xdb\\x80?D\\xdad\\x92\\x1b\\xab\\x90\\xbf\\x90WHy\\xb7\\x05\\xa2?P\\x99\\xe85X\\xad\\x88?\\x00\\xed\\xf7\\x81\\xb8\\x18P\\xbf\\x0c%\\xf1M\\n\\xc2a?\\x08\"\\x1d\\xe8\\xa4\\x1cR?4\\xf1\\x98\\xfd\\x10\\x9eh\\xbf\\x00\\x98^\\xac\\xeb\\xde{\\xbf\\xd8?\\xed\\xf4\\xb5\\xd3f?\\xdcL\\xfc\\xa6E\\xb4y?\\x80\\xfdqR\\xaf\\xb4z?\\xc0\\xc3\\xc7\\xab\\xcf\\xf3b?N\\xa2\\\\\\x130\\xd8d\\xbf\\x90<\\xc3\\xbbqXP\\xbfv\\x83cR\\xa0\\xfef?pF\\xc4\\x8b\\xee}s\\xbf\\xc0\\xb9\\x18s\\x7f\\xb0}\\xbf\\xb0\\x8cx\\x9b\\xa4\\x85_?(v\\x83X\\xc8\\xf2\\x84?@\\xa0\\xa9q:\\x94\\x86?f\\xa6~HGT{?\\x00\\xe8\\xe1@\\xbf:Q\\xbf\\xa0z^\\xe5\\xa7Yy?\\x90\\xdbI\\xc5\\xb6\\x18\\x85?\\x00LC\\x97\\xf4\\xf32?PKX\\x19\\xc75t\\xbf\\xd4\\x0b\\x87\\xf7\\x8a\\x9d_\\xbf\\xa0\\x80\\x9fm\\x9epN\\xbf \\xc3\\xf7\\x9b):d\\xbf\\x92\\xd3\\xb0\\x113\\x95y\\xbf@Wp\\xa4e\\x05G\\xbf\\xe0ox\\x1c\\xb1\\xf7S?\\xd0o\\xcfRM[k?p^X\\xa3\\x80ij?P\\x9c\\xe0\\xeazbs?\\x88\\x9d{\\xdb\\xc8gp?\\x00u\\x15\\xad\\xcd\\xc08\\xbf\\xc0\\x9b1\\\\ \\xa9q\\xbfL+g~\\xf0N\\x94?\\x84\\x81\\xf5\\xf6QSb?\\x90`\\x18\\x8b\\xc3Mc\\xbf\\xac\\x07\\xc22\\x1a\\xf0\\x93?\\x88\\x06\\xb9\\xd8R`e\\xbf\\x00;\\xe3\\x8d./Y?\\x10\\x9a\\xe1)w\\xe2k\\xbfB\\xa4.\\xab\\xa1RJ? \\x02\\xd7\\x1c\\xf1|:?\\xe0\\xedJv\\xc6<\\x85\\xbf\\x94X\\x93.B\\xf4l\\xbf\\x00J\\xb2\\xa9\\xbf\\x10c?\\xb0NWXy\\x8b\\x8f\\xbf\\x18\\xd7\\xc0.\\xc4!f\\xbf\\x00\\x96\\xb3\\',\\xe9\\r?\\xda\\xb3C\\x87\\xe3\\xd2\\x81?D\\xb8\\x93#\\xde\\xf48\\xbf@-llrn\\x13?\\x84!\\xef$I\\x89m?`\\xe8\\r\\x84yTO?p\\xeb\\x99\\x8a\\x0f4[?\\xa0\\xc94E{\\xecq? \\xab\\xe4t\\xf1gP\\xbf(\\xd1\\xb49\\xee\\x9bx\\xbf \\xcd\\xbb\\xe7P&o?\\xc0#\\x9aJp\\x04\\'\\xbf\\x8fn\\xc2\\xd4\\x94WQ\\xbf\\x80\\xbf\\xa4\\xdd?7P\\xbf\\xc0\\x83\\xec5\\xc8\\x17c?\\x88\\x83\\xe4\\xbfpDp\\xbf\\xe0\\xfb\\xaf\\xe2\\xf7-l?\\xe0\\xbf\\x1d\\xe3\\xc1sS\\xbfP\\x99\\xe85X\\xad\\x88?a\\xfb\\x95\\xaf\\xcb\\x02\\xa1?@\\x86F\\x17\\x03\\x0ej\\xbf\\x14-\\xa5s\\xc1\\x8fk?J\\xcb)1\\x18\"s?t\\xda\\x9bu\\xe8\\x1bb? ,\\x91H\\x08\\xa4j\\xbf(xs\\xceV\\xb1o? \\xa6\\x7f\\x83\\r~]\\xbf\\xb0\\x85\\xf6\\xaf\\xc3k`?\\xe7+\\xf9\\xeeV\\xbe\\x93?0\\x84Y\\xc8\\xb1O(?\\xa0\\xdb\\xd0\\xed\\x1dQC\\xbf\\x9a\\xf1\\xc8\\xca\\x0f\\x19k?@\\x89\\x03t\\xb2\\xb2T\\xbf\\x00wt \\x9b\\xc6o\\xbf\\xc0s\\x80b\\xac\\xbds?\\x80\\x15\\xbb=B2<\\xbf\\xa0\\x8dkg\\xc4:o?\\x8b\\x99\\x10\\xeagJ\\x87?\\x00\\x03]*\\xe4\\x95K\\xbf\\xe0\\xc8\\xbc\\xb7\\xc5=n\\xbf\\x803\\x99}\\x84\\xc6\\x86?\\x80\\xac\"\\xe1\\x9e\\xfft?\\x00\\xec02|xm?\\xfe4e\\x0bYZs?\\x00\\x97\\xe4L\\x82?\\x1a?\\x18nb\\x0f\\xfa `\\xbf\\x9c\\xa8\\x00\\x85\\x07\\x91c?\\x00\\x16\\xfc\\\\\\x13\\x1b\\x00?\\xc0E1\\x19\\xb76E\\xbf\\xc0/\\xe7\\x92\\n\\xea[\\xbf0\\xc7\\x84\\xafy\\xe2@?\\xc0\\'\\xc4t\\x1diY?\\x00\\xf2\\xf4\\xae]\\xc6\\x10\\xbf \\x03\\x84\\x15\\x15\\xa5F?\\x00*\\xf1\\x83\\x18\\xa6\\x1e?\\xd8D\\x99Ea\\x05\\x8e\\xbfB\\x0f\\x92\\x81RjX\\xbf\\xe8O\\x7fW\\xd8{t?\\xe0\\x0b\\xa3\\xcd\\xb5\\xc1`\\xbf\\x00\\xbe\\xe7\\xfc}<\\xf1> \\x81v@{\\x9fM?\\x80\\xc2\\xe8<i\\xb8D?\\x973\\x9e$j\\xa9h?\\x0f\\xb79\\x07\\xdd\\x1cS\\xbf0\\xc6C\\x10+?p\\xbf\\xac\\xf16\\xd7_\\xe6T?\\xf0\\xa1\\x8cJ4CL\\xbfp\\r\\x1f\\xa8l\\x0bx?1S\\xa0\\x08\\xddO}?\\xf8\\x1e\\xb7B\\xed\\x90V?|\\xefR\\x8c\\xe3<i\\xbf\\x18\\x01\\xeaL%\\x1a^?6\\x95+&\\x0e\\x90A\\xbf`\\x90\\xbf\\x10$\\xb2f?\\x08\\x84&}\\xf4Jg?NL\\x93LV\\\\t\\xbf`\\xaa\\xb5\\xee1\\x05\\x85\\xbf\\x00\\xf2\\t\\xae\\x9c\\xd9\"\\xbf\\x00\\x1d\\xc9pu\\x95(? \\xac~s{\\xbc\\x18?\\xfb\\xf9\\xa2Z\\xd6vc?\\xa0\\xd4\\xd9\\x8d[A_?\\x18\\xc3\\x801\\xadUe?\\x00~\\xf1\\xa8\\xab)D\\xbfNp\\xa0\\xfa\\x96l\\x81?\\xc8e\\xdbN\\x82\\x9dW\\xbf \\x88\\x07\\xeb\\x1d\\xe4j?\\xe0\\xec\\xf7\\x81\\xb8\\x18P\\xbf8\\x86F\\x17\\x03\\x0ej\\xbf]\\x1d\\xd4\\x89\\x06 \\xac?G\\x85;\\xa0T\\x86f\\xbf\\xd3\\x8a\\xfam\\x1b\\xadv\\xbfdY\\xf0O\\x8dHP\\xbf0\\xe7v{\\xc2%`?m\\xdee1\\x01\\xc9k?dGH\\xd7\\xb8\\x86e\\xbf@\\xd0\\xb4{\\xa3?b?d=\\x99\\xaaz\\xdfc\\xbf\\xd8I\\xf8\\xbd\\x07\\x8d\\xa7?\\x8c\\xd9\\xb6\\xfa\\xb7\\xd1\\x89\\xbfsL\\xf0.\\x85\\xcbe\\xbf\\x9cv\\x88\\\\ud\\x80?\\xc26Z\\xf2z\\xc3\\x90?\\x983\\xda\\xfbL\\xe9Y?\\x84\\xe9\\x84\\xf2q\\xc2{?P\\xc1\\xe0\\x1f<\\x9dt\\xbf\\x8c\\xcd\\xde|\\xb5\\x93\\x7f\\xbf\\xe4\\xc1\\x96\\xe0W\\xae\\x9a?\\xb8d\\xdf\\xf0\\xa6\\x84\\x8a\\xbf\\x80n\\x1f9\\xe1/\\'?t\\xe4\\xea\\tQ\\x1f\\x96\\xbfv0\\x1d3\\x87\\x95\\x90?e\\xab?\\x13\\xa1x\\x89?\\x06t\\'\\xc8Dsb?P\\x945N\\xbc\\xdeT?\\xe6\\x80c\\xfd\\x94\\x01\\x80\\xbf \\xa8Q\\x1b\\xe1\\x9eP\\xbf\\xe1\\x92\\x1b\\x9c\\xfd\\x88v?\\x02=\\xf2(\\x82M\\x83\\xbf8\\xd2T\\xfe\\xa5\\xeaM\\xbf\\x10\\xa6\\xc6\\x86\\xc5f[\\xbf\\xb2\\x111\\xf2JUq\\xbfT\\x83qr\\xd3:e\\xbf(\\xd6\\xb0s\\xf0\\xd4b?+\\x1b\\xa1]H)\\x89?\\xb0\\x17\\xa0~\\x1f\\'Y?\\xf4:\\xdd\\xdf+\\nW\\xbf|]/\\xc7\\x9d\\x14\\x88?\\xa0\\xfb&;\\xd5\\x935\\xbf\\x00\\xf8\\xa7\\xb8\\x7f\\xb7;?C\\xd5Bj\\xbb\\xbb~\\xbf z\\xc2?&\\xdd\\xf9>\\x81\\xd9k\\xb3\\xe6M3\\xbfX\\x16sD\\x80?o\\xbf\\xde3\\tw\\xda\\xfe\\\\\\xbf\\x08i\\x0e\\xb9\\xfeFE?\\xd0\\\\\\xfa\\xb08\\x00t\\xbf\\xbb)\\x02\\x19\\xa9\\x9cP?\\x00\\x8d\\xdc\\x9d\\xbc3\\'\\xbfp\\x82\\xa7\\t\\xec\\xd3W?Fv5\\xe9gfB\\xbf\\xd0\\x8ct\\xf5\\x00\\xd5b?4\\x02\\xf2\\x12\\x9f\\x81w\\xbf\\xd00y=\\xfe\\x8bF?7FxU\\xd6\\xcd`?\\xc8\\x16*\\xb39\\xa7J\\xbf\\xa0AO\\xb2?\\xda6\\xbf@\\x00\\xd0\\x19\\x7f\\xbd:\\xbf\\xa0s\\xdeQ\\x0b\\x17!?\\\\\\xca\\x88+g\\xcaC\\xbf\\x98\\xf9z\\xc1\\xfe\\x1e\\x0f?x]\\xaf\\xa4\\xead[?\\xe0\\xc4\\xecR>\\xefX?0/\\xfcs\\x06oG\\xbf\\xd8\"\\xc78{\\xa9P?\\x98E\\xdd\\n\\x1c\\xdaM?\\x0c%\\xf1M\\n\\xc2a?\\x14-\\xa5s\\xc1\\x8fk?G\\x85;\\xa0T\\x86f\\xbf(\\xb8.I\\xbb\\xc2\\x81?\\xfc\\xea\\xfc\\xb2\\x1e\\xd2S?\\x9c<L\\x1f\\x1c\\x10n?t8WD\\xf0tn\\xbf\\xda\\x059**\\x1cU\\xbf\\x8a\\x96k\\xce5\\x12i\\xbf\\x80\\xdcA9G\\x90s?\\x00\\x05\\xf3\\xa3\\x0b\\x84|?\\x1f\\xa4~\\xbd;\\xf8q\\xbf\\xc0\\xaa!MV\\xfa\\x14\\xbfL\\xe0P\\x1e\\xf6\\xa0b?XN\\xe8\\x82\\x91^Q?@\\xac9\\xa4\\x88\\xafR\\xbfv\\xff\\x0b\\x9a\\x84\\xd0j?\\xd0*\\x8d\\xd5\\xfa\\xd0K? \\x08\\xc6-P7G?\\x00Y\\xd3b\\x16\\xd2v?8\\xa4\\xef`\\x01vu\\xbf\\xc0\\x7fCx &D?\\xed\\xf4\\x12T\\xe2Ng?\\x88\\x84\\x90<\\xe91\\x81?\\xd0\\xd2i\\xa8:\\xdd]\\xbfSo\\x18\\xf2x\\x9cq?\\x88i\\x053)4>\\xbf\\xe8&\\xcc\\x16\\x95xk\\xbf\\x91-\\xe4/X\\xa2L\\xbf\\x18qA\\xea1\\xd3A?\\xb0X\\xd0\\xadR\\x97V?n\\xd5\\xc9y\\xefN`\\xbf\\x00Y\\x9b7S\\x1a\\xfc>\\x08\\xaa\\xf0\\xea\\xdf\\x1cP\\xbf\\xa8)\\x9b\\xe8\\xb3JB?\\x00\\xaa\\xbb\\x0c\\x85y\"?\\x00\\x8aO\\x9d\\xa7@??zzz\\xb1\\x9c\\xa2n?Z\\xb3\\xe9yuf0?PGH\\xab\\xad*J\\xbf\\xe0\\xe9\\t\\x01\\xff\\xc0J?\\xdf\\x03E\\xf1\\xbdkK?(F\\xc6\\xcc\\x81\\x19<\\xbf\\xe0\\xd7_(I\\xafJ\\xbf\\xcd]\\xbd\\x18\\xa3\\x9eT\\xbf\\xde\\x96%wv8)?P\\x8d\\xe8\\\\\\x03\\xa0Z?\\xaa\\x0f\\xb4\\x86\\xda\\xe6Q?\\xc8\\xe8\\xdb.>&1?@c]\\x11\\x03\\x1b1?\\xea\\xf4\\xc9\\xb2<\\xf3h\\xbf\\xecZ\\x98FVjD\\xbf\\x17\\xbb\\xe1\\xdf\\xf6\\x87j?\\xa4\\xc5\\xc036\\x92S?ljL,F\\xcbH?(\\xc0J\\x03\\x0fvB?n\\x14p%\\xee\\xae\\\\\\xbf\\xb0\\xcb\\xd3^\\x9f\\x0e\\\\?\\xe6\\x1d\\xaf\\x03\\xd4\\'e?t\\xc2\\xb2\\xb8\\xbb\\xc3Z?\\xb4\\xad<y\\xb1\\'X\\xbf\\x8e\\xfeqB\\xf1B[?p\\x1c\\xc5 a\\xee^\\xbfr\\xa5(\\xa1]\\xe7C\\xbf\\xf7\\xd8\\x93\\x88F\\xe6t\\xbfL,w\\xf6\\x9f\\x91a?p\\xb1\\xee\\xb9\\x99\\xd9??\\x15*]a\\xdc}h\\xbf\\xe9\\x1fm\\x94\\xc7\\xd2r\\xbf\\x08\"\\x1d\\xe8\\xa4\\x1cR?H\\xcb)1\\x18\"s?\\xd1\\x8a\\xfam\\x1b\\xadv\\xbf\\xfc\\xea\\xfc\\xb2\\x1e\\xd2S?\\xd0\\xdd\\xc0b\\x9c\\xea\\x88?m.1\\xb3#.\\x8d?\\xf3\\x96+\\xcc\\xd6\\x93\\x8d\\xbf\\xe9\\xdf\\xe7\\xb9\\x13\\t~?\\x11\\x87\\xb1k\\x99f\\x89\\xbf\\xfeu\\xb3]\\xd0\\x14\\x8b?\\xcf\\xcf\\x1cC+\\xb2h?\\xdf\\xcc\\x82\\x84\\xa3!^\\xbf\\x0f\\x10\\xdb-\\xdd\\'P\\xbf\\xc0\\x110\\xac\\xd51\\x8c?\\xd1\\x92\\xf9\\x01f\\x12{?\\x882=\\xcb\\xf1\\x91\\x9c\\xbf,\\xa5\\xbc\\x161\\x87\\x8f?\\x80\\xe6\\xab\\xa4\\xa3H\\x80\\xbf<\\xd4\\xdc\\xb4\\x19z\\x98?\\xc7\\xecfY\\xb0\\xfb\\x95?\\xf7]\\x8b)y\\xd8\\x86\\xbf\\x00c\\xca\\x88\\xc9\\xf31\\xbf\\xa1w#=*\\x04\\x8a?\\xeb\\xacZk`K\\x88?\\xb8\\x89\\xbd^\\xbeQA\\xbfz^\\xdb\\xcf\\x9f.k\\xbf\\x86B\\xc3\\xdeYqa?O&\\xb8Ku\\x94e\\xbfv\\x82O0\\xa3,$?\\x8c\\x8e\\xef\\x85\\xb1g??\\xbeJ\\xbe\\xe3\\xf5\\x81O\\xbf^\\x00Tq\\xdb;l\\xbf\\x1d\\x93\\x89/\\xca\\x7f[\\xbf\\xd7(tQ\\thc\\xbf\\xfe\\xf1\\xae\\xafy\\xebg\\xbf\\xc0g\\x8e\\xd9\\x04\\x9b[?J\\xaf\\xde\\t\\x0eVn?\\xec\\x87\\xcf\\xb9\\x90\\xa1t?\\xbc\\xc8\\x8b\\xa6\\x16Ta\\xbf4\\xed\\xa3\\x8e\\xdc4T\\xbf\\xe4\\x19e\\x80\\xc52\\x86?\\xd2\\x9b{ \\x8d\\x01Q\\xbf\\x001\\xd9\\xd3\\xd0\\x0f\"?\\xa4Y\\xb3\\xb9\\x06{\\x8b\\xbf\\xb5\\xdc\\xcd_\\xfb\\x965?\\x00\\xb2Z\\x9b\\xdd\\x90\\xd3\\xbe0\\x0b\\x17Q\\xf6Jq\\xbf\\xfe\\x1f\\x0b\\x81\\xb2\\x0ct\\xbfP\\xef^k8%8?0~\\xe3\\x0e\\xb2\\x07W\\xbf\\xda\\x98{\\x0e\\xec\\xc5p?\\x1a\\xd5QP_\\x0fS\\xbf\\xa7ey\\xfb\\x02\\xfcm\\xbf\\t\\x1be\\x85X\\xe8\\x7f?\\x00\\xa3,b\\x1aL\\xd4>\\xc4gi\\xebsSp?f\\xd9\\x19\\xd2\\xd8\\xf4c?I\\xb4\\x9c\\x06\\xf9\\xb4a\\xbf\\xb8\\xa4\\xd9{|@M\\xbfPi\\x18\\x91D\\xa3S\\xbfp\\x9f\\xb9\\r\\x11\\xa7B?\\xff9\\xdf35My?2\\x9a\\x8a5^Q2\\xbf]\\xfaQ\\xb4\\xcfM]\\xbf=Q{\\xf1%X\\x85\\xbf\\x14s\\xae\\xe4\\x0cFj\\xbf\\xe8\\x92\\xeeY94~?p\\xb5\\x94ba\\x84\\x82\\xbf\\x0b\\x85\\xedE\\x9c\\xce~\\xbf4\\xf1\\x98\\xfd\\x10\\x9eh\\xbfx\\xda\\x9bu\\xe8\\x1bb?dY\\xf0O\\x8dHP\\xbf\\x9c<L\\x1f\\x1c\\x10n?m.1\\xb3#.\\x8d?\\xda\\x90\\xb8g6\\xb7\\xb0?\\x87l\\x95\\xf4\\xfau\\x91\\xbf\\xf2\\xbc\\xbbl\\xed\\xeb\\x80?\\xec\\x8a\\x93\\xc03\\xd7\\xaa\\xbf\\xad\\xcbr^t\\xdf\\x91?|S=\\xe0d\\xf9Q?\\x7fRX\\x98\\x9f\\xf0}?\\xd4\\x92\\x1f]\\xe8\\xe0x\\xbf\\x96\\xcd\\xb0\\xfa\\xf8\\x80\\x92?\\x12\\xd7\\xa0\\xb8<\\xbb\\xa4?\\x18\\xad\\xec\\xc7\\xfc;\\xa1\\xbf:\\xeem\\xd6\\xd8\\x84\\x95?L\\xe9\\x16\\x04\\x87\\x1d\\x9c\\xbf\\xcbB\\xd16r\\xec\\x99?9\\x9f\\xec\\r/Q\\x94?@%\\x10\\xecyvq\\xbf@j\\xc3\\x15\\xcc\\x9e;\\xbf\\xdf\\xb4\\xc6\\x008!x?\\xd0\\x98\\xf7\"\\xc6wo?\\x08\\xc3\\xef]\\xf6\\xbdg?\\x12\\xb1\\\\\\xb6$:\\x88\\xbf\\xc7|\\x1f#\\t]t?\\xb8`\\x8b\\xb6R:\\x82\\xbf7<`\\x01\\x8f_\\x80\\xbfx?`\\x00\\x82\\'Z\\xbf\\x0c/>\\xbb\\xf9mt?\\xbd=\\'\\xe6\\xeeF~\\xbf\\x10\\xa0\\xb5\\xe8\\x01k[\\xbfVT\\x93\\x9c\\xddCo\\xbf\\xb8\\xaf\\xd4\\xf2j\\xfaW\\xbf\\xd0\\xd6clr3V\\xbf<u\\x12\\xf2\\x08\\xe4q?\\x80\\xd1J\\x1f\\x14\\xc1u\\xbfDch\\x0f\\t\\xdeG?@ga^\\xd4\\xbfb?\\x80\\x95ke\\x03\\x7fu\\xbf`z]\\xbc\\xb3u9\\xbf\\x00\\x18\\x1fz\\xac\\xba4?\\x00@\\xcc8\\xb2\\xa6!?d\\xbc\\xbd\\xbb\\xfc\\xa6A?\\xae\\x7f#L\\xf6wG\\xbf\\x00\\xdc\\x1c\\xdc\\xab\\xb02?\\x00G,\\x90\\x03\\x82c\\xbf\\x80\\xcb\\xca\\xb3\\xe5]?\\xbf\\x00\\xa0e3\\xa4\\xce\\'\\xbf+\\xc6n\\xc4\\x89R|?\\x00\\xd0\\xee\\xcf\\xd1\\xa2\\xda\\xbe\\x1b\\xfc\\xef$\\xea\\xfcp\\xbf.)\\xfb\\xc8\\x0f\\xeci\\xbf\\xe0\\x03\\x17(o?,?\\x008\\x91n\\x88\\xfbT\\xbf\\xd0y\\x1f\\x14\\r\\x0eu?\\xe0\\x15\\x89\\x068xm\\xbf\\x00E\\xe9\\xa8\\xcb\\xfe\\'\\xbf@\\x08)>\\x93So\\xbf\\xf0eZ|\\xba\\x1ew?0h\\xef\\x83\\xe0\\xe28\\xbf\\x88H\\xdd\\xd55\\x9f\\\\?\\xed\\xbf\\xb4*[\\x18\\\\?\\x90\\xd0\\xd9\\x0c4sy?`F\\x94\\xd4&8t\\xbf\\x001_\\xdaF\\xb1]?\\x00\\xf4\\xdc\\x19!\\xe5;\\xbf\\xf0K\\x89\\xb1\\xfblv?\\x00\\x98^\\xac\\xeb\\xde{\\xbf ,\\x91H\\x08\\xa4j\\xbf0\\xe7v{\\xc2%`?l8WD\\xf0tn\\xbf\\xf4\\x96+\\xcc\\xd6\\x93\\x8d\\xbf\\x87l\\x95\\xf4\\xfau\\x91\\xbf\\x82\\xc1\\xeb\\x1ce2\\xa2?\\xd6\\xb2\\x8fi\\xc9\\xf0\\x86\\xbf\\xa2#\\xb8\\x8e\\x1e\\x98\\x88?\\xe0{[\\xa6N\\\\\\xa0\\xbf\\xb4\\x0e\\x88&Hl\\x88\\xbf\\xb8\\xc1\\xe6\"[PC\\xbf\\x92\\xfe\\xf1;d\\xd9t?0\\xca\\xc5\\x8d\\x08f\\x96\\xbf\\xb0\\xd6\\x1f\\xf4B\\xc5|\\xbf\\xe0\\xc7\\xe3\\x16b\\xc1\\xa5?(Fb!\\x85\\x14\\x96\\xbf@\\t\\xc2\\xb2\\xdd\\xd0|?\\xf8T\\x0c\\xbb\\x14\\xa5\\xa0\\xbf\\x9aQ\\xe7\\xf3\\x19\\x16\\x9b\\xbf\\xc0\\xce\\xf4\\xb0w\\xf2}?\\xc0\\x11X?%KQ\\xbf<t?\\x1et\\xfa\\x82\\xbf@\\xb0 \\xd7[\\xfbt\\xbf\\xc0\\x86\\xc0\\xd3\\xfaOQ?\\x8a\\x82\\xbc\\xb4\\xce\\xcce\\xbf|n9x\\x9bbr\\xbf\\xd0\\xf58e\\xe0Vr?\\xea\\x9ev\\xb5\\x90/d\\xbf\\x00\\xb0c\\x8f\\x12\\xa2!\\xbf\\x80\\xa3Z\\x1d\\x028]? \\x0f#\\xaf\\xea@\\x7f?\\x88\\xb5\\xd8\\xa8l\\xf3o?\\xf0~\\xafa\\x7f\\xd4z?\\xd0\\xb00s\\x0fks?P\\x85\\xa9\\xf8|\\xe9i\\xbf8\\x16\\x00R\\x91\\x05\\x80\\xbf\\x08\\xfb\\xfe\\xe0\\x14\\xedo\\xbf\\xc0\\n\\xc7\\x81\\xb8\\xfdQ\\xbfx\\x92G\\x00\\xdf\\xa8R?8\\x04\\x95\\xfdH\\x8fg\\xbf\\xf04h\\x95\\xb7=+\\xbf\\x88?\\x88\\x8f\\xde\\xa0S\\xbf(\\x89\\xa9\\xd3\\x9c\\xcdf?\\xba\\xa1\\xf2\\x95F\\x915?I\\xea1+U@2?`\\xe3I\\x1ek\\xe9Y?\\x18\\xef\\x1e\\x07\\xfd\\x05N?@ \\xcc\\xa5\\xf8\\xc40\\xbf\\xd0y\\x02Fq\\x0ca?@\\xc5\\xf0\\xf4\\xda\\xb0h\\xbf\\xe0a\\xd0\\x93$g\\'?\\xa4\\xf7\\x8d1C\\xe2a?\\xd1\\xc0x\\xd3t\\xe3a?h\\xc8}.\\xcfO>\\xbf\\x9dP\\x11wL\\xcdd?\\x18\\xbf$J\\x99)W\\xbf\\xc0\\xff\\xd7\\n\\xbc\\xb0G?\\x00\\x871v\\x8cz+?\\xec\\xc7\\x1b\\xe7\\x1fGa?\\xe4\\xe7a\\xacXvc\\xbfB\\xe2K]\\xd9\\rN?\\xa0\\xda\\xbeH\\xbe\\x15\\x07\\xbfX\\xfb\\x154\\xa7&\\x14\\xbf E\\xc1^Dnm\\xbf0O\\x19\\xd2?\\x88T?\\x00\\x1e\\x1c\\x06{\\xaeJ?\\xec\\xe9\\xed\\x83D ^\\xbf\\xbe\\xe4\\x97\\x82\\xf8Xr\\xbf\\xd8?\\xed\\xf4\\xb5\\xd3f?(xs\\xceV\\xb1o?m\\xdee1\\x01\\xc9k?\\xda\\x059**\\x1cU\\xbf\\xe9\\xdf\\xe7\\xb9\\x13\\t~?\\xf1\\xbc\\xbbl\\xed\\xeb\\x80?\\xd6\\xb2\\x8fi\\xc9\\xf0\\x86\\xbf\\x1e\\xa9^i/\\xc7\\x83?\\x0b|\\x8a\\x90\\x8e\\x00z\\xbf^\\x1e\\xf6\\xab\\x91\\x12\\x86?`\\x0fJ\\x1b-\\xca>?\\x90tw\\xbd\\x0e\\x18v?\\x16.#9\\x90\\x14R\\xbft\\x9b\\x87\\xcd\\x80+\\x85?\\\\`\\x85\\x96^\\xbbp?-=zd\\xc7\\x8a\\x93\\xbf\\xc1\\xc1\\xea\\x9bhP\\x87?:\\xdb\\xc0\\x9e\\xcb(x\\xbf\\x7f\\xd4\\x00\\x18-\\x82\\x92?\\xd36Cl\\x7f\\x96\\x8d?\\xd0\\x10\\xb8\\xee\\xfd\\xbci\\xbfpWfK\\xf4d_\\xbf[\\x93\\xa2\\xe4\\xfc\\x93\\x86?P\\xa5\\x03\\x17\\x1d\\x05m\\xbf\\xf0\\x04\\xa5\\x92]Ow?\\x08R\\x9e\\xdb\\xcd\\x91Q\\xbf\\xc4\\xca\\x07\\x01STc?\\xf0\\xab\\xc6\\xc4L\\xa5F\\xbf\\xc1\\x82\\xebS:iG?\\xe8g\\xe0\\xd31@J\\xbf\\xb0\\xfc\\x93\\xdd\\\\\\xbbA?\\x12\\xb2\\xa7Kc1f\\xbf\\xfa0\\xab\\xba\\x05\\x97U\\xbf\\xc0z\\xbd\\xd8\\x8d\\x0cT\\xbf\\xb0_f\\xbd|>j\\xbf\\x18\\xf0\\xcf\\xc0\\xd5\\xe8M?`\\xceI\\xf7Q\\x1db?|\\xca\\xb9\\xf4it\\x89\\xbf\\x8cR\\xa6\\xb9\\x8d1\\\\\\xbf\\x00\\x1b\\x07\\xc5hm9\\xbf\\x18>\\'rz\\x1f|\\xbf\\xa4\\xc8c\\xfc\\x05\\xdeQ\\xbf\\x00q\\x1d\\xb4i\\xcd?\\xbfZ92?1D\\x90?\\x7f\\x9c\\x935T\\x03n?\\\\\\xa9\\xcb\\xf7\\x83NY?\\xa8u\\x1fj\\x8bEz?\\xf2UHK/te?\\xa0\\x9f2\\x1fDjJ\\xbf\\xc00Bl\\x9c#b?\\xce\\x0fm\\xc0\\xeeJu\\xbf`y\\xab\\xef\\xb5bP?E\\x98\\x80\\x9e\\xf2\\x07p?}%FMe#a\\xbfk\\n\\'^\\xc7\\x05d\\xbf\\x98\\xc2)1-|B\\xbf\\xd0\\x81\\xd8\\n\\xe2\\xf4j\\xbf\\x80\\xb3\\xb7\\x11\\x8e`;?\\xb0q\\x14\\xc8\\x95\\xdeJ\\xbf\\xc0\\rH\\xa1:\\xd09?\\xdc^|Fg\\xa2p\\xbf\\xc6\\x01Zp\\xb3\\x18w\\xbf\\x1ch(a\\x1c\\xd3s?\\xbf\\xceD\\x18\\x9d\\x82Q?\\xf9~\\xebA\\x90\\xed\\x81?\\xd8fg\\x06\\xa0\\xa8o?\\x804\\xf8Z)\\x9co\\xbf\\xf6%q\\x95\\xca6\\x80?\\xec\\xad\\xba\\x8e\\x88\\x9es?\\xdcL\\xfc\\xa6E\\xb4y?\\x10\\xa6\\x7f\\x83\\r~]\\xbf`GH\\xd7\\xb8\\x86e\\xbf\\x8b\\x96k\\xce5\\x12i\\xbf\\x12\\x87\\xb1k\\x99f\\x89\\xbf\\xec\\x8a\\x93\\xc03\\xd7\\xaa\\xbf\\xa0#\\xb8\\x8e\\x1e\\x98\\x88?\\x0b|\\x8a\\x90\\x8e\\x00z\\xbf\\'\\x11\\x8d\\r>\\x0e\\xad?\\xe8\\x14\\x9fh\\xb9\\xcd\\x8e\\xbf\\xf0\\xc4\\xb3\\x8c\\xb1\\x07M\\xbf\\xdc4\\xdc\\xa3\\x93}\\x84\\xbf\\x94\\x7f\\xb0\\xa4\\xed\\xcap?!%\\nW\\x07\\x86\\x84\\xbf\\xe3\\xbea\\xe0q\\x91\\x9b\\xbfd\\xf5\\xff$\\xce(\\x99?N\\xe09\\xa2\\xe6\\xf6\\x97\\xbf\\xac\\xeb\\xd5\\x95m&\\xa2?\\xb8\\xe7\\x99?G\\xe1\\x99\\xbfm)&\\xe4\\x8e\\x1a\\x91\\xbf\\xf8\\xd5y\\xba\\xb5\\'\\x83?\\xa0r~;\\xeepY\\xbf&S\\xda\\x85\\x04\\x96{\\xbf0\\xf1\\xf3\\xda\\n\\xef\\x88\\xbf\\xb0\\x1a\\xf9b\\xbb\\xa4o?~\\xc8\\xd4\\xde\\xf9\\x1c\\x83?<\\x82-8\\xa6df\\xbf\\xc1\\xbb\\x92\\x95!\\xd1\\x83?\\x8cZ3n\\x8e>\\x85?\\x80\\x9agk\\xe8\\x960?\\xff\\xa9\\x14\\x850\\x94\\x83\\xbf\\x1c\\xdf\\xe1\\x96\\xecSl?\\x00n\\xf5\\x1c\\xc1G\\\\?h\\x8f\\xc5\\xb6\\x02\\x92n?\\xc0E\\xdc\\xfd\\xd2\\x84?\\xbf\\xf0\\xc1\\xc4\\xc9&\\x7fC?\\xb8i\\x82\"\\xcc\\xafq\\xbf0\\xba\\x8c\\xb2\\x01\\xd9\\x80?D/\\x804\\xea\\x96D\\xbf\\x00\\x99\\x987\\xd6\\ng\\xbf\\x80\\x12T\\x0b\\xce\\x9a\\x81?\\xc0\\xb9!\\xda&\\x82G?\\x00\\xe6\\xc5\\x81\\xbc\\xb8M? T\\xbaV\\x96%j\\xbf\\x90Xz_J\\x83)\\xbf\\x18L\\x86v\\x83\\xe5I\\xbf\\x00h\\xe2:\\xa9\\xb7D\\xbf PW\\x95F?X?\\x80v>\\xf22\\xd73?\\x00\\x80sP\\xf4\\xf4\\xdf\\xbeyp\\xc9\\xcf\\xae\\xd5v\\xbf\\xc0t\\xaf\\xbd\\x8eJ3?r_Q\\xe7\\x12@i?\\x0eZ\\xc5\\xca\\xaa\\xd5^?\\xac\\xf4\\x87}n\\x1ci?\\x00\\xbd\\x93\\x17\\xc9%E?XD\\x15\\x8c\\xfc6o\\xbf\\x00L\\x0b\\xf0z\\xf7l?\\xe0\\x02@\\x97\\xf3\\xbeT?\\x98Y\\xcd\\n;\\xffp?\\xf0CS\\x16\\x97\\x9dq\\xbf\\xe0m\\xf4\\xffP\\xf19?X\\xd5\\x0e\\xb2\\x81\\xcca\\xbf\\x0e\\xf2\\xb7\\xa5\\xef\\xefJ\\xbfP\\xbf\\xdc=\\xe8\\xdbq\\xbf\\xa0\\x15(z\\x04)h?\\xa0\\xb5\\xc8We^b\\xbf\\x00\\xd8\\xd1\\xac\\xd8\\x86\\x17?p\\xa7\\xdf\\x84\\xcaAi\\xbf\\x80\\xfdqR\\xaf\\xb4z?\\xb0\\x85\\xf6\\xaf\\xc3k`?@\\xd0\\xb4{\\xa3?b?\\x80\\xdcA9G\\x90s?\\xfeu\\xb3]\\xd0\\x14\\x8b?\\xae\\xcbr^t\\xdf\\x91?\\xe0{[\\xa6N\\\\\\xa0\\xbf]\\x1e\\xf6\\xab\\x91\\x12\\x86?\\xea\\x14\\x9fh\\xb9\\xcd\\x8e\\xbf\\x84\\xda\\x80\\xc3\\xd6\\xe0\\xa3?4\\xcb\\xd3\\x04d:\\x8e?\\xdc\\x8a\\xb2\\xa6{\\xb5[\\xbf\\x98m\\x1b\\xa1\\x90Vw\\xbf\\xdbV\\x126I\\xe4\\x92?\\x00\\xa1\\xc4\\xc7\\xdc\\x8ex?0bDO\\xa3\\xb5\\xa1\\xbf\\x82\\x01\\xec\\xc6\\xec\\x87\\x9a?\\xe0\\xb1\\xe1\\x88W\\xbd\\x82\\xbf\\xccW\\x03X#\\xb7\\xa2?\\x1fB#\\xd0\\xdaz\\x97?\\x00\\xce\\x19\\xd3\\x1e\\x0ch\\xbf\\x80y\\xc6zUYG\\xbf\\x90\\xca\\xe7.6R\\x84?\\x00\\x93,\\x16B\\xbde\\xbf\\x80\\xc1\\x84\\xc5\\x9a9a?[\\xfc\\x964\\x8b8{?\\x9c\\x1c\\xb7\\xc5\\xb1<u?\\xf8Q\\xber6\\'q\\xbfA\\x92,a\\x9c2A\\xbf X\\x12\\x80<\\xd6R\\xbf\\xa0~n\\xea8\\xd9P?0\\xa2\\x18\\xe0P5\\x7f\\xbf\\x14\\x03\\x81M\\'!q\\xbf\\xe0\\x15\\xcc\\x8c\\x8c\\xf9}\\xbf(6\\x02\\'\\xd80r\\xbf\\xd0\\xa5A\\xf8\\xe9\\x17j? \\xa1s}\\xb3^\\x81?\\xd22)!\\xc3h\\x99?\\xc3\\xf3\\x07F\\xda\\xfeY?\\xd4\\x04\\'I\\x9cnv\\xbf\\xc6{TU\\x1fw\\x97?h\\xff&\\xaa\\xe6\\tg\\xbf\\xa0\\x1e8\\xa0\">@?\\xf8\\x87v\\x0elC\\x83\\xbf\\xe0\\x86<\\xba\\x83\\x89\\x1f?\\xe45@\\xf4\\xd7\\xda!?\\xb8ziX\\x06\\xca\\x87\\xbf\\x98Q\\x99\\x8f\\x96nS\\xbf I\\xb4\\xed\\xdd\\x98_?\\xb8\\xdd\\xc5^\\xf9\\xde\\x8a\\xbf\\xd0\\xc8\\xfa\\xd9\\x9c3p\\xbf !\\'+\\xb256?8\\xbf\\xeb\\x03\\xe9\\x1fu?\\x94\\xd2\\xa6w\\xf8n5\\xbf0IA\\xebB\\x8bT?f\\xe8n\\xe24\\x96i?`\\xd3\\x0eQZ\\xa6<\\xbf0\\x1a\\xbb\\x99\\x82\\xc7F?\\xec\\x01S\\x9a\\xe3/t?L^\\xfa\\x1f\\xfb\\xa6r\\xbf\\x00H,iX\\x1dM\\xbf\\xff\\xb2%\\x18\\x7fGd?\\x18\\xcc\\x89\\xf1\\xc1\\xc2O\\xbf\\x98\\x8d\\x02\\xfa.Hb\\xbfp\\xabK;\\xc1+b\\xbf\\xa0\\xfa-\\x9a\\xe9\\xa5_?8`\\xfb)\\xc5\\xe6b\\xbf\\x90\\xdb(\\x92\\xd5\\x93s?\\xe2\\xb3,\\x94\\xfc\\x9a\\x81?\\xc0\\xc3\\xc7\\xab\\xcf\\xf3b?\\xe6+\\xf9\\xeeV\\xbe\\x93?d=\\x99\\xaaz\\xdfc\\xbf\\x00\\x05\\xf3\\xa3\\x0b\\x84|?\\xce\\xcf\\x1cC+\\xb2h?xS=\\xe0d\\xf9Q?\\xb4\\x0e\\x88&Hl\\x88\\xbf@\\x0fJ\\x1b-\\xca>?\\xe0\\xc4\\xb3\\x8c\\xb1\\x07M\\xbf8\\xcb\\xd3\\x04d:\\x8e?@\\xbe\\xbe(\\xcb\\xa4\\xa2?\\xdb\\xd2\\xc3\\xd8\\xa8\\xfav\\xbf\\xb2 Z;\\xd5\\x01s\\xbfR\\xd1\\xee\\t\\x16.s?x|\\x07\\xfe\\x83y{\\xbf@z\\xd2\\xa3\\xe1Si\\xbf\\xa66q|\\x01\\xc4{?\\xc0\\xae\\xfcF2\\x06_?\\x80=\\x07(\\xd2\\x01E\\xbf\\xff\\xb1=\\xa0a:\\x80?\\x90UK\\xb4\\x84\\xee\\x80\\xbf\\xe0\\x97-G\\xf4\\xbcd\\xbf\\x80\\xe0\\xcd\\x81>z=\\xbf`G\\xb3i\\x0e&s?\\xa0\\xfd\\x03\\xa3b(_?5\\xb6^P\\xfd\\xf0z?P\\x89\\xe7W\\x12\\xd2e\\xbf\\x94Hw\\xa4\\x86\\x19s\\xbf\\x1a\\xd5AT\\xcf\\xc4h?\\x1c\\n9\\x91\\xc8A`?\\xe8l27\\x12\\x8c\\\\?\\xc0_\\xfc\\xb7e\\xcaK\\xbf0\\xc8\\xaa\\xf1\\xa8\\x90F\\xbf\\xd0\\xda\\xd5\\xfdn\\x0cb\\xbfpB\\x9b\\x9d\\xd2\\x9bX?\\xe0a\\xf8\\x0e\\xd7->? \\xed\\xe8h\\x03\\xfcY?=\\xb5\\x9ed\\xc2\\xe0~\\xbf\\xcc\\xa1\\xaeQ\\x82W3\\xbf>,\\xaaHg7e?\\xa8&\\xa9\\x8d\\x10\\x1e\\\\\\xbfu\\xbe0\\xc6AtU\\xbf0g\\xa3\\xd3<\\x19%?L\\xfb\\x8brbWS\\xbf\\xfe\\xab.\\xbb3fQ?\\xe2\\xaa\\xe1\\x8f\\xfe\\x1aT?\\x18f\\xa8\\xe2\\xf1M`\\xbf\\x8c\\xb5\\x1c\\xf8\\xc4\\xf2V?\\x02[\\x81\\x04*\\xbdA\\xbf\\x14\\x97\\xae\\xc2\\x80]i?-\\xa4\\xa9\\x03*\\rr?\\x0c\\xfb\\x02\\\\n\\xb4A?\\xfd\\x84M\\xb3\\xf9]d\\xbf\\xeb\\xa6\\x00L\\x99Hj?\\xe8\\xf4\\x1eL\\xde.e\\xbf\\x1fy\\x7f^>\\x98t?\\x85\\x10\\xee\\x96P\\x8ae?4\\xa0\\x01Ty\\x89h\\xbf\\x87\\xb5\\x88\\xf2\\x15;p\\xbf\\xb0\\x88\\xe4\\xea8\\xbfb\\xbfl$_\\xe4/\\xcdD?\\xb0\\x83\\xd8VZ\\x81W?\\x86WT\\xfe#\\x8bX?r\\x87\\x99\\xb9I\\xc5V?l\\xa8\\xea/\\xa8R^\\xbf\\x98s[\\xe8!\\xc1;\\xbfI\\x15\\xaa\\\\\\x05iu?\\xcc-t\\x13\\xe04p\\xbf\\x84\\x08\\xdfq\\xcc\\xfcY?P\\xa2\\\\\\x130\\xd8d\\xbf\\x10\\x84Y\\xc8\\xb1O(?\\xd8I\\xf8\\xbd\\x07\\x8d\\xa7?\\x1f\\xa4~\\xbd;\\xf8q\\xbf\\xe0\\xcc\\x82\\x84\\xa3!^\\xbf}RX\\x98\\x9f\\xf0}?\\xb8\\xc1\\xe6\"[PC\\xbf\\x90tw\\xbd\\x0e\\x18v?\\xde4\\xdc\\xa3\\x93}\\x84\\xbf\\xec\\x8a\\xb2\\xa6{\\xb5[\\xbf\\xdd\\xd2\\xc3\\xd8\\xa8\\xfav\\xbf4\\xddS\\xa1.\\xb8\\xaa?m\\x15\\x1cz;\\xf1\\x86\\xbf\\xdd\\xf5\\x9b\\xf7\\x8c\\xae\\x19?\\x93t4\\x16\\xa7,\\x87?\\xe0t\\xa4\\x87\\xd6`r?#\\x17*\\xd1\\xa9\\xccb?\\x00\\x1e\\xc0~\\xcdaK\\xbf\\xacs\\xa4\\xdb\\x07Cp\\xbf|\\xa0\\xcf\\xa3\\xa0>f\\xbfc\\xc3\\x0b\\xa6tu\\x93?H\\x11K8b\\xc3\\x85\\xbfD\\xe2/U<\\x90A?dM\\x0cw\\x8by\\x92\\xbf\\x1dG\\xd9\\xe44\\x04\\x8f?\\xe7\\x04(\\x9b\\x90\\xf1h?\\xc4l\\x90|\\x9b\\x16Z?\\xd0h\\xfc\\xd2\\xae\\xe70?\\xf5\\x03\\x9d_\\xa5\\x80s\\xbf:\\xa3\\x0ec\\xb2V@\\xbf\\x10\\x869\\x8a\\x06\\x86t?\\xd8\\x15X\\x0b\\xe1 z\\xbf\\x87Z\\xb5\\xf3\\xb2\\xbfS\\xbf\\x90\\xb4GB\\xed\\xf0@\\xbf7\\xb1\\xcd\\xcb8\\xf0f\\xbfyzU\\xd4\\xb8>e\\xbf\\x8a\\xd8$\\\\\\x97vQ? \\xc8d\\xee\\xf0cl\\xbfXI\\x0f\\x8e#\\xb7\\x1f\\xbf@\\xdd\\xa7\\x7f\\xf6\\x07F?\\xb9- \\xd6inx\\xbf\\x80\\xd0\\x15\\xf0\\x0c\\x90.?\\x00N\\'\\x00\\xf1\\x88B?\\xb5\\x02\\xde\\x17\\xcc\\xbcr?\\xba\\xe9\\x13\\x9f\\x83\\xdb<\\xbf\\xb0\\xa6[O\\xdft<\\xbf\\xd4\\xe1\\x99\\xbd*\\x81b?\\x00\\xde\\xf6T\\xc6!(?\\x00\\xc8\\\\\\xb6\\xb4\\xa8\\xb1\\xbe\\xe8\\xebd\\xdeS_b\\xbfK\\xbe&7\\xce\\xe3^\\xbf\\xe0\\x11Zf\\xa2t\\x15?\\xfa3!\\x13\\x06jI\\xbf\\xf6\\xedD\\xbeD)\\\\\\xbf\\r\\xdfK]\\x92]1?\\xe4\\xf9\\xfa<\\xa6v<?`\\x7f\\xe9H\\x1a\\x06&?\\x00%N\\xe1\\x88\\xa7+?\\x1adQ\\xe5\\x8a\\xd1p?\\xf8/\\xe4\\xdf\\xac\\x95K?\\xe4\\x85C\\xc8o\\xdcT?\\xb8n\\x96A\\xe7\\x8c9\\xbf\\xb6_\\xe7\\xcf\\x93\\xcc6\\xbf\\xb4\\x81\\xf6\\x1c\\xc5kE?,\\xfc:DC^X?XW\\xa6\\xb6\\xb0Ba\\xbf\\xf4\\xc9\\xbd\\x8fk\\x8a`\\xbf,\\xa1\\x08~d\\x1cK?\\xf8w\\x8e\\xd3\\x11\\x89S\\xbf\\x90<\\xc3\\xbbqXP\\xbf\\xa0\\xdb\\xd0\\xed\\x1dQC\\xbf\\x8c\\xd9\\xb6\\xfa\\xb7\\xd1\\x89\\xbf\\xc0\\xaa!MV\\xfa\\x14\\xbf\\x0f\\x10\\xdb-\\xdd\\'P\\xbf\\xd4\\x92\\x1f]\\xe8\\xe0x\\xbf\\x92\\xfe\\xf1;d\\xd9t?\\x16.#9\\x90\\x14R\\xbf\\x94\\x7f\\xb0\\xa4\\xed\\xcap?\\x9cm\\x1b\\xa1\\x90Vw\\xbf\\xb2 Z;\\xd5\\x01s\\xbfk\\x15\\x1cz;\\xf1\\x86\\xbf \\xf2\\xb4P\\xe2\\xbd\\x82?\\x16\\xbcB\\xa9\\x0eFm\\xbf\\xb4\\x80E\\xc3\\x1a\\xd5p\\xbf\\x88p\\xcd\\xd5R\\x82g?\\xf1\\xc8\\xa2\\xfa7\\xe1k\\xbf>\\xeb#L/\\x05h\\xbf\\xe0\\x8d\\xb1\\t\\x83\\xe6P\\xbf\\xc6\\xb1\\xc3\\x04\\xdc[y\\xbf\\x00\\xc2\\x98+]\\xc9j?\\x80l\\x14m\\xa1\\x84:?\\x00\\x8c\\x88\\x8c\\x81&\\x15\\xbf\\xf4\\x81\\xe9\\xed\\\\\\x05p\\xbf\\x98\\xd77\\x16\\xd5\\xeeT\\xbf\\x96\\x8a\\xb75\\xce\\x98i\\xbfl\\xee\\x87\\x03c\\xa7D\\xbf\\xc0\\xe0|\\xb8\\xe4vd?\\xf5>\\xf3+\\x06\\x8f\\\\?\\xb0\\xfe\\xe5\\xefd\\xb86\\xbf,\\xf3\\xb3\\xc7\\x1e\\xa7C\\xbf\\xeae\\xcd\\xa9\\xd5Lk?\\x18\\xe5,g\\x96J4?\\\\\\x8cdq\\xe6|X?f\\x8b\\xd2|\\x063U?\\xa0\\xd8\\xc6&\\xdf\\xdeC?,{\\xd4\\xb5\\x94\\xf3a\\xbf\\xdcd\\x9c\\x15K\\xf9|?-o\\xadp\\x1a\\xa2e\\xbf\\xdd\\xd5\\x07\\xb9\\xc7Vv\\xbf\\xb4|\\x06\\x9e\\x8a\\x9c\\x89?\\x90\\x8b\\xa5W\\xfd\\x12@?>\\xa2_\\xe8e|j?9\\x10\\xb5\\xe6\\xe6\\x8a|\\xbf \\x11\\xef\\xb3*\\xf0P?z\\x88\\xbb?S\\x7fM?\\xe8~\\xcb\\xfd\\xaf>\\x80\\xbf\\x08\\xc8\\xde\\xa8\\\\#d?A\\xd2\\xb3\\xc6\\xa0j[?\\x8a\\x86\\x06\\x05\\xea/\\x83\\xbfs\\xe7\\x13H\\xf6*l\\xbf\\xbb\\x14\\x80\\xff\\xb8>W\\xbf\\x92\\x1f\\x7f\\xdf\\xd23w?\\x8cM\\xc5\\xd2~&i?\\xb0H\\x10\\xf3*U\\x10?\\xb9@\\x91\\xa8\\x81\\x1ds?\\x03\\xa8j\\x99\\xf9 `\\xbf\\xe8\\xd0\\xda\\xc9H\\x0e4\\xbf\\xc1/\\r\\xdd\\x16\\x15)?\\x10\\xbfF\\x94C\\x98q?\\xdf\\x7f^D0\\xecj\\xbf\\xd0\\xa4I\\'YP_?T\\xdc%\\x86\\x93X-?T\\x8aA\\xb1`\\xeaN\\xbf\\xbb\\xb6\\xbc\\xb0\\xed3y\\xbfz\\x93\\x87\\x08\\xd8B8?\\x8f\\xe2r=;\\\\q?BV\\xfd\\x0c]\\x94E\\xbf\\x0cE\\x12\\xc0h\\xc1x\\xbf}\\x83cR\\xa0\\xfef?\\x99\\xf1\\xc8\\xca\\x0f\\x19k?uL\\xf0.\\x85\\xcbe\\xbfN\\xe0P\\x1e\\xf6\\xa0b?\\xc0\\x110\\xac\\xd51\\x8c?\\x97\\xcd\\xb0\\xfa\\xf8\\x80\\x92?0\\xca\\xc5\\x8d\\x08f\\x96\\xbft\\x9b\\x87\\xcd\\x80+\\x85? %\\nW\\x07\\x86\\x84\\xbf\\xdbV\\x126I\\xe4\\x92?R\\xd1\\xee\\t\\x16.s?\\xba\\xf5\\x9b\\xf7\\x8c\\xae\\x19?\\x16\\xbcB\\xa9\\x0eFm\\xbf\\x19\\xbf\\xa0\\x1ez\\xa4\\xa1?\\x96I\\x00\\xd4\\x0b5\\x84?H\\x04\\x88}Nv\\xa6\\xbf\\xaf@\\x84\\xd1\\xbd\\xc7\\x98?Ncc\\xedA\\xf0`\\xbf-/2q\\x12_\\x9e?\\x86\\x18\\xd8\\xa0hQ\\xa7?1\\xd1\\xa9\\xdf\\x11\\xc0\\x9a\\xbf\\x08\\xd0 \\xa8\\xb4\\xf8\\x7f\\xbf\\x9cqh\\x0f\\xa5\\x82\\x9c?\\xdfC\\xb8\\xac\\xfct\\x92?cI\\xa4B\\x03@\\x83?_C1\\x83pvq\\xbf\\xddoh;\\x86\\xf8P\\xbf\\x88\\x8bwJ\\x99\\x93p\\xbf\\xdc!\\xa4\\x9b\\x06:U?\\xb6 \\xd3\\xc8\\x9b\\xe1e?\\\\r&uf#7\\xbf,\\xd0\\x9b\\xfc@\\xb5}\\xbf(\\xd5\\xe7M\\x85T\\\\\\xbf\\x1c\\xdb_3\\xc98r\\xbf\\xa0S\\x89[\\'\\xc9w\\xbf\\xb9\\xeb\\xc5\\xebc\\xa3Y?\"\\x1e\\xd0H\\x1d\\x86q? P\\x1d\\xb5\\x94\\xf9z\\xbf\\x98D\\xd7Oq\\xe4Q?`\\xa1\\xb8\\xdds\\x03f\\xbf\\x10\\x08\\xd1\\xee5\\xc9\\x82?v\\xfdN\\xe0\\x7f\\xa3q\\xbf\\xd8\\xcb\\x06J\\xfd\\xecu?\\x00\\x1bb\\xcaR\\xd8U\\xbf\\xe4\\xfa1\\xa4\\xce\\xd7o?>`g\\xd7\\xcf\\x92H?@ \\xa1\\xd9\\xb9Ke\\xbf\\xa0a*\\xacC2@\\xbf\\x98%CJ\\xe3\\xbad\\xbf@YI\\xb3\\xee6d\\xbfz_Oa\\x9a\\xc9i?\\xa8\\x99\\xc6{\\xbe|f?d\\xd6[k\\xfeOw\\xbf\\xff:g\\x92\\x04!v?\\x8c\\x90I\\x87\\xa5qM\\xbf\\xa8{\\xf2\\x1e\\xdf\\xc8m?Z\\xc2\\x95Q\\x08\\xf7\\x83?\\x88\\xda\\xbe\\x8f\\xab\\xbbw\\xbft\\xbf\\x0fcS,s\\xbf\\xdcRF$\\x85\\xbd\\x82\\xbf\\x00T#\\xcb\\xaa\\xd8\\x0c?$\\xc0\\xe4\\xa1Z\\xf4o?\\xb2\\xe5d\\x99t\\xb2l?\\xf0\\x86\\xc9&7\\xfb1\\xbf\\x10\\xb5i\\xbeSRd?\\xc8\\xd7\\x9a\\x01\\xb3\\xe2\\x88\\xbf\\xd47\\xea\\x97Zy\\x81?P\\x17S\\x96\\xb6\\xa5[\\xbf\\x80\\x7fq\\xd3E;a?pF\\xc4\\x8b\\xee}s\\xbf@\\x89\\x03t\\xb2\\xb2T\\xbf\\x9cv\\x88\\\\ud\\x80?XN\\xe8\\x82\\x91^Q?\\xd1\\x92\\xf9\\x01f\\x12{?\\x12\\xd7\\xa0\\xb8<\\xbb\\xa4?\\xb0\\xd6\\x1f\\xf4B\\xc5|\\xbf\\\\`\\x85\\x96^\\xbbp?\\xe5\\xbea\\xe0q\\x91\\x9b\\xbf\\x00\\xa1\\xc4\\xc7\\xdc\\x8ex?x|\\x07\\xfe\\x83y{\\xbf\\x95t4\\x16\\xa7,\\x87?\\xb4\\x80E\\xc3\\x1a\\xd5p\\xbf\\x96I\\x00\\xd4\\x0b5\\x84?\\x0cN\\xb3D\\x887\\xae? \\xf6B)\\xc7\\x99\\x83?\\x80\\xd8\\xbeD<\"A?\\x94\\xf6\\xe6\\xac\\xe26\\x96\\xbf\\xa0\\xbc\\xb9\\xc6\\xf0\\xae\\x8f\\xbf$\\x11X\\xfa\\xc4\\xc4o?H\\x06\\xfb\\x1d!\\x8a\\xb0?\\xa6\\xcf\\'\\xaa\\xb2=\\xa1\\xbf\\x00\\x9d<`\\x81KK?`PT\\x02\\x1f\\xad\\xa5\\xbf\\xd8\\x1f5\\x8f\\xd2\\x1a\\x9e?aBd\\xe8\\x89i\\x96?8\\xfe\\x1b\\xb3\\xb0\\x1cn?\\x10\\xae>)\\x192\\x81\\xbfQ\\xc9C\\x83IFs?0\\x92\\x0f\\xa9{\\x87Q\\xbf\\xfc\\xe4\\x8b\\xc1\\x0f\\xebs?\\xdc\\xb4pOak\\x99\\xbf\\x08Y\\xb1sR\\xabV\\xbf\\xe8\\xe5\\x92\\xcc\\xd6Bs\\xbf\\x04P?\\x14\\xf7\\xd5s\\xbf\\x80{Sr\\xb7\\xcdh\\xbf\\xc0z\\x08\\xfd\\x86-d?\\xc03.\\x956\\x1ed?F\\xe6\\x96\\xae?\\xc7\\x7f?@g\\xe81c\\x04w?@*t\\x8a\\x1a\\ny?,\\xd2\\xf9\\x8a\\x9c\\xad{\\xbf\\x00\\x9b|\\x90\\x03\\'6\\xbf\\x00.S\\xb5\\xda4]\\xbf\\xdc\\xf4\\x0bP\\x10[b?\\x0c\\xecj\\xd5(\\x17\\\\\\xbf\\x00Q\\xa7\\xc0W(\\x85\\xbf\\xd8\\x9b\\x1bT<Cv\\xbf\\xe0\\xfeTP\\xf7\\x10g\\xbf@\\x9eV\\xc7Y\\x93\\x7f\\xbf\\xa2\\xae\\xfe\\xd2X[\\x86?\\x08\\x18O\\x7fn\\xbcx?\\xba\\x97\\xac\\x97\\xe4\\x05\\x83\\xbf\\xe2\\x11\\\\\\x1c\\x89\\xfav\\xbf@[qS\\xed\\xc5*\\xbf\\xd0\\xb7)\\x03\\x04\\x93a\\xbf\\xd0a#\\xe6\\x92\\x8a\\x90?\\x8czVG\\xf31\\x86\\xbf .\\xe5\\xe2\\x80\\x80t\\xbf\\xf0\\x8b\\x81\\x8b\\xdfy\\x94\\xbf`\\x80\\xf6\\x1b\"V\\x7f?T#\\xa9.\\xb5\\x07k\\xbf\\xa83\\xa2g\\xc7\\xdfl?\\x14\\x03Aq\\xeaIR?\\x00\\xef\\x95P\\xdb\\x11\\x96?`\\xacq\\x18\\xd0\\x84\\x90\\xbf\\xc0\\x87\\xe15\\xd2\\x93`?\\xfc\\x9d\\xa1\\xc32\\xc0\\x8b?\\xc8\\xc0\\xa5\\xebm\\xc6\\x9a?\\xc0\\xb9\\x18s\\x7f\\xb0}\\xbf\\x00wt \\x9b\\xc6o\\xbf\\xc26Z\\xf2z\\xc3\\x90?@\\xac9\\xa4\\x88\\xafR\\xbf\\x882=\\xcb\\xf1\\x91\\x9c\\xbf\\x18\\xad\\xec\\xc7\\xfc;\\xa1\\xbf\\xe0\\xc7\\xe3\\x16b\\xc1\\xa5?-=zd\\xc7\\x8a\\x93\\xbfd\\xf5\\xff$\\xce(\\x99?0bDO\\xa3\\xb5\\xa1\\xbf@z\\xd2\\xa3\\xe1Si\\xbf\\xd8t\\xa4\\x87\\xd6`r?\\x80p\\xcd\\xd5R\\x82g?H\\x04\\x88}Nv\\xa6\\xbf \\xf6B)\\xc7\\x99\\x83?\\xcc-O^\\xd3\\xaf\\xc0?~j|NXQ\\xa6\\xbf\\x00\\xc1=\\xec/k`\\xbf@\\xef\\xa9\\xc0\\xc8\\x88\\xbb\\xbf>\\x85\\x7f\\xf2\\xaa\\x10\\xb0\\xbf\\x10\\xd8L\\'\\xe3\\xde\\xb4?<&Z\\xf0-5\\xa3\\xbf\\n\\xe1J\\xf5pS\\xa0\\xbf\\xd0\\x8f\\x1e\\xf2CH\\xb2\\xbf\\xdcK\\xec\\x95\\xe5=\\xa4?\\xca\\x8f\\xce\\xd9\\x94\\\\\\xa6?\\xd0\\xd2\\x85M\\xeap\\x88\\xbf\\xe0\\x04`\\xec\\xfc1t\\xbf\\xb2\\xd0;\\xc7*\\x00|?\\x80C\\xdcI\\x18^Q?\\x10%\\x04\\xf5|\\xdf\\x8d?\\x10dP\\x13@\\xa5{\\xbf(kg\\x8b\\x97Dx?\\xc0/\\x157#\\xcf|?\\x80\\xe7d\\x08\\xe6\\n\\x81?P\\xe7\\x15{zW\\x80\\xbf\\xa0\\xe9\\x983\\xc6{\\x8b\\xbf:\\x95\\x89rv\\xe2\\x92?\\x86\\r\\xc9\\xd5 FQ\\xbftk\\xdf.j\\x90t\\xbf\\x9a\\x9cn~\\nE\\x8d?\\xd6\"\"Y\\xe6Qf?(\\xc5\\xc2\\x10\\xa6\\x97p?i\\xa5B<\\xccO\\x88\\xbf`\\xbc\\xd2p\\xda=^\\xbfx\\x10\\xce\\xba\\xb0\\x1aa\\xbfxC\\x9di\\x07\\ry\\xbf\\xd09}t#X8?\\xbaF)\\xb2\\x18=d?8\\\\\\xe8!L\\x94p\\xbf\\xd09){\\xd8Pe\\xbf\\xc2\\x06\\x9f\\nT\\xb9f\\xbfP\\xc6\\xe7\\x00/\\xd7v?\\xd7\\xefw\\xbbu8D?d#\\xd2l\\xffYe?\\xde#bSp(e?\\x98\\x03\\xa2\\xe8\\x0f!l\\xbf\\x88\\x0f\\xbf\\xfcO\\x07j?.\\xdc^?]\\xc2q?(m\\xc8\\x94%br?@\\x8a\\x03+P\\x14U\\xbfH\\xd6\\xd5\\x81\\xa4\\x8cf?\\x0c/\\xe7Iq\"p\\xbfP[\\x07f\\x95\\x84I\\xbf@\\xd8\\x1c\\x9a\\xea\\xc2\\x84\\xbf\\xdeI\\x7fK\\xc6\\xb7x?\\x80\\xac\\x9f\\xc6I[\\'?\\x16\\x86\\x83\\x96t\\x14{\\xbf\\x91c7\\xff\\xc3[q\\xbf\\xb0\\x8cx\\x9b\\xa4\\x85_?\\xc0s\\x80b\\xac\\xbds?\\x983\\xda\\xfbL\\xe9Y?t\\xff\\x0b\\x9a\\x84\\xd0j?,\\xa5\\xbc\\x161\\x87\\x8f?:\\xeem\\xd6\\xd8\\x84\\x95?*Fb!\\x85\\x14\\x96\\xbf\\xc1\\xc1\\xea\\x9bhP\\x87?N\\xe09\\xa2\\xe6\\xf6\\x97\\xbf\\x82\\x01\\xec\\xc6\\xec\\x87\\x9a?\\xa66q|\\x01\\xc4{?#\\x17*\\xd1\\xa9\\xccb?\\xf1\\xc8\\xa2\\xfa7\\xe1k\\xbf\\xaf@\\x84\\xd1\\xbd\\xc7\\x98?\\x80\\xd8\\xbeD<\"A?~j|NXQ\\xa6\\xbf\\xa2\\xf1x\\x80O\\x80\\xa7?\\x9e3\\xf7u\\xd2\\x95\\x8a\\xbfm\\x988KN\\xbe\\xab?\\xba\\xc4^\\x83\\xban\\xa4?\\xccf\\xa3[C\\x8e\\xa8\\xbfL\\xd9\\'\\xf7\\xa7\\xafr?Z@\\x91\\x82\\xf4\\x16\\xa6?\\x00\\xbe\\xf7d\\xdfH\\xaa?@\\x1ez<\\x18\\xb48\\xbf\\xaf&\\xed\\x83P5u\\xbf\\xe8\\xc8\\xc5!\\x03\\x12M\\xbf\\xf4\\x0bS\\xfa\\xdf\\xc2a?\\x9a\\xba%\\xb2\\x9e\\xd0p\\xbf0\\xb59\\xb8f6v?\\x08\\x88ehf\\xb7R\\xbf\\xc0\\xbda\\x99O\\x8d=?\\x8c;R\\xf4\\x98,e\\xbf\\xf8Q!\\xf0\\xaa\\xe2i\\xbf\\x98~e\\xba\\x1c\\xc1b\\xbfL\\x13,\\xac\\x1a\\xb0j?\\x18}\\'\\x12\\x13\\x9cu?P\\x16+A\\xb4\\xad\\x8b\\xbf{T\\xd3\\x12\\xc1\\x86n\\xbf\\xb0\\xf3\\xbf\\x15\\xba;a?\\x00\\xee\\r\\x19v\\xb8<?\\xfc\\xd1\\x9e\\xd4P7[?`\\xb1\\xf5\\x1fY\\xfe]\\xbf\\x10\\xe6\\xafv\\x91\\x85t?\\x03\\xcasz\\xc3|q?\\x80\\x86\\x82\\xdd\\x92\\xa7<?\\x80z\\'4U\\x05a?\\xc82\\xc8\\xaa%\\xb1q?\\xc0.\\xf8Q\\xe2s??\\x80E\\x8f\\xdb\\xae\\x99^?\\x88l\\xad\\x953]e? \\xdcZ\\x15~E\\\\\\xbft\\x11`\\xd7\\x98Jj?\\x94r\\x91\\x87\\xe5w3?\\xb8\\x8a\\xfd\\xb3\\xb5BO\\xbf\\xc0P\\x15Ho\\x89H\\xbf\\x04\\xfb\\xc5nlqr\\xbf\\x00\\x95\\xc1`\\n\\xc5\\x1c\\xbf\\x98\\x8d\\x0e\\x86\\xca\\xbch\\xbfP\\x81\\xde\\xa8Y_\\x80?`\\xa9\\xb6\\xcb\\xa0\\xc7u\\xbf\\x98\\xf4Uf\\xe4\\xd0l\\xbf1(\\xa9\\xb4_cr?\\xc8\\x16\\xdc\\xfa\\xc4\\xb1G?x\\x1a\\x9c\\xe2\\x01\\x14r?\\xc07\\xc3\\x12\\xf6.~?\\xf0O\\xe1\\n\\x0b\\xd3d?`\\xe3/\\x11Q\\xb2^?\\xe0\\x88RU\\xed%q\\xbf(v\\x83X\\xc8\\xf2\\x84?\\x80\\x15\\xbb=B2<\\xbf\\x8c\\xe9\\x84\\xf2q\\xc2{?\\xd0*\\x8d\\xd5\\xfa\\xd0K?\\x80\\xe6\\xab\\xa4\\xa3H\\x80\\xbfN\\xe9\\x16\\x04\\x87\\x1d\\x9c\\xbf@\\t\\xc2\\xb2\\xdd\\xd0|?:\\xdb\\xc0\\x9e\\xcb(x\\xbf\\xae\\xeb\\xd5\\x95m&\\xa2?\\xe0\\xb1\\xe1\\x88W\\xbd\\x82\\xbf\\xc0\\xae\\xfcF2\\x06_?\\x00\\x1e\\xc0~\\xcdaK\\xbf>\\xeb#L/\\x05h\\xbfMcc\\xedA\\xf0`\\xbf\\x94\\xf6\\xe6\\xac\\xe26\\x96\\xbf\\x00\\xc1=\\xec/k`\\xbf\\x9e3\\xf7u\\xd2\\x95\\x8a\\xbf\\x88\\xc8~j}y\\xa7?\\x80)}t\\x8e\\xa0U\\xbf\\xb7t^I\\xa4\\xb4\\x83\\xbf`\\x8c\\xd6\\xa2\\x8c\\xbc\\x83\\xbf i\\x12d\\xa3)\\x7f?`\\xba<\\t\\xd3Tn\\xbfpO_9\\x18\\x18\\x90?\\xc0\\x98\\xb38\\xb1\\xd7\\x81\\xbf\\xc66\\xa3e\\xedK\\x86\\xbf\\xe0\\x8d\\xa4;\\xe7\\x06B?\\xf8\\xcc\\xb7\\x17\\x97\\xce~?$\\x87\\xe20U\\xf3r\\xbf\\xc0\\x87\\xc5g\\xc1\\xa8?\\xbf\\xa6*\\xb7B@B\\x83\\xbf\\xc0\\xab\\xa3\\xcdi;w? ~\\xae9:-\\\\?\\xe0N:`V\\xe9_?\\x00\\x02m\\xc90\\x96H\\xbf\\x80t\\xb5\\x82\\xdf\\xa29?\\xa0P\\xc0\\x15]\\xb4V\\xbf\\xa0\\x8cL6\\xe1vr\\xbf\\x0f\\xb0\\xbd\\x04\\xda\\x1b{\\xbf\\xa0\\x07\\xf68\"&a\\xbf\\xc0\\x10\\xcf\\xf1\\x1d\\xf5z\\xbf\\xa5C\\xcf \\x17\\x8c\\x80?@d\\xe7\\x9d\\xf9>n?\\xc0m\\xbf\\xfc\\x82rl?\\xc4\\xae\\x0b\\x8c\\x1a\\x8c]\\xbf\\xf1\\x0b\\x9c\\x8f\\x93\\xe7i\\xbf\\x80o\\xc1\\xef~\\x0f\\x8d?0\\xbez\\xaa\\xd7\\xecr?`\\xe4\\x84\\x9d\\x1f\\x82c?\\xb0\\xbb\\x83\\xdb\\xae\\t\\x90?\\x05Ps\\xb9\\xc6F\\x83\\xbf@\\x1c1\\x80\\xa8sv\\xbf\\xbao\\xed\\x1dm\\x8f~?E\\x97\\xc2\\xf9}\\xf0a?(6\\x10b\\x7f\\'j?\\xc0\\x94W\\x187\\xd2E?\\xb8\\x140\\x91\\x1a\\xd4\\x8e\\xbf\\xcc\\xdc\\xc3*\\xe4\\xce\\x87?@\\xd0d7\\x04\\x98p?lVB\\xc5\\xba-\\x96?\\xf0\\xa6\\x8d\\x95-\\x80\\x81\\xbf\\xc4\\xf6R\\xc2o\\xdaa?p\\xcen\\x85\\xf2\\x10t\\xbf`\\xf4>\\xc6w$2?\\x18bm\\xedM\\x96\\x93\\xbf\\x80\\xb9\\x92\\x1b\\x0e\\xab\\x92?\\xc0=\\x8b\\x0f\\xc7zl\\xbf\\xd6\\x01\\xf0\\x988:\\x90\\xbf\\x10\\x8ep\\xf2\\xb9\\x00\\x9a\\xbf0\\xa0\\xa9q:\\x94\\x86?\\x80\\x8dkg\\xc4:o?`\\xc1\\xe0\\x1f<\\x9dt\\xbf \\x08\\xc6-P7G?<\\xd4\\xdc\\xb4\\x19z\\x98?\\xc9B\\xd16r\\xec\\x99?\\xf8T\\x0c\\xbb\\x14\\xa5\\xa0\\xbf\\x7f\\xd4\\x00\\x18-\\x82\\x92?\\xb8\\xe7\\x99?G\\xe1\\x99\\xbf\\xccW\\x03X#\\xb7\\xa2?\\x80=\\x07(\\xd2\\x01E\\xbf\\xa0s\\xa4\\xdb\\x07Cp\\xbf\\xd0\\x8d\\xb1\\t\\x83\\xe6P\\xbf+/2q\\x12_\\x9e?\\xa0\\xbc\\xb9\\xc6\\xf0\\xae\\x8f\\xbf@\\xef\\xa9\\xc0\\xc8\\x88\\xbb\\xbfm\\x988KN\\xbe\\xab?\\x80)}t\\x8e\\xa0U\\xbft]J\\x7fI\\xd2\\xbf?Gs\\x99\\xb4\\xa0}\\xa9?\\xf0\\x900\\xb8\\x00\\xe0\\xb4\\xbfd;\\xaeM\\xed\\xce\\xa5?;\\xd4\\xb4\\xc9\\xcd\\xba\\xa5? \\xa4\\x11\\x02.\\xee\\xb4?\\x84\\xbf\\xb8\\x8f\\x9d\\x85\\xa5\\xbf\\x12E2;(#\\xa0\\xbfx7L\\xab\\xf0_\\x8c?\\x80\\x81\\x9e\\x10\\x0bg\\x88?\\xc8\\xb0\\x0c\\nm\\x07\\x8f\\xbf\\xc0Fa~\\xd6wS\\xbf \\xb1\\xcb\\x88xn\\x8b\\xbf@\\x91\\xaa\\xaa\\x14$~?\\x90/9E\\xbf&w\\xbf\\x80\\x9c\\n\\x1f\\xd7\\xa3z\\xbf\\xa0\\x8e\\xbd\\x8dt\\xbb|\\xbf`\\xd8\\xa2\\xf9\\xf8\\xf9\\x81?\\xa0\\x82<\\x7f\\xab\\xc1\\x8c?\\x86\\x94\\xc3\\xe9<v\\x98?\\x11\\x95\\xfd\\xc2\\x06Pe?\\xa6\\x16\\x98\\xea\\x95\\x82\\x80\\xbfg\\x94\\x07\\xe8K\\x17\\x96?\\xb8\\x03=\\xd2I\\x08I\\xbfT-1\\xda\\x82cj?>hH\\xb8\\x92\\xd3\\x89\\xbf\\xa9\\x01_\\x85\\x9f,Y\\xbf\\xec\\xd5{\\xac\\xc8\\x1bN?\\x80O\\x95\\xa4\\xde\\x06b\\xbf\\xc2\\x9d\\xf0{n\\rj?T\\x80\\xb29i5]?\\x14\\xe2\\x9a\\xd8\"\\xe3\\x84\\xbf\\xfe#\\xc9uw\\xc1\\x82\\xbf\\x82kc\\xb7Y\\x7fh\\xbfu\\x18e\\xab\\xa9k\\x85?\\xc2\\xde\\xb9\\xdc\\xbf.U?\\xb1\\x9e\\xce]p>^?\\xf6\\xdb\\xa5\\x15\\xe6=w\\xbf\\x92\\x80W\\x0bZ7t\\xbf\\xeay>\\xb8\\x93_\\x81?\\xa8\\xebX\\xf4\\xf3\\xebO\\xbf8\\xc0_w&\\x84r?\\xea*\\x8f\\xed\\r\\x12u\\xbf\\n\\x987rA\\xd3f?\\xd8U\\xb1\\xe5\\xed\\xeaj\\xbfB\\x90\\xbf\\x83K(Y\\xbf\\xee\\xf8\\xe7s\\x85\\x9f\\x85\\xbf\\x02\\x05\\xaf\\x1e\\xc0G\\x81?F\\xf8\\x80\\xbf\\x9b\\x8do\\xbf\\xca\\xc7~\\xc0\\xb9\\xf5m\\xbfO\\xed\\xf8db#\\x84\\xbfb\\xa6~HGT{?\\x8c\\x99\\x10\\xeagJ\\x87?\\x8e\\xcd\\xde|\\xb5\\x93\\x7f\\xbf\\x00Y\\xd3b\\x16\\xd2v?\\xc7\\xecfY\\xb0\\xfb\\x95?9\\x9f\\xec\\r/Q\\x94?\\x9aQ\\xe7\\xf3\\x19\\x16\\x9b\\xbf\\xd36Cl\\x7f\\x96\\x8d?m)&\\xe4\\x8e\\x1a\\x91\\xbf!B#\\xd0\\xdaz\\x97?\\xfe\\xb1=\\xa0a:\\x80?\\x7f\\xa0\\xcf\\xa3\\xa0>f\\xbf\\xc7\\xb1\\xc3\\x04\\xdc[y\\xbf\\x86\\x18\\xd8\\xa0hQ\\xa7? \\x11X\\xfa\\xc4\\xc4o?>\\x85\\x7f\\xf2\\xaa\\x10\\xb0\\xbf\\xbb\\xc4^\\x83\\xban\\xa4?\\xb9t^I\\xa4\\xb4\\x83\\xbfGs\\x99\\xb4\\xa0}\\xa9?\\x94dJ\\x8f\\xa3`\\xbb?\\xac\\xf3\\xe5\\xcb=\\x81\\xb2\\xbfL\\xae3UHVr?\\x14\\x88\\xbd\\x138P\\xb1?\\xbeW\\x87p\\t\\xb2\\xac?\\x00\\xfd\\xa0F\\xb5>;?\\xaa\\xc9\\x88\\xc0\\xc6\\x0f\\x98?`OW\\xb2\\x14lo\\xbf\\xe22\\xaa\\xecB\\x9b}\\xbf6\\x17\\xea\\xc6\\xe9\\x9c\\x92?=\\xf4\\xfa\\xeb\\x8c\\xddw?\\xd4\\x01J?*:\\\\\\xbf?I\\xa5\\xcd7\\x86\\x89\\xbfN\\x8f\\x83\\xf7\\xa0\\xbf\\\\\\xbf\\x88\\xd5\\xcc\\xed\\xa6lu\\xbf@\\xf8\\xc9\\x1c\\xf3\\xa0\\x80\\xbfQ\\x01\\x86\\x08L\\x0bq?\\x1e\\x1b\\xa3\\xf0\\xbe\\x11\\x7f?\\x90\\t\\x86\\xf1\\x88\\x9c\\xa0\\xbf\\x001\\xa1w\\xed\\xe8y?\\x00S\\xd2s\\xe0\\x9aR\\xbf\\x80\\xadG\\\\\\xbb\\xbe\\x89\\xbf\\x94\\x91\\x81J\\x14\\x1ey\\xbf\\x10=\\xe4gZ\\t\\x84?\\x80\\xd4\\xe8\\xfb\\xbe\\xd2\\x99?\\xa6NX\\xa5c%x?<Y\\xea\\xcc\\x7f\\xb5\\\\?@L\\xc5\\xf8e\\xf0\\x81\\xbf`S\\xf8(qZb\\xbf\\x80W\\x89x\\x06\\x16y\\xbf\\xc0\\x92\\xd1=\\xe0\\xb9\\x81\\xbf\\xfc\\xc7\\'(\\xff*\\x82?0\\xb6\\x86\\xc3\\x90=\\x83?\\xce\\xc2\\xa0R\\xa7\\xaa\\x94\\xbf$\\x0f\\x93\\xae\\xb6\\xc4T\\xbf`f~\\x04m\\xe9\\\\\\xbf\\x90\\x1d\\'\\x9e\\xafh\\x89?p\\xba\\x88\\x01\\x16\\xfa\\x95?P\\x08\\x88\\xb3<\\xf7\\x87\\xbf\\x00yA\\xe6\\x85\\xe4Y?0\\xae\\xde\\xbf\\xc4u\\x93\\xbf\\x00(\\xd3u\\x01\\xec#?\\xb8\\xe4\\xef\\x00\\xe4\\xa7a?\\xe0I\\xcf\\xc4\\x1d|y?\\xf0G\\x7f\\x8d\\xfd\\x19e?@\\x04 \\x83B\\x83\\x9d?\\xb4\\x9b_\\xad\\x85L\\xa3\\xbf\\x00\\xb8\\xd9=;_*\\xbf`5\\x9a\\x88\\xe8W\\x8d?00\\xbc\\x05\\xee\\xce\\x93?\\x00\\xea\\xe1@\\xbf:Q\\xbf\\x00\\x02]*\\xe4\\x95K\\xbf\\xe4\\xc1\\x96\\xe0W\\xae\\x9a?8\\xa4\\xef`\\x01vu\\xbf\\xf7]\\x8b)y\\xd8\\x86\\xbfH%\\x10\\xecyvq\\xbf\\x80\\xce\\xf4\\xb0w\\xf2}?\\xd0\\x10\\xb8\\xee\\xfd\\xbci\\xbf\\xf8\\xd5y\\xba\\xb5\\'\\x83?\\x80\\xce\\x19\\xd3\\x1e\\x0ch\\xbf\\x90UK\\xb4\\x84\\xee\\x80\\xbfg\\xc3\\x0b\\xa6tu\\x93?\\x00\\xc2\\x98+]\\xc9j?0\\xd1\\xa9\\xdf\\x11\\xc0\\x9a\\xbf<\\x06\\xfb\\x1d!\\x8a\\xb0?\\x10\\xd8L\\'\\xe3\\xde\\xb4?\\xccf\\xa3[C\\x8e\\xa8\\xbf`\\x8c\\xd6\\xa2\\x8c\\xbc\\x83\\xbf\\xf0\\x900\\xb8\\x00\\xe0\\xb4\\xbf\\xac\\xf3\\xe5\\xcb=\\x81\\xb2\\xbf\\xd2l\\r\\xf6\\xadf\\xd6?\\xba\\x07@\\xd5\\xccv\\xc1\\xbf>o\\x15\\x94\\xb5\\x0e\\xaa\\xbf\\xe8\\xe9:B\\x92\\x1b\\xd3\\xbf\\xdcFN\\xd2\\x97\\x92\\xbe?\\x1a\\xd1\\x86\\x91\\x1c7\\xb1?\\xa0\\xd4\\xe5\\xb6m\\xdf\\x91?\\x18v\\xcb\\x90K\\xbb\\xa1\\xbf\\xaf>\\xd5\\xef\\xa8\\x0b\\x8e?\\xd4\\xb8\\xfc\\xc3\\xcc3\\x99\\xbf\\x0c\\x1bx\\x958l\\xa2?\\x94\\x1dxa\\xa05\\xa6\\xbf\\x00\\x90d\\xbb\\xf2d7?@\\x86u0\\x06\\xf4{? O\\x8bm:\\xb5o\\xbf\\x88\\x14\\xc7\\xd9\\xed\\x0b\\x83\\xbfP\\x01F\\xcd\\xc0\\xa7\\x89\\xbf\\xf0\\xff\\xca\\xf8(\\xabz\\xbf>\\xabs3\\xb1:t\\xbf\\x80\\xa4\\x8ag\\xd6bv?\\x00\\x15\\xadU\\x99\\x00\\x8c\\xbf]$4\\x89`\\x96w?\\x18\\xab-6\\xf2My\\xbf\\x00\\x8c\\xdam[\\x1aj?\\xc4\\x94\\xca\\x82\\xc3wf\\xbf\\xf6_\\xf5n,\\xabM\\xbf\\xd8\\xdd\\x06\\x90hS\\x92?\\xa0~\\xcb\\xfb#dK\\xbf`\\xd8\\xa9\\xb0IkR?8\\xcf\\x01T\\x15!\\x93?\\x809\\xcf\\xae\\xac\\x01j\\xbf\\xc0*Q\\xab\\xf2\\xc6p\\xbf\\x8e\\x92r\\xaa\\xf8\\xabl?\\x86\\xe6\\x83/\\xbbMS?\\xc0\\xcc\\xe9^\\xfb\\x1b\\x13\\xbf^\\xe1\\xfeRC\\xee\\x82\\xbfxU\\xc3@\\x9b.\\x8d\\xbf\\x84{\\xcb*\\x06\\xfa\\x82?\\xb8C&\\xed\\x1b;y\\xbf\\xac.\\xa1\\x9f\\xf0\\xfb\\x8e?\\xe0y\\xb4\\x9f|\\xe6p\\xbf\\x1f\\x1f\\xb4\\x14\\xc2qi\\xbf\\xb4\"\\xf6\\x80G\\x9bd\\xbf\\xa0\\x81\\x8bg7sC\\xbf\\x80\\x1b\\xb0O;\\xcd\\x88\\xbf`\\xf3i\\xd1\\xaa\\x9e\\x95?`\\xb8\\xf0,\\x89\\xc3v\\xbf\\x10V\\xfd\\xf77\\x07~\\xbf\\xb4\\xc3\\xf9\\xe7\\x95\\xe3\\x91\\xbf\\x90z^\\xe5\\xa7Yy?\\xe0\\xc8\\xbc\\xb7\\xc5=n\\xbf\\xb8d\\xdf\\xf0\\xa6\\x84\\x8a\\xbf\\xc0\\x7fCx &D?\\x00c\\xca\\x88\\xc9\\xf31\\xbf\\x80j\\xc3\\x15\\xcc\\x9e;\\xbf@\\x11X?%KQ\\xbfpWfK\\xf4d_\\xbf\\xc0r~;\\xeepY\\xbf\\x80y\\xc6zUYG\\xbf\\xe0\\x97-G\\xf4\\xbcd\\xbfL\\x11K8b\\xc3\\x85\\xbf\\x80l\\x14m\\xa1\\x84:?\\x06\\xd0 \\xa8\\xb4\\xf8\\x7f\\xbf\\xa6\\xcf\\'\\xaa\\xb2=\\xa1\\xbf<&Z\\xf0-5\\xa3\\xbfL\\xd9\\'\\xf7\\xa7\\xafr? i\\x12d\\xa3)\\x7f?d;\\xaeM\\xed\\xce\\xa5?D\\xae3UHVr?\\xba\\x07@\\xd5\\xccv\\xc1\\xbf\\x8e\\xfb\\xbf\\xe3\\x12\\x85\\xb7?\\x80\\xe3r\\x10\\xc3\\x01_\\xbf\\xe8\\xe0k\\xde\\x93g\\xbd?\\xb3m\\xddJ4\\xa3\\xb4\\xbf\\xea\\xd8!\\x1f\\xa3O\\x9b\\xbf0p\\x91\\x13i\\xf9X?L\\xfb}\\x95\\x1fB\\x98?\\xab\\xa0\\x8c\\xa5!\\xff|\\xbf\\xdc\\x17\\xcb\\x94=\\x9au?L\\xc69\\x92\\x89\\x12\\x98\\xbf\\x10\\n\\x8a\\x0e3\\x0e\\x96?\\x00\\xf3z\\x88w\\xfc3\\xbf\\xc0}\\x89\\x82}dh\\xbf\\xf0W~\\xb3\\x9e\\xebm?@B\\x83\\xf3S\\x10s?p\\xae\\xf8\\x84\\x0c\\x00~?\\xd2\\x07\\nX2!\\x95?,\\xb6\\xe5\\x9e\\xf9+]?P\\xbdp\\xeb\\xa8\\xf4s\\xbf\\x10Z\\xbb_h\\\\\\x95?\\x002\\xdfN\\x88=\\x04?r\\x9c\\x17h\\xd9;\\x82?\\xd8\\x87\\xa8\\xaf\\x1a\\xc1\\x86\\xbf\\x00\\x18\\xe8\\xe3\\xd9)\\xb3\\xbeNwV\\xb1\"\\xa9`\\xbf\\xe0\\x8c`\\x93C\\nu\\xbf \\x9d|\\xf3[oc?\\xc0\\xb2\\x85B\\x1e\\x0e\\\\?\\x98({C\\x162\\x85\\xbf5\\xd4\\xd2YG\\xe5u\\xbf\\x98\\x08?\\xaf\\x9f\\x8f[\\xbf\\xa9\\xce\\x9c\\x9b\\x06~~?\\x98\\x88\\x15\\xf4\\x12\\xceP\\xbf\\xe0\\xc5\\xe4\\xbc\\xf2#P?\\xc2d\\xde\\xb1\\xf5og\\xbf\\xc0XL\\\\*Q3\\xbf&\\x96\\xe9\\xbc\\xe8-s?\\xc8\\x1dG\\x04\\xca\\x86m\\xbf\\xc8\\xce\\x1c\\xf4\\xbcou?81o\\xbeLn{\\xbf\\xc2\\xf6\\x1d!r~c?\\x0c\\x00\\xbe\\xdc:4Z\\xbf\\x90\\xdd\\x03#.\\x87<\\xbf\\xc8\\xc9K\\n\\xdb\\xd6q\\xbf\\xac~\\xc1\\xa5\\x13\\xc9p?\\x18\\xac\\x14\\x9a!\\xcdj\\xbf$\\t~\\x9f\\xa1\\xd5f\\xbf87\\xf6\\x93\\x8b\\xde}\\xbf\\x90\\xdbI\\xc5\\xb6\\x18\\x85?\\x803\\x99}\\x84\\xc6\\x86?\\x80n\\x1f9\\xe1/\\'?\\xee\\xf4\\x12T\\xe2Ng?\\xa1w#=*\\x04\\x8a?\\xdf\\xb4\\xc6\\x008!x?<t?\\x1et\\xfa\\x82\\xbf[\\x93\\xa2\\xe4\\xfc\\x93\\x86?&S\\xda\\x85\\x04\\x96{\\xbf\\x90\\xca\\xe7.6R\\x84?\\x80\\xe0\\xcd\\x81>z=\\xbf<\\xe2/U<\\x90A?\\x00\\x8c\\x88\\x8c\\x81&\\x15\\xbf\\x9cqh\\x0f\\xa5\\x82\\x9c?\\x80\\x9d<`\\x81KK?\\n\\xe1J\\xf5pS\\xa0\\xbfZ@\\x91\\x82\\xf4\\x16\\xa6?`\\xba<\\t\\xd3Tn\\xbf<\\xd4\\xb4\\xc9\\xcd\\xba\\xa5?\\x14\\x88\\xbd\\x138P\\xb1?:o\\x15\\x94\\xb5\\x0e\\xaa\\xbf`\\xe3r\\x10\\xc3\\x01_\\xbf%/\\xcc\\x87\\x8a\\xf2\\xb7?\\xd2YD[\\x87\\x8a\\xaf?\\x00\\xb1\\xb2E\\xcf\\xe3\\x87?\\x0e\\xaa>]\\xafH\\x94?\\x16}SlWN\\x82\\xbf\\xaaS\\xb2\\xc6\\x84i\\x81?Re!\\x86\\xd9\\xbc\\x95?\\x108\\xe19\\x08:\\x87?\\xcc5\\xcedg\\x97g\\xbf0$\\xb9u\\x0e\\x92P\\xbf \\xff\\xa4n)\\x9fK?\\xb0\\x95&\\xef~@n? \\x98\\x12\\x9d\\xa1\\x1aQ?d\\xd7\\x12\\xfc\\x8add?H\\x0e\\x08\\xf1lXl\\xbf\\x08e\\x1a\\xc9t\\x02\\xa0?\\x102\\xb3;\\xc6\\x0ec\\xbf\\x00\\x803Mf[\\x17?p0\\xb7\\xdaA\\x08\\x91?\\x1c\\x8d\\x04\\xc7&U\\x7f? \\xb3\\x1e\\\\k8u\\xbf\\xb0\\n\\x10JIX\\x96\\xbf\\xe6`\\x8f\\x1e\\xdb|o\\xbf0\\x88\\xfd\\xad^\\x12k\\xbf\\xc0\\xf5<.\\xa3\\xa6\\x83?\\x00\\x08\\xd7\\xa8\\x1dUv?\\xa0o3\\xf6\\xad\\x1d|?\\x00\\xa8\\x1c\\x9fE\\xd0v?\\xa0\\x85\\xbf\\xbc>.z\\xbfx\\xde\\xae\\x9e\\x13/\\x82\\xbf\\xbd\\xc2\\xe4,.m\\x94?\\xd4\\xabP<\\x1b\\xdbh\\xbf\\xa0\\x92\\xa0\\x04l\\xebm?@\\xcf\\xa8\\x93\\xb9,\\x8b\\xbfD\\xc5%\\xf5\\x82\\x84\\x94\\xbfhO\\x89\\xa2\\x11-\\x83?\\x00\\xa8\\xa5\\xc4\\xd7_\\x18?0\\xf7\\xc8\\x06\\xe3\\xb2\\x91?\\x00<\\xe5\\xfd+\\xbe(?0\\x9a\\xb79-\\xbbY\\xbf4\\xc5nh!0|\\xbf\\xaa\\t\\x96\\xc3:\\x90a\\xbf\\xd8\\x13\\xa5\\xc6\\xa0\\x15\\x99\\xbf\\xb4?^\\xf9h~\\xa3?\\x80\\xac\\xcb^1#s?x!\\xbf-\\xfb\\xb3\\x91\\xbf\\xc0\\x92\\xf4\\xafy\\x05\\x94\\xbf\\x00LC\\x97\\xf4\\xf32?\\x80\\xac\"\\xe1\\x9e\\xfft?t\\xe4\\xea\\tQ\\x1f\\x96\\xbf\\x88\\x84\\x90<\\xe91\\x81?\\xeb\\xacZk`K\\x88?\\xe0\\x98\\xf7\"\\xc6wo?@\\xb0 \\xd7[\\xfbt\\xbfP\\xa5\\x03\\x17\\x1d\\x05m\\xbf0\\xf1\\xf3\\xda\\n\\xef\\x88\\xbf\\x00\\x93,\\x16B\\xbde\\xbf`G\\xb3i\\x0e&s?dM\\x0cw\\x8by\\x92\\xbf\\xf4\\x81\\xe9\\xed\\\\\\x05p\\xbf\\xdfC\\xb8\\xac\\xfct\\x92?`PT\\x02\\x1f\\xad\\xa5\\xbf\\xd0\\x8f\\x1e\\xf2CH\\xb2\\xbf\\x00\\xbe\\xf7d\\xdfH\\xaa?pO_9\\x18\\x18\\x90? \\xa4\\x11\\x02.\\xee\\xb4?\\xb6W\\x87p\\t\\xb2\\xac?\\xe8\\xe9:B\\x92\\x1b\\xd3\\xbf\\xe4\\xe0k\\xde\\x93g\\xbd?\\xd2YD[\\x87\\x8a\\xaf?\\xbe\\x7f\\x11\\xd4\\xb1\\x08\\xd7?v\\x18\\xed\\xc6|y\\xc1\\xbfU \\x84\\x92\\xbbU\\xa8\\xbf(\\x90\\xfa\\xf8\\xe4\\xf9\\x91\\xbfH\\xd0\\xd3\\x8ds\\xcf\\xa4?\\x93\\x0c_\\xe9)\\x16\\x91\\xbf _\\xf2\\xbd\\xe3a\\xa2?\\x8c\\xe4M\\xafx\\x12\\xa9\\xbf\\x90F;\\x7f\\x8f\\xc8\\x9b?\\xe0\\xfd\\xf5\\x17\\xa9Ef\\xbf0\\x04\\\\M\\\\\\x8b\\x8d\\xbf\\xc0\\xf4v\\xd9arP?0\\xd9@,\\t\\x87\\x89?\\xc0\\x04E\\x1f\\xb9T\\x94?\\x10+V\\xe5n\\xf6x?\\x0cJ]\\xeab\\xa9o?\\x88\\x96\\xb2S\\x08\\xc2p\\xbf\\x10s\\xffK\\xd4!\\x8b?\\xccb\\xe2v\\x06\\xd6y\\xbf\\x98\\xa3\\xf4\\x10\\xa4\\x1ar?\\x00\\xe9\\x15\\xed to\\xbf\\xb9W\\xd8\\x8cy\\xb0d?>u\\x18\\xe0\\xb9[\\\\?\\xa0\":\\xaaM\\xdd\\x94\\xbf\\xa07\\xb5Q\\x8d\\xfbc\\xbf\\x80\\xd8\\x87L\\xc9\\xecV\\xbf\\x00\\x96\\xf14\\xb8t\\x93\\xbf\\xe8\\x1a7_0\\xfcq?x\\x08\\xb1q\\xed^m?g\\t\\xb9K\\x97]p\\xbf\\xd5\\xd8of\\xcb\\x80c?\\xda\\xc2\\xf7\\x02\\xd1\\x12c\\xbf\\xec\\x11r\\x94\\x86\\xfc\\x85?z\\xed\\x10XD\\xe1\\x8c?&\\xdf-)\\xabH\\x84\\xbf\\x00\\x14\\xa2\\xd7\\xc7\\xf6p?4\\xeb\\x14~\\x19\\\\\\x8e\\xbf@\\x9d\\x80K\\xe4\\xa2m?\\x8aiM\\x89\\xdf\\xbch?\\x8c\\x13?Cl\\xaco?\\xe8\\x06\\xdca\\xf3\\'7?\\xa0\\x94\\x98Z\\xed\\xff\\x83?<\\xebl\\x8d\\xb2\\xe9\\x92\\xbf\\xf0\\xc6%\\xff$\\xcct?(?\\xf1\\x07\\xc19}?\\x88\\xc5\\xa7\\xf5K\\xe1\\x92?@KX\\x19\\xc75t\\xbf\\x00\\xec02|xm?v0\\x1d3\\x87\\x95\\x90?\\xd0\\xd2i\\xa8:\\xdd]\\xbf\\xb8\\x89\\xbd^\\xbeQA\\xbf\\x08\\xc3\\xef]\\xf6\\xbdg?\\xc0\\x86\\xc0\\xd3\\xfaOQ?\\xf0\\x04\\xa5\\x92]Ow?\\xb0\\x1a\\xf9b\\xbb\\xa4o?\\x80\\xc1\\x84\\xc5\\x9a9a?\\xc0\\xfd\\x03\\xa3b(_?\\x1dG\\xd9\\xe44\\x04\\x8f?\\x98\\xd77\\x16\\xd5\\xeeT\\xbfdI\\xa4B\\x03@\\x83?\\xd8\\x1f5\\x8f\\xd2\\x1a\\x9e?\\xdcK\\xec\\x95\\xe5=\\xa4?@\\x1ez<\\x18\\xb48\\xbf\\xc0\\x98\\xb38\\xb1\\xd7\\x81\\xbf\\x8c\\xbf\\xb8\\x8f\\x9d\\x85\\xa5\\xbf\\x00\\xfd\\xa0F\\xb5>;?\\xdcFN\\xd2\\x97\\x92\\xbe?\\xb3m\\xddJ4\\xa3\\xb4\\xbf\\x08\\xb1\\xb2E\\xcf\\xe3\\x87?v\\x18\\xed\\xc6|y\\xc1\\xbf\\xc6d\\x97\\x84\\xda\\x88\\xb9?8\\xa1\\x85\\xb9\\xd2r\\x9e?\\x08\\t1+\\x95\\x1d`\\xbfJ\\xc0e\\x1a\\xff\\xfc\\x92\\xbf\\x19\\x02?\\xc3!\\x9a\\x81?\\x10\\xd8\\xa4w\\xff\\x8a\\x7f\\xbf\\xda\\xbfk\\x16\\xa8\\xb7\\x98?\\n\\xb8\\x14@\\xc6a\\x91\\xbf\\x80\\xd0\\xb4wgrb?`\\xcf\\x0e\\xce\\xc7\\xc2\\x81?`P\\xed\\xc3\\x82\\xfeY\\xbf\\x18\\x9c\\x8f\\x03\\x1a&}\\xbf0+\\x19\\xf1\\xad\\x95\\x88\\xbf\\xb0c5\\x80u\\x01t? .\\xf0G$\\xed\\x82?j\\x87\\xccb\\x1fip\\xbf\\xc8\\x9e\\xa94\\x82bh?f\\xe17\\x0bEml\\xbf\\x12l6Q\\xefou?o\\xbf\\x0c\\xd0\\xaf4\\x80?,g\\x8c1\\xf97G?\\xa3\\xdeC\\xa7P>>?\\xce\\xbf\\xf0\\x0c\\x82Gs\\xbf\\xd8m>\\x06\\x03*Q?\\xc8\\xfd\\xc2\\xfd\\xb9\\x92[\\xbf.\\xde\\xee\\x18\\xf8\\x16}\\xbf\\xe6Q\\n\\xb61\\xcap\\xbf\\xd4z\\xf6\\xc9\\x0bPr?M\\x913\\xe1\\xf2\\x93f\\xbf\\xa5l\\xc9<\\xb4/c\\xbf\\rf\\xe3\\x16\\xadHU?jDd\\xfe\\xbe r\\xbf\\xc7]\\xd0\\x84s\\x0ey?\\xd2\\xb4/\\xc1S\\xb2J?Z\\xe6\\xb2Q\\xfe\\xcdP\\xbfL\\xab\\x19\\x82\\x1aB\\x83\\xbf\\xeff\\xf7\\x91\\x8f\\x9ff?\\x98\\xfaU\\x87L\\xf3Q\\xbfr\\x93E\\x9c{X6?\\x82V\\x0bm\\xacAD?\\x0e\\x90\\xdd2+\\xc0\\x83?\\x1c\\xcfG\\x88\\xac|m\\xbfh\\xddT\\xb6\\\\\\xc2s\\xbf\\x94F\\x05\\xe7\\x08\\xe6|?\\xbeqwCMQ\\x8a?\\xd4\\x0b\\x87\\xf7\\x8a\\x9d_\\xbf\\x005e\\x0bYZs?e\\xab?\\x13\\xa1x\\x89?So\\x18\\xf2x\\x9cq?z^\\xdb\\xcf\\x9f.k\\xbf\\x12\\xb1\\\\\\xb6$:\\x88\\xbf\\x81\\x82\\xbc\\xb4\\xce\\xcce\\xbf\\nR\\x9e\\xdb\\xcd\\x91Q\\xbf~\\xc8\\xd4\\xde\\xf9\\x1c\\x83?Z\\xfc\\x964\\x8b8{?4\\xb6^P\\xfd\\xf0z?\\xe7\\x04(\\x9b\\x90\\xf1h?\\x96\\x8a\\xb75\\xce\\x98i\\xbf`C1\\x83pvq\\xbf`Bd\\xe8\\x89i\\x96?\\xca\\x8f\\xce\\xd9\\x94\\\\\\xa6?\\xaf&\\xed\\x83P5u\\xbf\\xc66\\xa3e\\xedK\\x86\\xbf\\x12E2;(#\\xa0\\xbf\\xaa\\xc9\\x88\\xc0\\xc6\\x0f\\x98?\\x1a\\xd1\\x86\\x91\\x1c7\\xb1?\\xea\\xd8!\\x1f\\xa3O\\x9b\\xbf\\x0e\\xaa>]\\xafH\\x94?U \\x84\\x92\\xbbU\\xa8\\xbf4\\xa1\\x85\\xb9\\xd2r\\x9e?7\\x01\\xdd\\xfc_\\x1e\\xb9?\\x1e\\x8c~L:`P\\xbfX\\x08f\\x80\\xe9\\x9dm?kH*^F;\\xa2?\\x96\\xec\\xee\\'\\xb2ed?\\xd4r)j\\xb7\\xban\\xbfY\\xd4\\x0bd\\x90\\xb5\\xa2\\xbf8\\xb4}\\x93\\x00Wb\\xbf,\\xbb\\x89\\rU\\xab~\\xbfQn\\x04\\x86\\xbdl\\x81\\xbfh\\x0b\\xf35\\r\\x19*?\\x80\\x14\\x1c~\\x8a\\x1fx?\\x84C-\\x00\\x16U\\x90\\xbf\\x18\\xad\\xbf,\\x7f\\x95[\\xbf\\x9c\\x04\\xf4?\\x7f\\xd3i?\\xf4\\x9cK\\x02\\x1d\\xb4\\x89\\xbf\\xd6k\\xa7\\xf2\\xf6\\x17[?\\xd8\\xba\\x12]QGW\\xbf\\xb0\\xb8b\\xeeu\\xbe|?,\\xda\\x06\\x90\\xfc\\xfd<?\\xe4mH\\x99\\\\\\xf2G\\xbf\\xf4\\x7f\\xda9\\xeb\\xac\\x8d?\\x80P\\xaa\\x84\\xeb\\xc3.\\xbf\\x0c\\xd4\\xe3\\x99\\xbeoa\\xbf\\x8a\\x96$W(\\xea\\x91?\\xc7\\xde\\xec\\x1fR\\x0ef?\\x18\\xfe\\xf3\\xcb\\xa2.A?\\xc0\\xe2\\x1b:4\\xf2<\\xbf\\xf6\\xfa\\xc4\\xc6p\\x92[?\\xbc\\x14\\x07\\xc8K[4?\\xd4\\x98\\xc3P]V\\\\\\xbfx\\xbf\\xac\\xf2(\\x1aQ\\xbf\\xc0\\xe1\\xa3\\x11dUg?\\xeeZNDn\\x0bf\\xbf\\xb0\\x90\\xf3c\\x02\\x9b]?\\xa08\\x8d&\\xb0\\x16X\\xbf\\x00\\xd9l\\xbb\\x0f\\'F?\\x00\\x8a\\xb3\\x9c|\\xcd\\x08?\\xa2\\xbex\\x18(\\xfb-?\\xa0\\xf0g\\xb7f\\x1db\\xbf\\x8c\\x91\\t^\\xbb\\x17l?p$Cde{Q?\\xeb\\x83V\\x89\\x10\\x11t\\xbf\\x0c\\xfd\\xa2~\\xe3qb\\xbf\\xa0\\x80\\x9fm\\x9epN\\xbf\\x00\\x96\\xe4L\\x82?\\x1a?\\x04t\\'\\xc8Dsb?\\x88i\\x053)4>\\xbf\\x86B\\xc3\\xdeYqa?\\xc9|\\x1f#\\t]t?|n9x\\x9bbr\\xbf\\xc4\\xca\\x07\\x01STc?<\\x82-8\\xa6df\\xbf\\x9c\\x1c\\xb7\\xc5\\xb1<u?X\\x89\\xe7W\\x12\\xd2e\\xbf\\xcal\\x90|\\x9b\\x16Z?l\\xee\\x87\\x03c\\xa7D\\xbf\\xddoh;\\x86\\xf8P\\xbf8\\xfe\\x1b\\xb3\\xb0\\x1cn?\\xcc\\xd2\\x85M\\xeap\\x88\\xbf\\xe8\\xc8\\xc5!\\x03\\x12M\\xbf\\xc0\\x8d\\xa4;\\xe7\\x06B?x7L\\xab\\xf0_\\x8c?lOW\\xb2\\x14lo\\xbf\\xa4\\xd4\\xe5\\xb6m\\xdf\\x91?@p\\x91\\x13i\\xf9X?\\x16}SlWN\\x82\\xbf(\\x90\\xfa\\xf8\\xe4\\xf9\\x91\\xbf\\x08\\t1+\\x95\\x1d`\\xbf\"\\x8c~L:`P\\xbf,\\x9c\\xea7\\x18\\x91\\x90?P\\xd0\\xaa2I\\xcb_\\xbfR\\xca\\x86\\xc3\\x81 j\\xbf\\xee\\xeb?\\xa0\\xe9\\xbf\\x83\\xbf\\xc8c\\xc0p\\xca4U?\\xb6#\\xed\\xd95\\xd7x\\xbfO\\x03\\x9bbwLc\\xbf`\\xf39\\xbe8\\xccp\\xbf\\x92\\xd6\\xd9\\x05J\\xfcw\\xbf\\x14@\\xb6-\\xdf\\xf0Z?F\\x01W{O\\x05x?\\x16\\x95O\\x14\\xbfX\\x91\\xbf\\xaa\\xa5\\xa0\\x11\\xb2Ai\\xbf\\xc0\\xe0{E\\x0f\\rG?\\xde\\xe06y\\xdf\\x12\\x91\\xbf\\xa4\\xee\\xbf$\\xf6\\x11h?\\x80*\\xaa\\x93.E;?@%/\\xc2\\xfd^\\x8b?5\\xc1\\t\\x06\\xea\\x91=?T\\xd8\\'3\\x19r&\\xbf\\xb8\\x06y4\\x8c\\x9e\\x83?\\x10\\xf1sMy\\xc9D?\\x00\\xd725r,?\\xbf\\xe0\\x94\\x86\\xf3\\xee\\xec\\x84?HO\\x11\\xf1oTF? \\xa0\\xd2Cv\\x1bN\\xbf\\xe0\\xf3\\xf4eg\\xa5?\\xbfX\\xefp\\x83Y\\x9c(?<\\x05\\xcd\\xe4\\xd8l<\\xbf0\\x9f\\x88\\x0c\\xf7\\xddD\\xbf@=-\\x8d\\x05*l\\xbf\\xa0\\x95\\xa7\\xdc\\x99\\x00\\\\?\\xc0M!JC\\x1d2\\xbf\\x00\\x0c}\\xc7\\x0c\\xd3s?@B4i5\\xe8^?P]@\\x19\\xb8\\x9aJ?\\xac\\xab(\\xdfZtN?\\xbb\\x97}\\x85\\xd8\\x0eR?@\\xf1\\xdah\\x84\\x17g\\xbf\\x18\\xe6\\xa9Q\\xcd\\xebt?\\x00\\xf2?\\xd1\\x13-\\x0f?RO\\xbf$Y+q\\xbf\\x80\\xb3\\xa0\\x85\\x9e3\\\\\\xbf \\xc3\\xf7\\x9b):d\\xbf\\x18nb\\x0f\\xfa `\\xbfP\\x945N\\xbc\\xdeT?\\xe7&\\xcc\\x16\\x95xk\\xbfO&\\xb8Ku\\x94e\\xbf\\xb8`\\x8b\\xb6R:\\x82\\xbf\\xd8\\xf58e\\xe0Vr?\\xe0\\xab\\xc6\\xc4L\\xa5F\\xbf\\xc1\\xbb\\x92\\x95!\\xd1\\x83?\\xf8Q\\xber6\\'q\\xbf\\x94Hw\\xa4\\x86\\x19s\\xbf\\xc0h\\xfc\\xd2\\xae\\xe70?\\xc0\\xe0|\\xb8\\xe4vd?\\x89\\x8bwJ\\x99\\x93p\\xbf\\x10\\xae>)\\x192\\x81\\xbf\\xe0\\x04`\\xec\\xfc1t\\xbf\\xf4\\x0bS\\xfa\\xdf\\xc2a?\\xf8\\xcc\\xb7\\x17\\x97\\xce~?\\x88\\x81\\x9e\\x10\\x0bg\\x88?\\xe22\\xaa\\xecB\\x9b}\\xbf\\x18v\\xcb\\x90K\\xbb\\xa1\\xbfL\\xfb}\\x95\\x1fB\\x98?\\xaaS\\xb2\\xc6\\x84i\\x81?L\\xd0\\xd3\\x8ds\\xcf\\xa4?J\\xc0e\\x1a\\xff\\xfc\\x92\\xbfX\\x08f\\x80\\xe9\\x9dm?P\\xd0\\xaa2I\\xcb_\\xbfF\\xeb\\xbc\\xecT/\\xa9?E\\x16\\xe0I{\\n\\x86?\\xed\\xd5`\\\\{f\\x80?\\x84\\x7fV8\\x11&\\xa4\\xbf\\xc0\\xa8\\xc7\\xdaR\\x98c?8w\\x9c\\xdf\\x16\\xa4g\\xbf\\xf4A\\xd0\\xfe\\xb0\\x02x\\xbf\\x0c\\x08\\xc0\\x05\\xe9\\xabr\\xbfX\\x87\\x19\\xc59\\xc5n?\\xd0\\x7f\\xe7\\xb1\\xeap}?\\x83)\\xde\\xe3\\xd2Te?\\xa8\\xcc\\xb7\\xf7\\xee\\xa7e?\\xa1\\xcc\\xc6\\xbb\\x91[r\\xbf\\x10XC1\\xe5{v\\xbf\\n\\xda,(S\\xfbp\\xbf\\rw\\xb0\\x0c\\xe9\\xf6E\\xbf\\xeeB\\x1b\\x98Z$\\x82?\\xccx\\xfee\\xf0\\x188\\xbf\\x9e\\x7f\\x91\\xe5\\xebpg?\\x18R\\xe6\\xf0\\xba~s?y\\xfe\\xa3Fs`\\x17\\xbf\\xbb\\xca\\xd9\\x88\\x0eGZ\\xbf\\x06\\x95\\x1a\\xa8\\xdd\\tZ?e\\xaa\\x997\\xe4}\\x81\\xbf\\xd1\\xbaI\\xfcj\\xa2`?\\xb3\\xc0^0\\xbdLQ?%\\xf0~\\xa9x\\x8aA?\\x85i \\xd7\\xd4\\xe3\\\\\\xbf\\xbd\\x0e\\xbfd$\\x02c\\xbf\\xc8\\x1f\\x1f\\x15\\xe8\\xe33?r.\\x0b\\xfb\\xc1fh?\\x04\\xaa\\x10\\xac\\xbf\\xe7o?\\x8e\\x9e\\xc3Y\\xaaV\\x80\\xbf\\xb2D*WC\\xb5k?\\xb6\\xb1L\\x83Z\\x07S?\\x93\\xaaw \\x9bIP?\\x02\\x8amkc/C\\xbf8\\x95L\\x15\\xb3\\x80<?4\\xd3\\x12\\x85O\\x03A\\xbf\\xf15A\\x0b9\\x18v\\xbf(\\x8f\\xff\\xfe\\x94\\xb44?\\x81\\x0eu\\xf7\\xe4n\\x7f?\\x93\\xd3\\xb0\\x113\\x95y\\xbf\\x9e\\xa8\\x00\\x85\\x07\\x91c?\\xe6\\x80c\\xfd\\x94\\x01\\x80\\xbf\\x93-\\xe4/X\\xa2L\\xbfv\\x82O0\\xa3,$?7<`\\x01\\x8f_\\x80\\xbf\\xea\\x9ev\\xb5\\x90/d\\xbf\\xc2\\x82\\xebS:iG?\\x8fZ3n\\x8e>\\x85?A\\x92,a\\x9c2A\\xbf\\x1e\\xd5AT\\xcf\\xc4h?\\xf5\\x03\\x9d_\\xa5\\x80s\\xbf\\xf5>\\xf3+\\x06\\x8f\\\\?\\xe1!\\xa4\\x9b\\x06:U?Q\\xc9C\\x83IFs?\\xb2\\xd0;\\xc7*\\x00|?\\x9a\\xba%\\xb2\\x9e\\xd0p\\xbf!\\x87\\xe20U\\xf3r\\xbf\\xc8\\xb0\\x0c\\nm\\x07\\x8f\\xbf6\\x17\\xea\\xc6\\xe9\\x9c\\x92?\\xb3>\\xd5\\xef\\xa8\\x0b\\x8e?\\xab\\xa0\\x8c\\xa5!\\xff|\\xbfSe!\\x86\\xd9\\xbc\\x95?\\x91\\x0c_\\xe9)\\x16\\x91\\xbf\\x19\\x02?\\xc3!\\x9a\\x81?kH*^F;\\xa2?R\\xca\\x86\\xc3\\x81 j\\xbfE\\x16\\xe0I{\\n\\x86?|\\x97\\xb3\\xe2E\\xd5\\xa8?\\x13\\xc4we\\x02\\x91m??]k_\\xaa\\xd8\\x87\\xbf\\xc6\\x05\\xd8\\xe1\\xfeg}\\xbf\\xdc\\xc2g4\\x07\\xc4d\\xbf\\n\\xcf\\xf4\\x95^\\xe68\\xbf|\\x99yY\\x99\\xa9h\\xbfu\\xb9?\\xe3\\x00\\x05d?\\x84\\xfe%\\x88\\x95\\xde7\\xbf\\xa8\\xe4\\xa2\\x96\\xa3\\x12\\x81?NjE\\x82\\x99\\xc0G?\\x08\\xd3F\\xbd\\xea\\xede\\xbf\\x0cF\\x1a.1\\xa5|?\\xf8\\xd8\\xa1\\xeb\\xf3*C\\xbf\\xf0\\xa9\\x88\\xa8\\xd8\\x84^?\\xf0A\\xcc\\xc0nCk\\xbf`5x\\xb6\\xbe\\x9e\\x19\\xbfn\\x1e\\x8e*\\xb0\\xb40?\\x80\\xd8\\x80\\xb4A\\x1e\\x81\\xbf\\x94\\xd1\\xd9g\\xa6\\x83]?\\x18R\\x14\\xd2M\\xe2Y?@I\\xb7\\xf4\\x81\\x8c\\x83\\xbf.\\xd5\\x1c\\x88\\xa8Ni\\xbf\\x00HF\\xb3\\\\\\xbe8\\xbfT \\xa1\\xeb\\xf4\\xfeS?\\x86\\xea\\xd0qi*P\\xbfP\\xdb\\x9a-\\x11\\xd1\\x19\\xbf\\x80\\xad\\xc7\"3%L?@\\xd9a\\x9c\\x04\\xdaC\\xbfPdQ\\xbc\\xc8\\x80L\\xbf\\xd0\\xbc_\\xca\\x1d\\xc9V?\\x00Q\\x80\"\\xa8\\x95@\\xbf@\\x06ERy\\xc2M?\\xb0]\\xee\\x8e\\xc1!)\\xbf\\x98{;\\x08\\xfb\\xc05\\xbf\\xd4G|\\x96\\xbd\\x8b+\\xbf\\x00ho\\xa9\\x16S\"\\xbf\\xc0\\xd6\\xd9\\x1cZH<?\\x80Q`\\n\\x99\\n.?\\xcc\\xcf\\xa7\\x96\\x8fQ[?\\xc0_\\x049\\xa6\\xdeG?@Wp\\xa4e\\x05G\\xbf\\x00\\x16\\xfc\\\\\\x13\\x1b\\x00? \\xa8Q\\x1b\\xe1\\x9eP\\xbf qA\\xea1\\xd3A?\\x8c\\x8e\\xef\\x85\\xb1g??x?`\\x00\\x82\\'Z\\xbf\\x80\\xb0c\\x8f\\x12\\xa2!\\xbf\\xe8g\\xe0\\xd31@J\\xbf\\x80\\x9agk\\xe8\\x960? X\\x12\\x80<\\xd6R\\xbf\\x1c\\n9\\x91\\xc8A`?.\\xa3\\x0ec\\xb2V@\\xbf\\xa8\\xfe\\xe5\\xefd\\xb86\\xbf\\xb8 \\xd3\\xc8\\x9b\\xe1e?0\\x92\\x0f\\xa9{\\x87Q\\xbf\\x80C\\xdcI\\x18^Q?0\\xb59\\xb8f6v?\\xc0\\x87\\xc5g\\xc1\\xa8?\\xbf\\xc0Fa~\\xd6wS\\xbf;\\xf4\\xfa\\xeb\\x8c\\xddw?\\xd4\\xb8\\xfc\\xc3\\xcc3\\x99\\xbf\\xdc\\x17\\xcb\\x94=\\x9au?\\x108\\xe19\\x08:\\x87? _\\xf2\\xbd\\xe3a\\xa2?\\x10\\xd8\\xa4w\\xff\\x8a\\x7f\\xbf\\x98\\xec\\xee\\'\\xb2ed?\\xee\\xeb?\\xa0\\xe9\\xbf\\x83\\xbf\\xed\\xd5`\\\\{f\\x80?\\x10\\xc4we\\x02\\x91m?\\xd0\\x18\"A\\x07(\\x88?c\\xdd\\xcd\\x8b+\\xd2\\x81\\xbf\\xe4\\x1b\\xef\\xb6[g`?`\\x08\\xe3\\xbd\\x8d\\xca3?\\x007\\x87\\x85o\\x85\\x1d\\xbf\\x98\\x1b\\xb4\\x17m\\x91b?\\xc0\\xb0q\\x99l\\x8e)?\\xc0\\x7f[\\xa4)\\xd52\\xbft\\x84\\xff\\xa50y\\x88?\\x8e\\xba\\x0eXy\\xa4e?\\x14Ul\\x83\\xe6\\xe8c?t\\x87\\x9a\\xf8\\xa5\\xef\\x84?\\xf9\\x9b0\\xdb\\x11\\xb8b\\xbf f\\xb2\\xc1\\x0e\\x82@\\xbf\\xb0\\x9a\\xceUf\\x81\\x8a\\xbf\\x1c\\xd4\\x96y\\xc1\\xf7E\\xbf\\xde%j\\xe3\\\\9Y\\xbfdu\\xf8\\xcb\\x1f\\n\\x82\\xbf\\xc0\\xd04\\xa6\\xae\\xb5[\\xbf\\xc0\\x97\\x87\\xd9,\\x00.\\xbf\\x80\\x9b\\xda\\xec\\n\\x9do\\xbf\\xc2m\\xbeb\\x02\\xa3a?\\xf8\\xee5\\xd7\\xf8FV?\\xe2z\\x05\\xffK\\xcf]\\xbf\\x0b\\xa1~\\xa14*M\\xbf\\x00\\x06\\xa8\\xf0-<I?P\\x81\\xd5B]fA\\xbfrj\\x8b\\x10\\xa2\\x84u?p\\x08\\xb7\\x06\\xedeg\\xbf\\xf0\\xab\\xea\\xe9#\\x94Z\\xbf\\xb0G\\x7f_\\xdd<j\\xbf\\x00t\\xebT\\x94\\xf8\\xf5>\\xd4t\\xb5\\xcc\\xde\\xd9L\\xbf\\xe0\\xa4\\xac\\xe7uiK\\xbf\\xe2\\x9a\\xe4\\xe4\\x12\\xb28\\xbf(\\xf4.J\\xb6\\xdbs?`\\x90&Wb\\xb5\\x81\\xbf`\\xff#I\\x0f\\x82U?\\x8c\\xb1\\x19\\xcaf\\xa2m?@\\xf9\\x8e\\x1ea\\x87`?\\xe0ox\\x1c\\xb1\\xf7S?\\xc0E1\\x19\\xb76E\\xbf\\xdf\\x92\\x1b\\x9c\\xfd\\x88v?\\xacX\\xd0\\xadR\\x97V?\\xbeJ\\xbe\\xe3\\xf5\\x81O\\xbf\\x0c/>\\xbb\\xf9mt?\\xc0\\xa3Z\\x1d\\x028]?\\xa8\\xfc\\x93\\xdd\\\\\\xbbA?\\xff\\xa9\\x14\\x850\\x94\\x83\\xbf\\xa0~n\\xea8\\xd9P?\\xf8l27\\x12\\x8c\\\\?\\x10\\x869\\x8a\\x06\\x86t?,\\xf3\\xb3\\xc7\\x1e\\xa7C\\xbfZr&uf#7\\xbf\\xfc\\xe4\\x8b\\xc1\\x0f\\xebs?\\x00%\\x04\\xf5|\\xdf\\x8d?\\x08\\x88ehf\\xb7R\\xbf\\xaa*\\xb7B@B\\x83\\xbf \\xb1\\xcb\\x88xn\\x8b\\xbf\\xb8\\x01J?*:\\\\\\xbf\\x0c\\x1bx\\x958l\\xa2?L\\xc69\\x92\\x89\\x12\\x98\\xbf\\xcc5\\xcedg\\x97g\\xbf\\x8c\\xe4M\\xafx\\x12\\xa9\\xbf\\xde\\xbfk\\x16\\xa8\\xb7\\x98?\\xcbr)j\\xb7\\xban\\xbf\\xb0c\\xc0p\\xca4U?\\x84\\x7fV8\\x11&\\xa4\\xbf?]k_\\xaa\\xd8\\x87\\xbfc\\xdd\\xcd\\x8b+\\xd2\\x81\\xbf\\xbe\\xe4\\xea\\x00]a\\xa7?P\\xb5\\x86\\xa8V*R?|\\x7f\\x80\\xbc*\\x0fn?8\\x1c8\\xack\\tz?T\\x7f\\xab9\\xefY}?\\xd6P1_=\\x87s\\xbf\\xc0\\xce\\x80\\x95\\xd7\\xa9\\x87\\xbf\\x18>\\xf4\\xd4\\x8e\\x9c~?\\x10\\xd5\\xd7&\\xbevd\\xbf\\x80c\\xee\\xbei\\xc4G?\\x00\\x88G9\\x8b\\xcd??\\xa0[\\x9d\\xf26xP?\\x88\\x83\\x91\\xee\\x02\\x98g\\xbf\\x08g4\\x1at\\x82r\\xbf\\xce\\xb3+]\\xffL]\\xbf\\xd0PJ\\x005\\xa6\\x05\\xbf\\xa0-M\\x0c+.d?\\x00>0hlYi\\xbf\\xa0`\\x0c\\x84\\\\\\xc5W?\\x80\\xf4&\\xb4\\xd7_T\\xbfHquM\\xc2fM\\xbf\\x1cm\\x1f\\xcc\\xf2\\xe3f\\xbf0\\xf7\\x02\\x86;\\x03L?\\x1f\\x942\\x1e\\x0b\\x05N\\xbfH\\x13\\xb8i2\\xcdN\\xbf\\xd8\\xeen\\x1d\\x8d\\xce`\\xbf\\x80eB\\x93s\\xc8q\\xbf\\xa8\\x80\\x17\\x7fY\\x14`?\\xf0i\\x9fe\\xfe\\\\P\\xbf\\xa0Y+w\\n\\x02k?\\x80\\xdd\\xb8x\\x04\\xc2Y\\xbf\\x98\\xb6\\xa7\\xe4+\\xdeE\\xbfb\\xf7\\x8f\\xc5t\\x8bP\\xbfP\\x80\\xacL\\xd40@\\xbf\\xc0\\xbe\\x14Fq\\xf0i\\xbf\\xd0\\xd7\\x91d\\xb2$m?\\xb0\\xe8J\\xa4\\xf1\\x7ft\\xbf\\xc0G\\x9c\\xf6\\x87k*\\xbf\\x00\\xe8@\\xa0\\xf1\\x14n\\xbf\\xf0o\\xcfRM[k?\\xd0/\\xe7\\x92\\n\\xea[\\xbf\\x02=\\xf2(\\x82M\\x83\\xbfj\\xd5\\xc9y\\xefN`\\xbf^\\x00Tq\\xdb;l\\xbf\\xbc=\\'\\xe6\\xeeF~\\xbf \\x0f#\\xaf\\xea@\\x7f?\\x12\\xb2\\xa7Kc1f\\xbf\\x1c\\xdf\\xe1\\x96\\xecSl?0\\xa2\\x18\\xe0P5\\x7f\\xbf\\xe0_\\xfc\\xb7e\\xcaK\\xbf\\xd8\\x15X\\x0b\\xe1 z\\xbf\\xeae\\xcd\\xa9\\xd5Lk?,\\xd0\\x9b\\xfc@\\xb5}\\xbf\\xdc\\xb4pOak\\x99\\xbf\\x10dP\\x13@\\xa5{\\xbf\\xe0\\xbda\\x99O\\x8d=?\\xc0\\xab\\xa3\\xcdi;w?@\\x91\\xaa\\xaa\\x14$~??I\\xa5\\xcd7\\x86\\x89\\xbf\\x94\\x1dxa\\xa05\\xa6\\xbf\\x12\\n\\x8a\\x0e3\\x0e\\x96?0$\\xb9u\\x0e\\x92P\\xbf\\x90F;\\x7f\\x8f\\xc8\\x9b?\\n\\xb8\\x14@\\xc6a\\x91\\xbfY\\xd4\\x0bd\\x90\\xb5\\xa2\\xbf\\xb8#\\xed\\xd95\\xd7x\\xbf\\xc0\\xa8\\xc7\\xdaR\\x98c?\\xc8\\x05\\xd8\\xe1\\xfeg}\\xbf\\xe4\\x1b\\xef\\xb6[g`?P\\xb5\\x86\\xa8V*R?\\xf6\\xb8\\xd9l\\xb42\\x9c?l\\xb2p}\\x9bPh?\\xb0\\x8fX\\xae\\xb9\\xcd\\x82?\\n\\xc7\\xcb14J\\x85?@\\xf0\\xd6\\x1bMF6\\xbf\\xd4\\xa1Dwn\\xc1\\x81\\xbf@X\\xea-\\x90sK?\\xb0\\xa7\\x05\\x9b\\xd1A7?\\x00)\\xaa3\\xc5DV?(s\\x9c\\xe7\\xdeDi?P\\x89\\xbf\\xf1%\\xc4+\\xbf\\x00w\\xbc\\x10\\xb9\\xe6E\\xbfP\\xeem\\xc2&\\x96Y\\xbf\\x06\\x8e=\\n:\\x1e*?4n\\x9b\\x8doM\\x18\\xbf\\xd0}\\xdb]5\\x12U\\xbf\\xf8\\x08\\xd1\\x16s\\xc1B\\xbf\\x00n\\xcf\\x04\\x82$\\xff\\xbe\\x80O\\'\\xec@<;\\xbf\\x06\\xa2\\xe1E\\xca;\\\\?\\x00\\xb7\\xc5\\xc1\\xdfN\\x16\\xbf\\x90\\xd9@\\x08S\\xc4?\\xbf\\\\\\xbb\\x01\\x00Vc8\\xbft\\xe2\"\\x01v\\xb06\\xbf\\xd4\\xde\\xb9\\xf6\\x17gG\\xbf\\xf8\\xcc\\xefV\\xdc\\x88Q?`\\xf09\\xf7I.M\\xbf\\x05]\\xba\\xe0\\xb6\\x18p\\xbf \\x95\\x0c\\x9c`J4?\\x8c\\x92+\\xe6N\\x89`\\xbf\\xfc\\xa9h\\x8f\\xb6C6\\xbf\\xf0\\x1a}\\x87\\xac[2?\\x10\\x9eh\\xea\\xe2\\xd3%\\xbf\\x90\\xae#\\x0e\\xb7jR?\\x10\\xff\\x96\\xe2\\x0ciL\\xbf\\xa0\\xc7\\xc1~\\xcf\\xce6?(\\x7fl\\x95\\xcd\\xa4Y?\\xa0IY\\xa1\\x809Z\\xbfp^X\\xa3\\x80ij?0\\xc7\\x84\\xafy\\xe2@?H\\xd2T\\xfe\\xa5\\xeaM\\xbf\\x00Y\\x9b7S\\x1a\\xfc>\\x1d\\x93\\x89/\\xca\\x7f[\\xbf\\x10\\xa0\\xb5\\xe8\\x01k[\\xbf\\x90\\xb5\\xd8\\xa8l\\xf3o?\\xfa0\\xab\\xba\\x05\\x97U\\xbf\\x00n\\xf5\\x1c\\xc1G\\\\?\\x14\\x03\\x81M\\'!q\\xbf0\\xc8\\xaa\\xf1\\xa8\\x90F\\xbf\\x88Z\\xb5\\xf3\\xb2\\xbfS\\xbf\\x18\\xe5,g\\x96J4?\\'\\xd5\\xe7M\\x85T\\\\\\xbf\\x08Y\\xb1sR\\xabV\\xbf kg\\x8b\\x97Dx?\\x8c;R\\xf4\\x98,e\\xbf ~\\xae9:-\\\\?\\x90/9E\\xbf&w\\xbfN\\x8f\\x83\\xf7\\xa0\\xbf\\\\\\xbf\\x00\\x90d\\xbb\\xf2d7?\\x00\\xf3z\\x88w\\xfc3\\xbf \\xff\\xa4n)\\x9fK?\\xe0\\xfd\\xf5\\x17\\xa9Ef\\xbf\\x80\\xd0\\xb4wgrb?8\\xb4}\\x93\\x00Wb\\xbfO\\x03\\x9bbwLc\\xbf8w\\x9c\\xdf\\x16\\xa4g\\xbf\\xdc\\xc2g4\\x07\\xc4d\\xbf`\\x08\\xe3\\xbd\\x8d\\xca3?|\\x7f\\x80\\xbc*\\x0fn?h\\xb2p}\\x9bPh?\\x0c1\\xcd\\xe1d(j?\\\\F7c\\xf9\\xb7j?V\\x19\\x80\\xa7thg?\\xbcO\\xd9p\\x1d\\xf2Y\\xbf\\xb0\\xfblBs4q\\xbf`ZY9\\xea\\x9fh?(R.\\xb3\\xdc\\xb64?\\x00\\xd6\\xb4+m\\x12/?@\\x8d0Y\\xb9\\x08^?\\xa0n8z\\tES\\xbf\\x00!lsW\\x8eD?\\x80\\x98o8\\xa7r3?\\xb0\\x16XS\\x04)/\\xbf\\xdc\\x87`\\x0e\\xe0\\xd02?`c:\\x13i\\x0bb\\xbf\\x10r\\xaeH\\\\\\xc1Q\\xbf\\xc0L\\x1f\"\\xd8\\xd74?\\x80\\xec\\x0fEt\\x83X\\xbf@\\xe3i\\xd8\\xac}e\\xbf\\x80\\xa1\\x01\\xb1\\xcb\\xb3\"\\xbfpD\\x90_\\xc7\\xe0J\\xbf\\x80\\xc1\\xd7=m{\\xf6>\\x9c\\xc5\\xa4X\\x98\\xccY\\xbf\\x80\\xeb =\\xe5F9\\xbf\\xb0\\x18\\xf0k\\x90\\x90Q?\\xa0\"y\\x99\\x1d\\x87C\\xbf\\xb8\\xbe\\nj\\xb1\\ro\\xbf\\x10.N\\x9b?\\x03f\\xbf\\x10j\\xfa\\xebT\\xcfl\\xbf\\x80\\x98g.\\x89\\xd1#?\\x80\\xad\\xa5\\xce\\x1a\\x9b:?\\x10;\\xd2Z\\x11@!\\xbf@\\xea\\xdfZ@\\'U?@Hm\\xe75?M\\xbf\\xb0\\xc5\\x1fd\\xeb#c\\xbf\\x80\\xfd\\xc5\\x97{\\xd8a?\\x00\\xddt \\x08sD\\xbfP\\x9c\\xe0\\xeazbs?\\xc0\\'\\xc4t\\x1diY?\\x10\\xa6\\xc6\\x86\\xc5f[\\xbf\\xf8\\xa9\\xf0\\xea\\xdf\\x1cP\\xbf\\xd8(tQ\\thc\\xbfXT\\x93\\x9c\\xddCo\\xbf\\xf0~\\xafa\\x7f\\xd4z?\\xc0z\\xbd\\xd8\\x8d\\x0cT\\xbfp\\x8f\\xc5\\xb6\\x02\\x92n?\\xe0\\x15\\xcc\\x8c\\x8c\\xf9}\\xbf\\xc0\\xda\\xd5\\xfdn\\x0cb\\xbf\\x90\\xb4GB\\xed\\xf0@\\xbf\\\\\\x8cdq\\xe6|X?\\x1a\\xdb_3\\xc98r\\xbf\\xe8\\xe5\\x92\\xcc\\xd6Bs\\xbf\\xc0/\\x157#\\xcf|?\\xf8Q!\\xf0\\xaa\\xe2i\\xbf\\xa0N:`V\\xe9_?\\x80\\x9c\\n\\x1f\\xd7\\xa3z\\xbf\\x88\\xd5\\xcc\\xed\\xa6lu\\xbf@\\x86u0\\x06\\xf4{?\\xc0}\\x89\\x82}dh\\xbf\\xb0\\x95&\\xef~@n?0\\x04\\\\M\\\\\\x8b\\x8d\\xbf`\\xcf\\x0e\\xce\\xc7\\xc2\\x81?,\\xbb\\x89\\rU\\xab~\\xbf`\\xf39\\xbe8\\xccp\\xbf\\xf4A\\xd0\\xfe\\xb0\\x02x\\xbf\\'\\xcf\\xf4\\x95^\\xe68\\xbf\\x008\\x87\\x85o\\x85\\x1d\\xbf8\\x1c8\\xack\\tz?\\xb0\\x8fX\\xae\\xb9\\xcd\\x82?TF7c\\xf9\\xb7j?\\xd4\\xe0i\\xbf\\x95\"\\x87?\\x88\\xc8E<\\xf9(|?\\xf8Y\\x1cp\\x88Ke\\xbf\\xe8\\xeaG?\\xb94\\x84\\xbf\\xa8\\xaa\\x80\\xff\\x93\\xaf\\x83?\\xd2&\\xbc\\x13M;:?\\x88\\xcd\\xd6\\xbd\\x07f`\\xbf@(y\\x9d#\\xb9y?@\\x0f\\x8a\\xf2J\\xf1P\\xbf\\xc0\\xa2^\\'U\\xcfa?\\x88\\x12\\xea\\x8f\\x98\\x1bt\\xbf\\x1f7\\xe5<\\x0b\\x1bK\\xbf L5[\\xdc8\"\\xbf\\xb0R\\xfd\\x96\\xca\\x83b\\xbf| b\\xa8\\x7f\\xae_\\xbf\\xc0.$\\xcf\\x95\\xb7<? c8l\\xed\\x89n\\xbf\\xf2\\x8d.\\xbf\\xb1\\x13h\\xbf\\x002\\x00\\xb3C9\\xfb\\xbe\\xda&\\x8d\\xb7\\x8b\\x83[\\xbf?\\x81+\\x96\\x8e\\x1bN\\xbf>\\xcc\\xebm\\xb4\\x8d@\\xbf@Pc\\xe5\\xddv(\\xbf\\x00?\\xd8\\xe9\\xc3\\x93\\x0f\\xbf\\x00\\x9c\\x87\\xa5d\\x91\\x1d\\xbf$\\xf5\\xf7\\x0e1Qe\\xbf\\xd0}\\xbf\\xf6Zf^\\xbfH\\x1cU\\xec\\xfc\\x10h\\xbfH\\x7f\\x8a/\\xa9}@\\xbf\\x10\\x9d=\\x83\\x03\\x9f:\\xbf\\xf4\\x97\\xb0\\x18#(A\\xbf\\xe0\\xba\\x8d\\x06;\\x0eI?p\\xa4C\\x93Vw`\\xbf\\x8c\\xa8\\x06;\\xb8hq\\xbf\\xf8\\xf5\\x15\\x92\\xc4\\x85k?@\\xed\\xe9O\\xdc\\x025?\\x88\\x9d{\\xdb\\xc8gp?\\x00\\xf2\\xf4\\xae]\\xc6\\x10\\xbf\\xb2\\x111\\xf2JUq\\xbf\\xa8)\\x9b\\xe8\\xb3JB?\\xfe\\xf1\\xae\\xafy\\xebg\\xbf\\xb8\\xaf\\xd4\\xf2j\\xfaW\\xbf\\xd0\\xb00s\\x0fks?\\xb0_f\\xbd|>j\\xbf\\x80E\\xdc\\xfd\\xd2\\x84?\\xbf(6\\x02\\'\\xd80r\\xbfpB\\x9b\\x9d\\xd2\\x9bX?6\\xb1\\xcd\\xcb8\\xf0f\\xbff\\x8b\\xd2|\\x063U?\\x9fS\\x89[\\'\\xc9w\\xbf\\x08P?\\x14\\xf7\\xd5s\\xbfx\\xe7d\\x08\\xe6\\n\\x81?\\x98~e\\xba\\x1c\\xc1b\\xbf\\x00\\x02m\\xc90\\x96H\\xbf\\xa0\\x8e\\xbd\\x8dt\\xbb|\\xbf>\\xf8\\xc9\\x1c\\xf3\\xa0\\x80\\xbf O\\x8bm:\\xb5o\\xbf\\xf0W~\\xb3\\x9e\\xebm? \\x98\\x12\\x9d\\xa1\\x1aQ?\\xc0\\xf4v\\xd9arP?`P\\xed\\xc3\\x82\\xfeY\\xbfQn\\x04\\x86\\xbdl\\x81\\xbf\\x92\\xd6\\xd9\\x05J\\xfcw\\xbf\\x0c\\x08\\xc0\\x05\\xe9\\xabr\\xbf\\x7f\\x99yY\\x99\\xa9h\\xbf\\x98\\x1b\\xb4\\x17m\\x91b?P\\x7f\\xab9\\xefY}?\\x08\\xc7\\xcb14J\\x85?V\\x19\\x80\\xa7thg?\\x88\\xc8E<\\xf9(|?\\x82\\xd2P\\xf4\\xeb\\x9e\\x85?\\x00\\x88\\xd0\\xcf\\x17\\x18a\\xbf\\x9a\\x8c<\\xaf\\xaa\\x87\\x81\\xbf\\x80v\\xdaF2\\xb2<\\xbf\\xaeZ\\x0cX&\\xa61\\xbf\\xa0\\x9eT\\xc5\\xea\\x18K\\xbf0\\x1a\\xf0\\x023Xj\\xbf4\\xc5\\xe6n^\\xe2F?\\x00\\xf3i\\xef<\\xa3\\x11\\xbf\\xf0i\\xc3xj\\x13b?\\x0c\\xdb0\\x07\\x14\\x95:\\xbf|\\x046\\x03\\x0e\\x02\\x1e\\xbf\\x00\\xa4R\\x8a\\xf6pk?@w\\x1f%\\xcb\\x8d:?\\x00$)\\xef\\x19\\xf1\\xe3\\xbe\\x00OG!\\xf3vT?\\x92b\\xb9\\x11\\xb2\\x10_\\xbf\\xa0\\x9c\\x91v8i1\\xbfv\\xebS\\x8b\\x9d\\x87S?\\xe4\\xec&r\\x11\\x883\\xbfX\\xa3Qm\\xfaq??x\\xab\\xe1=MP[\\xbf\\x9c\\xdcF.Uwa\\xbf\\x0c\\x83\\xfc\\x9d\\xb3fd?|\\x03\\x8a\\x7f\\xc2\\x01e?\\xa0{\\xc2\"\\xf2P[?\\xe0r\\\\XZ\\xaaC?\\x80\\x82Cr\\x9c\\xa7\\xf2\\xbe\\x08\\xf8\\x1e2\\'\\xe7C\\xbf0Z$\\x9b\\xeb/\\x0b?@\\xa1\\x1au\\x00\\xcfP\\xbf -\\xc5@U&d?0\\xda\\xf1\\xa7\\x1e\\xd4`\\xbf\\x00\\x89\\xc7\\xc1\\xe3\\xcbR\\xbf\\xb0\\xad\\xe0\\x85\\x8c\\xb3H\\xbf\\x00u\\x15\\xad\\xcd\\xc08\\xbf \\x03\\x84\\x15\\x15\\xa5F?P\\x83qr\\xd3:e\\xbf \\xaa\\xbb\\x0c\\x85y\"?\\xbfg\\x8e\\xd9\\x04\\x9b[?\\xd4\\xd6clr3V\\xbfP\\x85\\xa9\\xf8|\\xe9i\\xbf\\x18\\xf0\\xcf\\xc0\\xd5\\xe8M?\\xf0\\xc1\\xc4\\xc9&\\x7fC?\\xe0\\xa5A\\xf8\\xe9\\x17j?\\xa0a\\xf8\\x0e\\xd7->?yzU\\xd4\\xb8>e\\xbf\\xa0\\xd8\\xc6&\\xdf\\xdeC?\\xb7\\xeb\\xc5\\xebc\\xa3Y?\\x88{Sr\\xb7\\xcdh\\xbfP\\xe7\\x15{zW\\x80\\xbfL\\x13,\\xac\\x1a\\xb0j?\\x80t\\xb5\\x82\\xdf\\xa29?`\\xd8\\xa2\\xf9\\xf8\\xf9\\x81?Q\\x01\\x86\\x08L\\x0bq?\\x88\\x14\\xc7\\xd9\\xed\\x0b\\x83\\xbf@B\\x83\\xf3S\\x10s?h\\xd7\\x12\\xfc\\x8add?0\\xd9@,\\t\\x87\\x89?\\x18\\x9c\\x8f\\x03\\x1a&}\\xbf\\xa0\\x0b\\xf35\\r\\x19*?\\x0c@\\xb6-\\xdf\\xf0Z?X\\x87\\x19\\xc59\\xc5n?u\\xb9?\\xe3\\x00\\x05d?\\xc0\\xb0q\\x99l\\x8e)?\\xdaP1_=\\x87s\\xbf@\\xf0\\xd6\\x1bMF6\\xbf\\xb4O\\xd9p\\x1d\\xf2Y\\xbf\\xf0Y\\x1cp\\x88Ke\\xbf\\x00\\x88\\xd0\\xcf\\x17\\x18a\\xbf&x\\x1ek\\xae\\xe2i?\\xc0\\xd0j\\xab\\x8d\\x02n?\\x00\\xcd#C\\x12\\xf4e\\xbf*.W`8\\xeaB\\xbf\\xc0\\xb3\\x0b?:\\xfeL\\xbf K\\x06\\x97\\xc2ah\\xbfp\\r\\xd5\\xf9\\xa3\\xee]?\\xc0\\x85-Q\\x1f\\x0f@?\\xa0SZ!\\xba\\xeaY?\\xd0\\xa8\\xabr=o\\x1c\\xbf\\xf6\\xe9_\\xb4@j9\\xbf \\xe8\\xbc{\\xff\\x17e?h\\xfe\\n\\xb0\\xc4\\x01Q?\\x00\\x96\\xc5\\x1a\\r_,?\\x000\\xb4\\xad0\\xdf\\n?\\xb0X\\x16C\\x96\\x99[?\\xc0\\xb1\\xcb;\\xd2\\xb43\\xbff\\x94=\\xcf\\x7f\\xc6a?\\xb0\\x92\\xb1X\\xfb\\x0e2?\\xd4Y\\t\\xd8H\\xb1S?@\\x10\\x01:\\xbf\\x80=?\\xa87\\xcd\\xcf\\x1fQe\\xbfp\\x84>u\\\\\\x0cc?@_>p\\xf3\\x95x?@H\\xc8\\xea\\x08\\xael?\\xe0.\\xed/\\x95#l?\\x80\\xd7\\xc0\\xa7-\\x004?\\x10\\'\\xfb\\xe4\\x99AL\\xbf0$\\xec\\xd68\\x18\\x19?P\\xcc\\xb8\\'\\x97\\x0be\\xbf`w\\xb7\\xcd\\x86(q?\\x80R\\x05\\xd7\\xfc,5?\\xc0\\xce\\x98c\\x18zl\\xbf@\\xf0\\xc5\\xda!}:?\\xc0\\x9b1\\\\ \\xa9q\\xbf\\x00*\\xf1\\x83\\x18\\xa6\\x1e? \\xd6\\xb0s\\xf0\\xd4b?\\x00\\x8aO\\x9d\\xa7@??J\\xaf\\xde\\t\\x0eVn?<u\\x12\\xf2\\x08\\xe4q?8\\x16\\x00R\\x91\\x05\\x80\\xbf`\\xceI\\xf7Q\\x1db?\\xb4i\\x82\"\\xcc\\xafq\\xbf(\\xa1s}\\xb3^\\x81? \\xed\\xe8h\\x03\\xfcY?\\x8e\\xd8$\\\\\\x97vQ?,{\\xd4\\xb5\\x94\\xf3a\\xbf\"\\x1e\\xd0H\\x1d\\x86q?\\xc0z\\x08\\xfd\\x86-d?\\xa0\\xe9\\x983\\xc6{\\x8b\\xbf }\\'\\x12\\x13\\x9cu?\\xa0P\\xc0\\x15]\\xb4V\\xbf\\xa0\\x82<\\x7f\\xab\\xc1\\x8c?\"\\x1b\\xa3\\xf0\\xbe\\x11\\x7f?P\\x01F\\xcd\\xc0\\xa7\\x89\\xbfp\\xae\\xf8\\x84\\x0c\\x00~?H\\x0e\\x08\\xf1lXl\\xbf\\xc0\\x04E\\x1f\\xb9T\\x94?0+\\x19\\xf1\\xad\\x95\\x88\\xbf\\x7f\\x14\\x1c~\\x8a\\x1fx?F\\x01W{O\\x05x?\\xd0\\x7f\\xe7\\xb1\\xeap}?\\x88\\xfe%\\x88\\x95\\xde7\\xbf\\xc0\\x7f[\\xa4)\\xd52\\xbf\\xc0\\xce\\x80\\x95\\xd7\\xa9\\x87\\xbf\\xd4\\xa1Dwn\\xc1\\x81\\xbf\\xb0\\xfblBs4q\\xbf\\xe8\\xeaG?\\xb94\\x84\\xbf\\x9a\\x8c<\\xaf\\xaa\\x87\\x81\\xbf\\xb0\\xd0j\\xab\\x8d\\x02n?\\xd0\\xa0\\xd7\\x7f\\x9a\\xdf\\x8c?\\x07e\\xaf\\xb2\\xfc\\xf6\\xc7?\\xc7\\xfe\\x99\\xd9\\xad\\xc0\\x9b?\"\\x10\\xea\\x14\\xd5s\\x9e\\xbf\\x087Q\\x05\\x9f\\xe2\\xbc?\\x0814<-\\x95\\x89\\xbf<\\xec\\x11\\xf7\\xc2\\xcdp?\\xbd\\xe3\\x9a\\xd5z\\xa3\\xc0\\xbf\\xd89L\\x19S\\xf9\\x83\\xbf\\xe0\\xc7\\x05\\xd74[G\\xbf \\xb4\\xfd\\tln\\xc0\\xbf\\xccV\\x84a\\xd3\\xa7\\x8a\\xbfp\\xba \\x8a\\xe2\\x8d\\x9f?n|#)\\x1e\\xa8\\xc0\\xbfN\\xd1Vx\\xf6\\xa2O\\xbf\\xc6\\xb8\\xcb\\xa3\\xb6\\n\\x8f\\xbf\\x1c\\xf2\\x8b\\xfaK\"\\x8b?\\x03\\xdd\\x07n\\x1a\\xa3p\\xbfz2\\xfa\\x0b/*\\x89?-\\x93\\x7f\\x1a\\x1e4\\x9a?,c\\x0c\\xa8Hk\\x92?\\xc8&\\xcbK7b\\x82\\xbf\\xee\\xccd\\x022\\xd4\\xa2?`Vt\\xbak\\x9b\\x86\\xbft\\xc4\\xf8\\x1d\\x0e \\x88\\xbf`\\xe7<\\xf6o\\xe0k\\xbf \\xb7\\x7f\\x99\\xe1Kz\\xbf\\xa1\\x0e>i\\x99\\xd0\\x82\\xbf\\x00\\x90\\xeb\\x1d\\xe9LQ?Iy\\r\\xf0x\\xff\\x82\\xbf\\x00\\x08h\\x1a\\xed\\x89J\\xbf\\xbb\\x83|OR5\\x8a?\\xb0\\rma\\xe5)|\\xbf4\\x19Dt\\xfc\\xb2\\xa9?M6\\x06\\xac\\xfcl\\xa4?\\x88\\xdaq&\\x9b\\x14E\\xbf\\xc8\\xc2\\x8c\\xf4$\\xba\\x94?\\xf0\\xc6\\xe9>\\x152f\\xbf\\x94e\\x16>\\x86\\xe9\\x96?\\x00\\xbb\\xac\\xfb\\x15\\xb5(?6\\xb2\\xce\\xb4\\xae\\xb7\\x90\\xbf\\xc8W\\x12>\\x8e\\x18\\xa4\\xbf\\x14?!\\x84\\x95\\x1a|?#\\x8f\\xbc3\\x83\\x04\\xb1?\\x80\\xe42\\xc2\\xfa~\\x8a?\\x08\\x8d\\x9d\\xa8\\xaf\\xee\\x97\\xbf\\x18\\xaa\\xeb\\xf3E\\xffr\\xbf\\x88\\x003\\xdc\"/\\xa5\\xbf@\\x1d\\xc0bpo\\x80?\\xc0aP*+[\\x90?p\\x19\\xb9S\\x9c\\xef\\x87?\\xc0@\\x1fD\\xfaWm?L\\x1e\\x06G\\xa8\\x12\\x8a\\xbf\\x80\"?\\x02\\xf1\\x16\\xb2?\\x10Y\\xed\\x03\\xf8\\x98\\xa2\\xbf\\x02\\xf2\\xc2\\x95\\x9cX\\x9e\\xbf\\x9c\\xcaX?\\x1a\\x8e\\xb3\\xbf|\\xd9\\xcb5%\\x13\\x97?\\xa6\\xb0\\xfbOPS\\x8c?@\\x87\\xa6\\xcc\\x05\\xd3\\x83?B\\xe4\\xc7a/5\\x98\\xbf\\x1fb\\x0cFJ\\xbb\\x92?hA\\x8f\\xce\\xaan\\x94\\xbfy\\xeb\\xf2\\x14\\xcb\\xee\\x9f?\\x80\\xf4\\xb0\\xd3Q\\xe5D\\xbf\\xc0\\xf2\\xc7,J!P\\xbf\\xc0\\xf3U\\xa6 \\x1ak\\xbf4\\xf8\\x95\\x11/\\xd3~\\xbf\\x08\\xfc\\xcf\\x9e*Sz?01\\xa3\\xbf\\xf4l\\x83?\\xc7\\xfe\\x99\\xd9\\xad\\xc0\\x9b?\\xda\\xcb\\xf7\\xee\\x0e\\xf1\\x93?\\xe4\\x8a.\\xef\\xb2l{?*}\\xaa\\xef\\xfb\\xbf\\x8a?\\xbcH\\xc0\\xd8\\x90\\xc8\\x7f\\xbf\\xf1\\x03\\xeaC\\xe2\\xdcw\\xbf\\xf0\\xc8\\xb0\\xdc\\x93\\xec\\x92\\xbf.\\xc5\\xc8u\\xd1\\x01r\\xbf\\xe3\\xc3\\x17\\xcc\\x904R?\\x88]\\xf7\\x8d\\xa0s\\x97\\xbf\\x8e\\xae\\xc9\\xcc\\xeci\\x89?\\xd5V\\xb7\"\\x00\\x14t?\\xd4\\x86\\xc9\\xe6\\x9e\\xda\\x9a\\xbf\\x0b\\xc4\\x95\\xc5Ndr\\xbf\\xd6\\x9f\\xf2\\xac\\xbcYX\\xbf\\x08\\xf8\\xa9{\\x01\\xe3#?u\\x813\\xf1p\\'q\\xbf\\xa9ou\\xbd(_`?\\xfe\\x9d9C\\xfc\\xb6\\x83?f\\x87R\\xde\\xe7\\x1f\\x80?\\xc7\\xccs)\\xb8\\x96z\\xbf\\x06\\xca\\xf2\\x89\\xf5\\xd3r?%m\\x17s*im\\xbf2\\x0e\\x8c\\xe8}$l\\xbf6I;\\xc7\\xf0\\xb4>?\\xae4]-\\xe4\\xa1m\\xbf\\xee\\x88\\xba\\xf2\\xd6R@\\xbfYbA\\n%\\x11`?\\\\\\xc4\\xd9\\x11\\x1b6r\\xbf\\x90\\xa7\\xfe\\x13_C*\\xbf\\xa6\\x07n\\xb9Y3o?\\xc0\\'\\x02\\xe2\\r\\x0ff\\xbf\\x1asi\\x87\\xc3q\\x84?N\\xdd>B\\x16\\xea\\x80?cF\\x1dx$\\xf5j?\\x80\\xf8?\\x90\\x19{\\x17\\xbf\\x08q\\xa8\\x9a\\x91ZU?O\\x0bF][\\xb9\\x87\\xbf\\x12]v\\xd3.\\xb2H?\\xdd\\xa1\\xf2\\xa4k\\xcdk\\xbf\\x8e]\\xcc\\x06\\x01Ge\\xbfn\\xe378\\x97uc\\xbf\\xda\\xd8\\xd2\\xd8)\\x8a\\x7f?\\x92\\x8a\\x15)\\xe5\\xc9h?\\x8a_\\xdd\\xa0X\\xe4t\\xbfJ\\xca\\x12\\x06E5}\\xbf7#}FNL\\x8c\\xbf\\xe9Es\\xe3\\x94\\x98\\x8e?\\xc4\\x11_\\n-Q]\\xbfO\\xf0\\xf5\\x0c\\xcd\\xf5{\\xbf\\x8eEf\\x84\\xfd\\x94{\\xbfI\\xf3%\\xc1\\xbd\\xd7d?\\xfd6\\xdc^\\xc0\\xca\\x9d?k\\x1c\\x1an\\xccn\\x92\\xbf\\x03\\xb1\\x0c\\xf0\\xb1\\xe7Z\\xbfR\\xe8u\\xa4\\xf4Y\\x9a\\xbf\\xfb\\xd6)X(\\xb9\\x8b?Z\\xae\\xcc\\xd8<\\x0c}?\\x80\\x18\\x0e\\xcb\\xe0\\xb1c?\\x83S\\x0e\\xb5F\\xdcG?\\t\\x97N\\xb64T\\x7f?\\xab\\x00(\\xf9\\xbaQ{\\xbfH\\x8f7;x\\xb0a?Ib\\x9fTt\\xa8T\\xbf\\xdd\\xad\\xdc\\xfe\\tYR\\xbf\\xd6 \\xf6b\\xad.X?\\xaci\\xe9\\xe5 \\'y\\xbf\\xc0\\x05f\\xe0-9d?\\xdf\\xdb\\xc5\\xc3\\xc2,h?\"\\x10\\xea\\x14\\xd5s\\x9e\\xbf\\xe4\\x8a.\\xef\\xb2l{?@\\\\\\x0f\\x15m\\x1a\\x9e?\\xf0T\\x9b^\\xcc\\xb1\\x9a\\xbf\\x80\\x88(\\x92\\xfb0d\\xbf\\xa0\\xdb\\x04\\xbf\\x8b\\xfc\\x84\\xbf\\xaa\\n\\xa76\\xb6\\x8d\\x9a?L*\\x1e\\xf9\\xed\\xd2R\\xbftb\\xefB>hV\\xbf\\xa6\\xcb\\xf7\\x10\\xec\\xcf\\x96?\\x80\\xfe\\xa8\\x9b[\\x91*\\xbf\\xb4\\xa95\\x05\\x11\\x94`\\xbf\\x9e>\\x99\\xef\\xd4-\\x93?a\\xf6\\x86[\\x97\\xc2R\\xbfR\\t\\xd4\\x7f\\xa3wh?\\x04\\x04\\xe5\\xa2\\xc9xu\\xbfa=,\\x98MaQ?\\xfe\\x04\\xb9R35m\\xbf\\x00\\x06\\xf9\\xbdxRk?@fe\\x0e6\\xda}\\xbf\\xd0\\xc5P\\x854\\xdcz\\xbf\\xb6Y\\xfe\\x97\\xe1\\x06\\x8e\\xbf\\xf8~\\xb6\\xc1\\x8a\\x03v?\\xa8K\\xf5\\x9e\\xf3\\xecp?\\xd0r\\xbfr\\xec2d?\\xc0\\xc0\\xe2\\\\\\x8a{\\x1f?\\xd8\\xb3}\\xd7x\\x18_?\\xb8\\xc8\\xbb\\xff\\xf9\\xf5p\\xbf2\\xad\\xa2\\x13+\\x95a?\\x80H@d\\x88eb\\xbf\\xeaC\\xf6z\\xb1\\xc8f\\xbfX\\xedB\\xc8}1p\\xbf\\x1ci\\xb0\\x03:\\xa3\\x8b\\xbf\\xbb\\xea 3+\\x8cz\\xbf\\xea\\x15\\x86<\\xda\\x1ci?\\x88\\xa7\\xe6l\\xde}i\\xbf`\\x1f\\xb5\\xa7\\xfd\\xd82\\xbf\\xa8\\xf2\\xd3\\xe2\\xd9\\xd5y\\xbff\\xdf\\xb2\\xfb\\xb3tx?\\xc4d.N\\xf4\\x8dd?j\\x91\\xc7\\n\\x1e\\xd1\\x80?\\xe6r\\x91\\xcd\\x85\\xaf\\x80\\xbf\\xce\\xde)\\xbdS]\\x93\\xbf\\xb2E~[\\x00_\\x80\\xbf$R2i\\xb7\\xc6q?\\xed\\xdb\\xeb\\xf6\\x9d\\xb5h\\xbf\\xfc\\x9c\\xb4\\xff\\x86\\xfd\\x83?\\x18\\xc4\\x11\\x86\\x08U\\x82?\\xde\\xf9\\x03\\xdd0\\xef\\x86\\xbf\\x80s|\\xfb\\xd8\\xb6i\\xbf\\xc8\\xea\\xe9\\xf6\\x10\\xc3\\x84\\xbfu\\x13\\xd7sX-\\x87?`(~/\\xbf\\xe9\\x94\\xbf\\xe05@\\xfe\\xb4\\xf3z?P\\xcd\\xd6\\xfa\\x97\\xef\\x8b?\\x90\\x05\\xe0\\xca\\xa8\\xec\\x96?p\\x834tR\\x0fp\\xbfP\\xc2\\xfa$\\xb39P\\xbf\\xdc\\xca\\xc9\\xe1\\xe7\\x0fx\\xbf\\x90\\x10\\xd9X[\\x8f\\x8c?\\x00\\xb1\\xd3\\xc3\\x1c\\x0b\\x16?\\x8c\\xd1\\xa4\\x88x\\x17y?\\xec\\xaek\\xf5\\xcf\\xf0\\x89\\xbf(7\\xd7\\xddp\\x18n?\\xac\\xe3j\\xbey\\xacc?\\xb8\\n\\xd9h\\xdcrm?l#\\x17\\x8c\"Sl?\\xb4{O\\xf7\\xd5\\xf5m\\xbfp\\xd4\\x00\\x88\\xd8\\x8dr\\xbf\\x087Q\\x05\\x9f\\xe2\\xbc?*}\\xaa\\xef\\xfb\\xbf\\x8a?\\xf0T\\x9b^\\xcc\\xb1\\x9a\\xbf0\\xb2F\\x02\\xc4G\\xc6?\\x13^\\xb7{\\x0f\\x83\\x8d\\xbfU\\x05~{7\\x10\\x96?\\xfa\\xa5\\\\\\xcc2\\x14\\xbe\\xbf.\\xeem\\xf9\\x0e\\x16\\x8c?\\x9e\\xffj\\x96\\xea\\x00t\\xbfB_\\x1d\\xc5\\x89!\\xbd\\xbfp\\xf8\\x00\\x03b\\xaev?\\xeaX<Ve\\xf5\\x95?\\xdb\\xc0R\\xe7\\xb8X\\xc0\\xbf\\xe3/\\xa1\\xe4{\\x0e\\x83?X\\xb7\\xbe\\t\\x87@\\x95\\xbf\\xfc\\xc8!\\x99:\\x91\\x8a?@\\xf9I\\x8eh\\xe85\\xbf|\\x12\\xfbX3\\x1c}?\\xba\\xcc\\xa8\\xe9-?\\x9c?\\x00\\xdej\\x9e\\x03\\x12\\x94?T\\xd5e\\xa5\\x9e\\xae\\x82\\xbfD\\xa61@d\\xff\\x90?\\x9c\"z\\x11\\xe7\\xb0\\x92\\xbfpF\\xeb\\xf9g\\x0c\\x91\\xbf\\x90V\\xbf~\\xfb2B?\\xe0U\\x85m\\xfa\\xe4R?\\x12\\x18\\x9a\\xd0_Y\\x84\\xbf\\xb0$t\\x9a\\x87\\xb4|?7\\xb3\\x06\\t\\xe5=\\x92\\xbf\\xe4I\\x8a\\xb4\\xa8\\x87\\x8f?\\xdc0\\xfb\\xcf\\xc9\\xca\\x98?\\xa0\\xf7\\xfd\\x11p\\xc2r?tN\\xe9\\xd2\\xf7\\xde\\xac?\\x80\\xbe\\x06{T\\x12\\xa2?\\xf6\\x84\\xbfS\\x0c`z?z\\x99R\\xd3$\\xfb\\xa0?`\\xd9\\x8b\\x97\\x08\\xf0[\\xbfZo6^\\xe2\\x86\\xb0?\\xe8W\\x9d\\xa7L\\x15z?\\x0eP\\xdb\\xbe\"\\xf8\\x7f\\xbf\\x00y2\\x18nV\\xa7\\xbf\\xa2\\xb3y\\x1b\\xe6,\\x81?B\\x99\\xd8\\xde/\\x05\\xaf?X\\xad@r\\x81\\xbcz?<C]\\xc98c\\x9d\\xbfDo\\x89\\x88\\xd3\\rM\\xbf\\xd0\\xa4\\x0ex\\x85\\x19\\x7f\\xbf\\x0061\\xdcU6e?\\xa4\\x9aX\\xea\\xc2\\xa7\\x92?\\xb0K\\x86k&\\xc4\\x99?\\xc0\\x1fo\\xb9a\\xc1o\\xbf\\xaa\\x81y\\x9c\\xa7P\\x99\\xbf\\xb0h\\xd2\\x94\\x9b*\\xa4?h\\x97\\xb6\\x17\\xbd\\xfe\\x9a\\xbf\\x98\\x15\\xc4,\\xb4\\xb0\\x98\\xbfP\\x82\\xd1\\xd7\\x998\\xae\\xbf\\x8cR\\x16;6J\\x95?\\x90{Rk\\xcbWv\\xbf@\\xb5\\x04Fl\\xb9t?|\\xea\\xaa}oJ\\x99\\xbfp~f;\\x7fcR\\xbf`I\\xdb\\xd8\\x9f\\xd4\\x8a\\xbf\\x8ag\\x83\\xef\\xc1\\xc2\\x96?\\x00SV*\\x82\\xd0c?\\x80NoX\\xa7\\xd1T\\xbf\\xf8\\x8c\\xaa\\x86G\\xcd\\x82\\xbf@\\xb0\\xcc}e\\xc0i?\\xd8\\xae\\x86l0ku?\\x00\\x1a\\xbeK\\x0b\\xf6H?\\x0814<-\\x95\\x89\\xbf\\xbcH\\xc0\\xd8\\x90\\xc8\\x7f\\xbf\\x80\\x88(\\x92\\xfb0d\\xbf\\x13^\\xb7{\\x0f\\x83\\x8d\\xbf0\\xec;\\x8e\\'\\xe4\\x88?J\\x15\\x16ve5\\x80?\\xf6\\x97z\\xd7f\\xce\\x85?X\\xcd\\xce\\x06\\x1a:Z\\xbff\\xc0\\xeb\\xeei\\xa3S?\\xa6\\xdenB;\\xa7\\x92?\\xac\\xdaV\\xca\\xdf\\xec`\\xbfv\\xce\\xf6=<\\xcf[\\xbf~&\\xecPJ5\\x8a?\\x1b\\x99W\\xce\\xb2P\\x82?\\xfb\\xa2B\\x1d$\\xcbV?\\xe8\\xe9\\xddK\\x1e\\xb7U?s\\x05\\x1b}\\x83rN\\xbf\\xbc\\xea\\xc8\\x06\\xcc];\\xbf$B)\\xa8M`^\\xbf\\xb2j\\x1bG\\xba8w\\xbf\\x8c\\xbf\\x0b\\x05\\xff\\x87k?\\x91[\\xae\\x9d\\xbf\\x82\\x83\\xbf\\xb6\\xf9=:\\xe6\\x0b}?XH\\x8b/R(J\\xbf{LzO\\x0e\\x9fe\\xbf\\xfa\\r_\\x8c4CR\\xbfQ\\x8et\\x86\\xa9BL?\\x1c]\\xecE\\x95\\xa4w\\xbf\\xecPD7\\xbc\\n}?v\\xa48\\xee\\xf7\\xc7d\\xbfj^\\xf34\\x08\\xbfY?,T\\xe6c\\xa9\\xfeY\\xbf\\x84K\\x03\\xbf\\xb2@y\\xbf\\x06\\x7f6\\xcc\\xa6%u\\xbf>\\x87L\\xcaYb]?\\xf0@\\xa8\\x89\\xe0\\xc2n\\xbfH\\xc4\\x0e_\\x8b\\xddE?&[\\x086r\\x8a~\\xbf\\xb5\\xfb\\x9f\\xd9\\xa8\\xac\\x82\\xbf.v\\x8e\\xdf8\\xe9S?\\xa9\\xd2\\xdc\\xa7F\\x03l?\\x14e\\x98\\x88\\xa4\\x9a|?\\xd0Nr\\x80NUs\\xbfb.\\xb7G\\xc2yZ?\\xbc>`mvQg?\\xd2nM\\xf6ID\\x82?\\xd0\\x83\\x04%\\x14\\xbd]?3\\x98\\x7f\\x16\\xe4\\xa2\\x92\\xbfP[\\xef\\x85\\xf4J\\x86?\\xbb\\xe5\\x08\\xc0>\\xect\\xbfm\\xe7Q\\x92\\xc0\\xb6\\x93?\\xaa\\x88\\xdevC\\x9es?X\\xb1\\x9dA\\x1cC\\x86\\xbf\\xa0\\xe7\\x91QP\\t\\x84? \\x00a\\xb5RLw?v\\xbb,I\\xed\\xb1\\x92?`Q\\x9c}\\x8b$\\x83\\xbfX\\x875\\x1c\\x1a\\t[\\xbf\\x04\\x93\\xa6\\xc9A\\x8f\\\\\\xbf\\x90g\\x8c\\xe0&37\\xbf\\x84U\\xc1\\xdc\\x0e\\xd3x\\xbf\\x14_i\\x06\\x92Lq?(\\xd8\\xd61\\xe7\\x84J\\xbf\\xb0\\xfe)\\xebn\\xabM\\xbf\\x00\\xfe\\xa2a\\xe3\\xb8F\\xbfH\\xf7\\xbc\\xf0\\x85\\x05k\\xbf\\x90l0F\\xdfMR?\\xb0\\x89\\xd9E\\xf6\\xc2?\\xbf\\x9b)a\\xde\\x88-u?<\\xec\\x11\\xf7\\xc2\\xcdp?\\xf1\\x03\\xeaC\\xe2\\xdcw\\xbf\\xa0\\xdb\\x04\\xbf\\x8b\\xfc\\x84\\xbfU\\x05~{7\\x10\\x96?J\\x15\\x16ve5\\x80?\\xa0\\xd0\\xc9\\x0f%D\\x9a?\\x8c\\xa61\\x02~)\\x87\\xbf\\x9c\\x95+j\\xfb\\x9db?L\\xa3urG\\xccc\\xbf\\xf0\\xa8E\\x03e\\xacw\\xbf\\xf7\\xca\\xa1~\\x9f\\xa0t?\\x94\\x99\\xf3\\xe0\\xb02i?F\\xf7\\xad\\xa4\\x1a5\\x95\\xbf\\xbd)0\\xb3\\xa9\\x8as?\\x98\\xc4\\xd0\\xcd2QO\\xbf\\xa0\\xe9\\\\\"\\xbe\\x12\\'?I\\x8a<\\xa4\\xc1\\xb7]?hoQ\\x14-\\xe63\\xbfra\\\\\\x9e\\xb2A\\x8b?>\\xa6\\x00\\x11\\xbczq?B\\x828:5\\xa2h\\xbf#D\\x99\\x81-Z}\\xbf\\x02]\\xaa\\x1f\\x88Nz\\xbf\\xca:ww\\t\\xe6\\x88\\xbf\\x80y\\x8d\\x9f\\x8dNK\\xbf\\x84V\\xe5J`\\xc2H\\xbf\\x1c\\xca\\x9f\\xaeM\\xe5d\\xbf \\x8b\\xd4\\xc3\\x8e\\xc2u\\xbf\\x94\\xe2\\x8b\\x11\\xa3\\xd1^\\xbf\\x12DZ\\xe2\\\\\\xe8\\x80?\\xd0T\\xb9\\x9e\\xc5~\\x87?\\x9e\\xf6\\xf4\\xfa\\x81 r?>\\x84\\xc83\\x82\\x06\\x89?\\xc0\\xabn\\x11Eg4\\xbf\\x0e\\xc0\\xe4\\xaeNWU\\xbfLN\\xd0\\xcc\\r,\\x83?p\\x99\\xd3\\x8cB\\xab<?8\\x9a\\xd8\\xaeuH\\x9e?\\xa9\\xd5P_\\xb0\\x8dq\\xbf\\x00?\\xa9(\\xc0b\\x19?\\x90\\x1f{#\\n\\xad\\x92\\xbf\\xbc\\t9U\\xe3\\xdf\\x84?Bk\\xb88T\\xd9\\x8e?\\xa0X\\x836\\xa2Pc\\xbf\\x9cq\\x1d\\x01\\x9b\\xccq\\xbf\\xd9\\xe7\\xdc\\xea\\xe7\\xda\\x81?\\xcd\\x0c\\x1b\\xc7\\xd9\\x9b\\x80?#\\x9c\\x17\\xf5@m\\x8f\\xbf\\xed\\xaem\\xb5\\x19\\x0f\\x92?>\\x8a\\xa0tE\\x96r?\\x88\\xc8\\xb5\\xa8g\\xc5\\x8c?\\xec\\xb3w!\\x15\\xb3\\x85\\xbf\\x00!\\x89\\xcc_\\x83A\\xbf\\x90\\x9a(8\\x84\\x06B\\xbfK\\xf5Z\\x17F\\x8a\\\\?`\\x11\\xe5H\\xcf\\xa1|\\xbf\\x80\\xe0\\xff\\xad76[?|\\xca\\x88+\\xd9\\xdc{\\xbf\\xae{\\x08/\\xdb\\x1cp?\\xe8k\\xeb\\x86%\\xa0\\x82\\xbf\\xcf[\\xbd\\xf7\\xe5\\x97\\x80\\xbf$\\xec\\x83\\x82\\xce\\xbad\\xbf\\xf6Q\\xd4!\\x8a\\xbai? zX\\xfd\\x8f\\x0eS?\\x90\\x84\\x01\\xb1\\xdci0\\xbfh\\xc95z\\xed\\x06f\\xbf-\\xa3\\xcf\\x9e\\xd7\\x82z?p5\\xec%h\\n8?\\x80@\\xb2{\\x8cc8\\xbf\\xbd\\xe3\\x9a\\xd5z\\xa3\\xc0\\xbf\\xf0\\xc8\\xb0\\xdc\\x93\\xec\\x92\\xbf\\xaa\\n\\xa76\\xb6\\x8d\\x9a?\\xfa\\xa5\\\\\\xcc2\\x14\\xbe\\xbf\\xf6\\x97z\\xd7f\\xce\\x85?\\x8c\\xa61\\x02~)\\x87\\xbfx\\x89\\xb0\\x05\\x95H\\xc0?\\x0cN\\x98y\\x00\\x12d?l\\x8c/\\x8f\\x12\\xe3h?\\xce\\xf3 >\\x94x\\xb8?\\xf4:\\xce\\x1e\\xf2\\xa9\\x82\\xbf\"\\xbb\\xe1WG\\x8c\\x95\\xbfR\\x98\\xac\\xb8\\xceV\\xba?U\\xed>^\\x9b\\xaed?\\xa0awE\\xa9\\xd3\\x89?\\x90\\x17\\x9c\\x8b\\r!\\x82\\xbf\\xbb\\x81\\xe4Sr(\\x80?E\\x99\\x91Xd\\xa3\\x83\\xbf=\\xe5-K\\x19%\\x95\\xbf\\x84\\xe7>#\\xf4\\x00\\x90\\xbf\\xb0\\xf5\\xd8QV\\xeae?\\xd6\\x0c;\\xfc\\xc2?\\x9c\\xbf\\xf0G\\xc0\\xe8\\xffv~?\\xf0\\xa7\\xffb^\\x9d\\x94?p\\xf2Lo\\xed\\xfa\\x85?dg\\xef\\xacx%|?\\xfa+s\\x88\\xc1b\\x83?0\\x06\\xe7\\x1d(\\x02|\\xbf\\xca\\xb9\\x18\\x1e\\x1a.s?\\xc0\\xd3\\xb7Z<CB?\\x84\\x00\\xc9\\x81\\x88\\x9d\\x93\\xbfx\\x8e\\xd6\\xeb\\x8c\\xe0\\x84?\\xe8\\xa7\\xc6\\x93\\x86\\r\\xae\\xbf\\xd6\\x03oM\\x13I\\xa2\\xbfxvE\\xa5]R\\x81\\xbf4\\xf4\\x9c\\x123Z\\x94\\xbf@\\xe1_\\xe9\\xd0\\x1cr?\\x884\\xea\\x1an\\xf7\\x89\\xbf\\xc09~\\x873\\x0f\\x8c?C\\x91&U\\xf7w\\x91?\\xe4\\xccJ\\xd7\\xb0\\xb4\\xa2?\\x11&d\\xfb\\x12\\xf1\\x8e\\xbf|\\xca\\x12U\\xba\\x0b\\xb2\\xbfl\\x02\\x8f\\xa2\\x86-\\x95\\xbf\\x8c\\x98\\x08\\x8dv\\x07\\x9b?h,\\xe4\\x84\\x03\\xbcv\\xbf(aK)#6\\xa6?\\x00\\xa06\\xc0\\x02\\x83\\x0c?\\x98\\x10\\x92\\xb8\\xad5\\x9a\\xbf\\xe8{\\xceO\\x9c\\t\\x81\\xbf@;\\xce\\xe0\\xe7-\\x84\\xbf|[\\xd5\\x0c\\n\\x1f\\x81?\\xc4i\\x0e\"\\xbdq\\xb0\\xbf\\x08\\x15>z;\\xb4\\x9b?#\\xac60*9\\x97?d\\x96E\\xd0\\x1fA\\xaf?\\xe8\\x96+\\xb4\\x99;\\x8e\\xbf\\x16\\xef;\\xd0%:\\x8f\\xbf<T$_\\x94R\\x84\\xbfL\\xdb\\xc5\\'\\x10\\xa5\\x97?GG\\n\\xb3\\x7fR\\x8f\\xbf\\xfcRp\\xb6y\\x15\\x94?\\xc6\\xa5\\x1a\\xbar`\\x9a\\xbf\\x00\\xa8:`\\xc9N>?(\\xbaj\\xdb\\xfa\\xeep?\\x10\\xa3\\xac\\xa2\\x12U\\x7f?\\x928-#\\\\]\\x83?\\xe0$X\\x9a\\xf9\\xcb\\x86\\xbf\\xf8W\\x80\\x8f\\xd9h\\x92\\xbf\\xd89L\\x19S\\xf9\\x83\\xbf.\\xc5\\xc8u\\xd1\\x01r\\xbfL*\\x1e\\xf9\\xed\\xd2R\\xbf.\\xeem\\xf9\\x0e\\x16\\x8c?X\\xcd\\xce\\x06\\x1a:Z\\xbf\\x9c\\x95+j\\xfb\\x9db?\\x0cN\\x98y\\x00\\x12d?%\\xf3q\\x07_\\x8f\\x80?%\\x9a\\x93\\xc3g\\x01T\\xbf\\x00\\xb3c\\xc3\\xde\\xa3m\\xbf`X\\xd4(D\\xac?\\xbf\\xb0\\x8f\\xbe\\xa6\\xbb\\xb12\\xbf\\x848~B~\\xdai\\xbfd\\x9e\\xb9\\x05w=%?\\xc2\\xa9\\t-\\xffS[\\xbfa|\\x9b*C~X?\\xeat \\x8f\\x9e\\xc7v?\\x91\\x01`@\\x90?>?\\xa8T\\x82l/wX\\xbf,)\\x85-.\\x8dP?\\x00\\xee\\xd7\\x12\\xa5\\xb5@?\\tG,\\xc6\\xaf\\xacS\\xbfHA\\x06a\\x9d\\xe7d\\xbfp\\x05p\\x9e\\x9bu]?\\x137\\xb41@\\x9ca?\\xdai\\x9av\\x88xr?\\x13\\x04\\xeb|e\\xe1<\\xbf\\x1c\\xae\\xaci\\xac,^?\\x1e F\\t\\xf7\\xc2q\\xbfI\\xcf\\xb6\\x85\\xfa\\x80t?\\xbc\\xa3\\xa5\\xc9,\\xb7S?N\\x98\\xd9\\xfdp\\xe6v?\\x90\\x04N\\x1co\\xacL?>i\\x8dvdzS\\xbf\\x17\\xd6v\\x96;+g\\xbf\\xca\\x05\\xf1_G\\x81\\x82?\\x18+\\xfaX\\xd1\\x9d6?%=\\xe2\\x9c\\xe3[\\x9c?\\xb83\\x7f\\xfc\\')y?q\\x1ac\\xbb\\xf4tp?\\x84]E\\x83|\\x8fo\\xbf!z\\x97\\xdd\\x15\\xf2a?\"\\xaf|\\x9d}jb?b%\\xdd\\x90\\xe54\\x80\\xbf\\xdc&\\xc3\\xa8\\xe6\\xd1\\\\\\xbfN\\xf6\\xfc\\x84\\x10<e?\\xe2\\x91\\x8a\\x7f\\xbe\\xf4\\x90?\\x18\\xdc\\x12z\\xde\\xfce\\xbf\\xd0\\x91\\xc3L~\\x94K\\xbf\\x18+0\\x96\\xfe\\x0b\\x8c?\">\\x8cA)\\xc9v\\xbf( (\\xc6e\\x9ey\\xbf\\t\\x01\\xa4\\x89\\t\\xc2\\x91\\xbf\\xd6\\xda\\x03\\x07.``?\\xda1\\xfcm\\xb4\\x8dZ\\xbf\\x1c\\xf2\\x91\\xcf\\xc6\\xcbv?YC\"\\xa1a=d?\\xaa\\x96\\x8ca{\\x17\\x87\\xbf\\xcc\\x80\\xf03A\\xd9Z\\xbf\\xf8,\\x9a&\\xa1\\rO\\xbf\\xb8\\x96\\x98%G\\xf5{\\xbf\\xe89\\x98\\xba9\\x01i?\\xeb\\xda\\x08\\x9e\\x10{j\\xbf\\xdcE\\xf2\\x19\\xf3rV?G\\x119\\xe6`\\xae\\\\?\\xd0\\xcctL:\\xeb??*%R\\x93\\xff\\x90x?\\x8b\\x8f\\t9u\\xd2i\\xbf\\xe0\\x96\\xb9\\xc3\\x82\\xf9\\x81\\xbf\\xe0\\xc7\\x05\\xd74[G\\xbf\\xe3\\xc3\\x17\\xcc\\x904R?tb\\xefB>hV\\xbf\\x9e\\xffj\\x96\\xea\\x00t\\xbff\\xc0\\xeb\\xeei\\xa3S?L\\xa3urG\\xccc\\xbfl\\x8c/\\x8f\\x12\\xe3h?%\\x9a\\x93\\xc3g\\x01T\\xbfJ8\\x7f\\x8bS\\xc8t?<\\x8epH\\xc45t?tW\\x91\\xd3\\x90\\x873?\\x9c\"\\x8e\\xe3\\xbe\\xfbJ\\xbf\\x80\\x8e\\xb9\\xbe\\x0e\\xa5^?\\x8a\\x03y\\x0f\\x02\\xb8d?*\\xae+\\x8a\\xf4\\x994\\xbf\\xb0M$\\x91g\\xd1\\x17\\xbfx\\x06>\\xd5\\xa2SU\\xbf+\\xef\\x17Rzp4?\\x1a\\xa54\\x03\\x93\\x07c?\\x90p\\xf1\\xfe\\xd2\\xfcV\\xbfM\\x7f\\xe2\\x89o\\xf8T\\xbf\\xdbR.\\x9fk\\xa0q\\xbf@hA\\x8c\\x91\\xe6Q?\\x80\\xae\\xaa\\xe8\\xa1\\\\1?\\xac\\x9bI\\xc7\\xd9\\x7f\\x1e?\\xe4r\\x1f8?\\x850\\xbfFsP\\xdb\\x10|X?\\xc4)?\\xd6\\x16ij\\xbf\\x1c\\x10\\xf2Bq<U?\\xde\\x03!\\x1b\\x06\\xeaI\\xbf\\x10\\x19i5k|2?\\xf4\\xa2\\xdb\\xd9Z*A\\xbfx\\xe7/\"\\xad\\xf7l\\xbfX^\\xa3\\xaf\\xd3\\xeeJ\\xbf\\xcf\\xd5c\\x98\\x99\\xbdd?dj\\x8d\\xed\"\\xd7r\\xbf\\xd0\\x1e\\x14L\\xb0\\xf86?\\xe4\\xbb\\xf5\\xac\\xd0\\x90\\x88\\xbf\\xc1\\xffA$\\xd8\\xf1V\\xbf\\xe0eG\\x07\\xda\\xf3\\xeb>$\\xc8\\xb1\\x82uow?\\xdfOq1\\xcf\\x94Z\\xbf2\\x12\\xe0\\xb6nBv\\xbfO35D\\xbd{p?\\x10\\x17\\t\\x8d\\xb5\\xf1%?\\xafl\\\\\\xf7~\\xed`\\xbf\\xccl\\x9d}\\x9c\\xa3f\\xbf\\x100\\xe5\\x96\\xce}I\\xbf\\xb2\\xcb\\x1c\\x1b\\x19\\xbfe\\xbf\\xba\\x1f\\xa4>\\x17\\xe2v\\xbf\\x10\\xf7\\x82E\\x9d\\xaeE?\\xda\\x90\\x02\\xf5\\xb9@m?\\x1fa=\\xe8\\xa0\"s?\\x0c\\xd0\\x8b\\xeb\\xb8\\xbfC?\\xb5\\xb0\\xb2{\\xdb\\xd9^\\xbf0\\x9b4\\xb3$rJ\\xbf\\xc9z7-}Qa\\xbf\\x886^9\\xb1.k?\\xb0Q3r%a:\\xbf\\xa0\\xf4|/\\xf5\\xba.\\xbf\\x11\\xfc\\xb4\\xc8}\\x04m?\\xa8n\\xf4\\x89gv3?\\xdeS\\x94w\\xc0\\x15W?\\x081\\xe8\\xe8\\xc4\\x96a\\xbf\\xe4\\xd2\\xc7I\\x86\\x0ea\\xbf\\x1f\\xb3*9{@b\\xbf\\xad\\x96hFwdu\\xbf\\x10\\xd5\\xe4\\x01O8Y?\\x9cI\\x17\\x1e\\x00\\xa2p? \\xb4\\xfd\\tln\\xc0\\xbf\\x88]\\xf7\\x8d\\xa0s\\x97\\xbf\\xa6\\xcb\\xf7\\x10\\xec\\xcf\\x96?B_\\x1d\\xc5\\x89!\\xbd\\xbf\\xa6\\xdenB;\\xa7\\x92?\\xf0\\xa8E\\x03e\\xacw\\xbf\\xce\\xf3 >\\x94x\\xb8?\\x00\\xb3c\\xc3\\xde\\xa3m\\xbf<\\x8epH\\xc45t?\\xea\\x964\\xb8\\xbbx\\xc8?\\x80!u\\xcf\\x97\\xdcH?\\xe0\\xd0\\x1d\\xe7\\x9b\\xbc\\xa2\\xbf\\x0bo\\xe1X\\x1b\\x08\\xc0?\\xd5\\xb37\\x929?w?\\x97\\xe88j\\xd6\\x12\\x92?\\xe0\\x1b\\xc0\\xb6*\\x99|\\xbf \\xe5\\xad1\\xbd\\xbbm\\xbfU\\xc3\\xab4\\x00%\\x86\\xbf%\\xd0-\\x00\\x8c\\x86\\x94\\xbf,\\x86\\x17\\x88\\x98\\x1c\\x99\\xbf`.h\\x80q\\xe5n?\\x1a\\xd3\\xf5k\\xeaz\\xa5\\xbf\\xdc\\xedr\\xa7fj\\x91?\\x00\\xe7\\x80\\xaf\\x92\\x1a4? \\xed<\\x02R\\x95e\\xbf d\\xf4\\x948vF\\xbf\\xd6\\xf8\\xe9\\x16\\xf6$\\x7f?tS\\xb4\\xca\\xf8s\\x9b\\xbf:v\\xc1\\x8bo\\x91\\x93?\\xb0\\ti\\xad\\xaf\\xd9u\\xbf\\x14\\xb2\\x14O\\xb3\\xea\\x93\\xbf\\x90\\xbeN%a\\xe2z\\xbf\\xa0\\xf0r\\xe0Ga\\xa9\\xbf\\xc2\\x9c\\x03\\x1f\\xa6b\\x9a\\xbf\\x8a\\x94A~b8q?\\xfa#3 \\xd8n\\xa0\\xbfpmp\\xd0\\xfbrb?\\x10\\xf3\\x85A\\x88\\xfd\\xb0\\xbf0s9\\x9e\\x7fU\\x86\\xbf\\xcc\\xd8\\xd1\\x1f\\xae\\xe0v?z\\xa6\\xa1\\x16\\xb7\\xa0\\xa7?\\xa0D9U\\xb1\\xdb\\x85\\xbf\\xa4\\xb9\\x9b?\\xf23\\xae\\xbf\\\\\\xef\\\\W\\x8d\\xcfq?\\xa0o\\x82\\x06]}\\x95?\\x9c\\x9en\\xc3\\xd3\\xa9Z\\xbf`\\x86\\xfd\\xe3G\\xe2o?\\xb0<\\xa8\\x16\\x0bH\\x89\\xbf\\x18\\xa7V\\xa1e\\xe5\\x90\\xbflW\\xd3\\xfax\\xc6\\x99\\xbf`\\x9c\\x0c\"8 \\x85?\\xe6\\xac\\xc5\\xe2|K\\x98?\\xf8\\xe5gL\\xa9P\\xa3\\xbf\\xecc\\xb1\\x05\\xa3\\xdd\\xa2?\\xa9\\xe0\\x0e\\x00\\xce\\xf8\\x90?\\xc8\\x18\\x15*UY\\xb0?\\x10\\x9d\\xbd\\xa1\\xfa{\\xa1\\xbfhI\\x18\\x17\\xf2\\xe7\\x84?\\xa0\\xc3\\xafD\\xc8\\xe4t\\xbf\\xe8\\x14\\x9a+\\xe1\\x1a\\x89?\\x8ej<\\xb8^\\xf7{\\xbfHM7Q\\x9fZ\\x8e?D^cA\\x93\\x14\\x8b\\xbf\\xd0\\xac\\x0b\\xacL\\xbfy\\xbf@L*\\x9c}F`\\xbf  7\\xf9\\t<g\\xbf \\x08r\\xbb\\xfe|n\\xbf\\x00\\x1e\\xe8h26[\\xbf\\x00gs\"\\xde\\x1e\\x8b?\\xccV\\x84a\\xd3\\xa7\\x8a\\xbf\\x8e\\xae\\xc9\\xcc\\xeci\\x89?\\x80\\xfe\\xa8\\x9b[\\x91*\\xbfp\\xf8\\x00\\x03b\\xaev?\\xad\\xdaV\\xca\\xdf\\xec`\\xbf\\xf7\\xca\\xa1~\\x9f\\xa0t?\\xf4:\\xce\\x1e\\xf2\\xa9\\x82\\xbf`X\\xd4(D\\xac?\\xbftW\\x91\\xd3\\x90\\x873?\\x80!u\\xcf\\x97\\xdcH?\\x0c\\x8a\\xf9\\xa3Fc\\xaa?\\xd8\\xe2||\\xe4Ob\\xbf\\x10\\x7f\\xd6\\x1b\\x19At\\xbf\\x8a\\xdb\\x83\\n\\x08G\\x89\\xbfhd\\xc8`+\\xd4`?XH\\x07\\xd2\\xde\\xc8Z?\\xba5y\\xdd\\x93\\xf0{\\xbf\\xb6\\x1b\\xb1\\xb7P\\x00n?\\xc0ss2\\x93}d?_bA\\xc5\\x072\\x85?\\xfcx\\xa4\\xe3\\xad\\xbf{?\\xdbp\\x14\\xe1\\x9c\\xe8\\x84?\\xe8\\xf5\\x15\\xdd#\\xb2i?T\\xc5E\\x1d\\xe7\\xc6w\\xbfo\\xd1\\xe0q\\x9bWv\\xbf\\xaf\\xb7w\\x84\\x13\\xc0r\\xbf\\xc8rU\\xc1\\xa1\\x0e4\\xbf\\x84\\x12\\x1c\\x1b\\x12\\xa3w?\\r \\xe1\\xcaX\\x8dp?,6@>T\\x1db\\xbf\\xeb\\xd8\\xf1\\xbb\\xfe\\x88\\x81?\\xcc\\xbf}2\\x80tm\\xbf\\xbcu\\xca)\\x90\\xf2\\x87?t\\xdd\\x02\\x05I\\xc3_?$<(3L\\xf7j?\\xc8\\x90\\xef\\x1c\\xbd\\xffo?\\x9c\\x02\\xa7\\x10m\\x17m?U\\x0c)8(\\x11\\x92\\xbf\\xca\\xf0>\\xbe\\xbd\\xb5\\x91\\xbfw\\xd2\\xa7\\xcf\\xc1|c\\xbf\\xcc\\x04\\xdd\\x17\\r\\xbdg?\\xac{\\xa1\\xb9t\\x1c\\x92?=\\x87\\xcd\\xaeI\\xfb\\x92?R\\x1a\\xe4\\xfe\\xb1\\x83a?2\\xf1\\x95\\xca\\x0b\\xed\\x81\\xbf9\\xbc\\xcb\\x08\\x06\"\\x86?_\\xect\\n\\xda\\x18\\x93\\xbf\\xa5\\xf7z\\x1e!o\\x98\\xbf\\xc2C4\"\\xf8\\x18\\x97? \\xca\\r7TtL\\xbf\\xf2.c\\xda\\xb9O\\x9e?\\x82\\xcb^J\\x06\\xa1d?\\x80\\xa4~\\x0f\\x13PU\\xbf\\x10\\xb9\\xf2\\xd9K\\x18U?*\\xfd\\xf0\\xd3@t}?|\\x8c:\\xa1o1\\x83?\\x80\\xb8\\xb5\\x8fQy)\\xbf\\xd8&\\xbd\\x0c\\x9cQS\\xbf$\\xb4^\\xc6Pk\\x81?\\xa8\\x8c\\x9b\\x8dE\\xb7y\\xbf\\x902\\x01*\\x8aF6?\\x85\\xbd\\xcb\\xccO\\x95\\x86\\xbf\\xa4-K\\xe7\\x85\\x06n?^\\xa0\\x87\\x94g\\xe3\\x80\\xbf\\xdb\\x14\\xdb\\xe6\\xd9\\x19t\\xbf\\x0e\\xf2=I\\x15`\\x7f\\xbf\\n\\x83\\x1cR\\xdbr\\x87\\xbf\\xe8g2Y,\\x04z?(co\\x01\\xe1O\\x89?p\\xba \\x8a\\xe2\\x8d\\x9f?\\xd5V\\xb7\"\\x00\\x14t?\\xb4\\xa95\\x05\\x11\\x94`\\xbf\\xeaX<Ve\\xf5\\x95?t\\xce\\xf6=<\\xcf[\\xbf\\x94\\x99\\xf3\\xe0\\xb02i?\"\\xbb\\xe1WG\\x8c\\x95\\xbf\\xb0\\x8f\\xbe\\xa6\\xbb\\xb12\\xbf\\x9c\"\\x8e\\xe3\\xbe\\xfbJ\\xbf\\xe0\\xd0\\x1d\\xe7\\x9b\\xbc\\xa2\\xbf\\xd8\\xe2||\\xe4Ob\\xbf \\x07\\x0c\\xb0\\x0b\\xd6\\x87?\\xf7\\xef\\xe3Y\\x0c\\x1e\\xa1\\xbfud\\x14\\x04l\\x80??Q&t\\x04\\xed\\xabq\\xbf@\\xc9x\\xcb\\xa0\\xfd3?\\xb7\\xd4\\xd6\\xa8\\xf22b?\\x8f\\x88\\xa7sV\\x86f?\\xe9\\x83\\xf2U\\xdd\\xe2\\x83?0\\xebm\\xc6\\xb3\\xfdm?\\xba8n\\xec\\x88\\xa7k\\xbf$\\xb0Ag\\x0b\\xdct?\\xb0\\x17m\\x1a\\x01\\xb9e\\xbf\\xd8\\'*\\xa1\\x9aaT\\xbf\\xc8\\x01\\xae95\\x86*?@\\xe7{t\\xd2\\x0b\\x1b?\\x12\\xcf\\x14\\x1f=>\\\\\\xbf\\x00Y\\xae6\\r\\xb4L?\\xd5~\\x07?\\xf1Wi\\xbf@\\xb4\\xc5\\x12\\xbd\\xdfQ?\\x10\\x92H\\xdf\\xfaru?\\xa0\\x92\\xd7\\xd8f)H?\\xbc\\x07g\\xbd\\xe7\\xd7\\x83?\\xd8\\x01z\\xd9\\xc2no?\\t\\xbbR\\xde\\xcb1`\\xbfh\\x19\\x86Y_\\x9e\\x82?\\xb0\\x062v\\x08\\rO\\xbf~\\x17UqSh\\x96?f\\x0b\\x1b\\xec\\xe7%g? \\xaf\\x04\\td\\x03Y\\xbf\\xaa\\x84\\x91\\xfb\\xde\\x05\\x8c\\xbf\\x95\\xecprf\\xd0m?r)v\\x14m\\x13\\x8d?\\xd8T\\x859\\xc9\\x06n\\xbfx\\x9b\\xa4Iv\\xa8r\\xbf\\x1c&\\xf4#64c?\\x98\\x15J\\x82F\\xaah?\\x00N\\xe2\\xd4k\\xd1\\x10?$\\xa2\\x93s\\xac\\x81q?*\\xe37\\x7f\\x9a]\\x80?\\x00\\xf0&F\\x19\\x06W\\xbf\\x12R\\xca\\xd7\\x15gr\\xbf\\x80\\x1a\\xe9 ~#J?\\x0cw\\xf6\\n\\xd6\\xe3s\\xbf\\xc9\\x8b}r\\xdb4l\\xbf@!\\x19\"\\xeb\\xdc\\x80\\xbfT\\xa9\\xf7\\x0cl\\xe3q?\\xf4CZ\\xc0\\xfb\\x94v\\xbf\\x00\\xbct)\\xf5\\xef\\r\\xbf\\xa0~\\xabsv\\xa3L\\xbf\\\\\\x89\\xe3;\\xd8\\x02U?\\x90.]\\x87\\x83\\xd9^\\xbf\\x00r\\xa1\\x84k\\xbc\\x1f\\xbfp\\xe5!WAkn?\\x08\\x03\\xa6R\\xa7@P?\\xe0\\x17\\xe1\\xbf\\xb91G?\\xd0%\\xd0\\xb0\\xe5[e?\\x80V Mh\\xeeF\\xbf\\xb8(`2\\xdc\\x0bl\\xbfn|#)\\x1e\\xa8\\xc0\\xbf\\xd4\\x86\\xc9\\xe6\\x9e\\xda\\x9a\\xbf\\x9a>\\x99\\xef\\xd4-\\x93?\\xdb\\xc0R\\xe7\\xb8X\\xc0\\xbf~&\\xecPJ5\\x8a?F\\xf7\\xad\\xa4\\x1a5\\x95\\xbfR\\x98\\xac\\xb8\\xceV\\xba?\\x848~B~\\xdai\\xbf\\x80\\x8e\\xb9\\xbe\\x0e\\xa5^?\\x0bo\\xe1X\\x1b\\x08\\xc0?\\x10\\x7f\\xd6\\x1b\\x19At\\xbf\\xf7\\xef\\xe3Y\\x0c\\x1e\\xa1\\xbfs\\x8c\\xf7\\xdee\\xd9\\xca?\\xaef\\xf3+\\x04Gj\\xbf\\xfd\\x8b\\xd2D\\x1d\\xcc\\x99?`\\xa5\\xa9\\r\\xbeUp\\xbf\\xc0\\x89\\x84k\\xc8\\xb8c\\xbfP\\x1a\\xacp\\xcc\\xb3\\x81\\xbf\\x0f\\xcb\\x84\\x9a\\xba\"\\xa9\\xbfT \\xaa\\xf2\\xbdu\\x93\\xbf\\x00\\x88k\\x0cQ\\xfd\\x98?\\x0f\\x17\\xbd\\r(6\\x97\\xbf\\xb8\\xebt_\\xe8\\x0b\\x9b?D\\xe5\\xa8\\xe17\\x0c\\x91?:\\xdb\\xbajz\\xcaj\\xbf@gG\\xf6x$W?\\x95fX\\x0e+,\\x80?\\x00\\x92\\xd5\\xef\\xe0\\x13\\'?\\xf5d^,\\xaf:\\x94?\\xd4\\\\\\x98e[\\x15\\x86\\xbf\\xee3\\xd9\\xd7\\x94:\\x9f\\xbf0\\x9e\\x9f\\xfe\\xf9\\x10{\\xbf\\x00\\xb2\\x7f\\x86O\\x9b\\xa8\\xbfu\\xd9P\\xbf|\\xb8\\x9a\\xbf\\xf2\\xe4\\x03\\xb5\\xb5uq?\\xf2Q\\n\\x94\\x8dG\\x9f\\xbf\\x00*\\x04\\xa3!D?\\xbfD\\xcd?\\xee\\xe0\\x86\\xb3\\xbf\\xc8\\xf4\\xe8r\\xe3\\x8e\\x85\\xbf^p\\x99d\\xda\\n\\x81?\\xee\\xc4\\xd38}\\xc2\\xac?\\x18\\x90\\xba\\xa6%\\xa2\\x84\\xbfV\\xcc2\\x9a\\x0c\\x01\\xaf\\xbf\\x8a;\\xe5D\\xb1\\xf3s?\\xb0\\x8a\\x96r!\\x03\\x97?8\\xb8\\x9e\\xf6\\xa9\\x063?\\xc0\\xb4\\x96\\x11+\\xa3^?\\x80\\x05\\x8a|\\xec\\xe1\\x8a\\xbf`\\xcfP\\xb0\\x90{\\x8f\\xbf\\xee\\xab\\x8a\\x1a\\xf0\\xfd\\x94\\xbf\\xc0\\xdbr\\xe2}6{?\\x9e\\xd6A\\xbfi_\\x98?\\xf0\\xb7\\xd0\\xbb\\x9ep\\xa8\\xbf\\x084l\\xc7\\xe4\\xc9\\xa4?\\xc4EE?\\x8eD\\x9a?\\x00\\xf4\\xab=\\xf0\\xe4\\xb2?f\\xdb\\xd3G\\xae\\xed\\xa0\\xbf\\x00\\xd9\\xbak/.\\x8a?\\x80G\\x94P\\x1f}r\\xbf\\xc8l^\\xb4eQ\\x8c?;\\x96\\x1cvK\\xb5\\x80\\xbf<\\x7fC\\xaa6\\t\\x91?$\\xb0(\\xe0A\\xf7\\x82\\xbf(\\xea\\n\\x1dL\\xdc\\x83\\xbf\\xb0\\xb9\\xa9H\\xd1\\x88d\\xbf`m\\x99\\x01\\xfc_r\\xbf {\\x01\\xe0s\\xd2^\\xbf\\xb0\\x8a\\xc2N*\\x1dd\\xbf\\x18\\xe0\\xf7\\x85o3\\x83?N\\xd1Vx\\xf6\\xa2O\\xbf\\x0b\\xc4\\x95\\xc5Ndr\\xbfb\\xf6\\x86[\\x97\\xc2R\\xbf\\xe3/\\xa1\\xe4{\\x0e\\x83?\\x1b\\x99W\\xce\\xb2P\\x82?\\xbd)0\\xb3\\xa9\\x8as?X\\xed>^\\x9b\\xaed?e\\x9e\\xb9\\x05w=%?\\x8a\\x03y\\x0f\\x02\\xb8d?\\xd5\\xb37\\x929?w?\\x8a\\xdb\\x83\\n\\x08G\\x89\\xbfud\\x14\\x04l\\x80??\\xaef\\xf3+\\x04Gj\\xbf\\x8e4\\x1b\\xba\\xd7\\xc0\\x9b?\\xae\\xd0\\xfb\\xaeX\\x10g\\xbf\\x13\\x99\\xd1\\xa0\\xd0MR\\xbf\\xd2\\x904\\xe8=][\\xbf\\xbf\\xdf/J\\xda\\xb1S\\xbfA#z\\x9d\\x07\\x91\\x18?\\xb3\\x03\\xb9 y\\x8a<\\xbf\\x08X\\x19\\xbb\\x16\\x04F\\xbf\\x017W\\x97\\xe0\\xca\\x83\\xbf\\xa6r\\x07\\xe9\\'\\xe7r?\\x03sr\\xb4\\xb1\\xf7d?\\x14>\\xce\\xadL_\\\\?\\xd5\\x93d\\xa2\\x14N\\x15\\xbf\\xa0(\\xd3\\xf2\\x83?B?:\\xf5\\x08\\x96\\xdcqr\\xbf\\xbdU\\xf3\\xea]@b\\xbf\\xc2\\x92s}\\xb8\\xc3;\\xbf \\x91zB;\\xacT\\xbf|\\xaa{\\xf5\\x88:g?i\\xdf)L\\x91_r\\xbfg\\x1c\\x9d\\xefFL^\\xbf\\xa4\\x83Z9FI[?\\x00\\x81,1\\x84\\x03r\\xbf\\xf2Z%k;zP\\xbf\\xf8\\xfc\\r\\xbf\\xe8\\xacP\\xbf\\xc9\\x12<0g\\xf9p?\\xa5\\xb9\\xdd]Gk@?z?\\x0b9\\xf2kp\\xbf\\x16$\\xabc\\x91!\\x80\\xbf\\xc0\\xa0\\x1e\\xd0\\x16F\\x81\\xbf\\xb1\\\\M_y\\xeer?~\\xba/\\x17\\xfd\\\\q?.\\xcc\\xfbz8\\x18x\\xbf\\xffHX\\x08<\\xf1|?\\xc4\\x81\\xf7\\x89R\\xb9\\x87?\\x9c\\x8d\\x04\\x06\\xd0v|\\xbf\\x9a\\xb0\\x8f.\\x99x\\x82\\xbfM\\xc8\\t\\x8e\\x0e+\\x85\\xbf\\x8cW\\xc2W\\x01\\xbaQ?\\n\\x9a\\xcd\\xeb\\xd4\\xf8\\x93?\\x85\\xd3\\xba\\xdb\\xfaUy\\xbf\\x065\\xbb\\xe7s\\x98b\\xbf\\xdc\\x9c\\xc3\\x08\\x93\\xe2\\x92\\xbf!\\x81\\xad\\xc2 \\x02b?\\xe6=opt\\xd5h?F\\x97K\\xcaq\\x11h\\xbfF5\\xd4\\x8bn\\xccE?Y\\xc6\\x17A>-\\\\?\\x8b\\xbd\\xa7\\x88v\\x9dg?=\\xd9\\x91LZ52\\xbf\\x8e\\x03\\xc7]\\xdcjt?\\xde\"\\xca\\xf7\\x7f\\xc72?\\xf1\\xd7\\xb2\\x87\\xe4\\xe0n?\\x16~\\xaa\\x83<\\xc9e?\\xae\\xca\\x1d\\xe0\\x8f_[\\xbf\\xb2\\xaa\\x0e\\x15t\\r[\\xbf\\xc6\\xb8\\xcb\\xa3\\xb6\\n\\x8f\\xbf\\xd6\\x9f\\xf2\\xac\\xbcYX\\xbfR\\t\\xd4\\x7f\\xa3wh?X\\xb7\\xbe\\t\\x87@\\x95\\xbf\\xfe\\xa2B\\x1d$\\xcbV?\\x98\\xc4\\xd0\\xcd2QO\\xbf\\xa0awE\\xa9\\xd3\\x89?\\xc2\\xa9\\t-\\xffS[\\xbf*\\xae+\\x8a\\xf4\\x994\\xbf\\x97\\xe88j\\xd6\\x12\\x92?hd\\xc8`+\\xd4`?Q&t\\x04\\xed\\xabq\\xbf\\xfd\\x8b\\xd2D\\x1d\\xcc\\x99?\\xae\\xd0\\xfb\\xaeX\\x10g\\xbfQ\\xad\\n\\x89\\x15g}?\\x80Y \\xe3^\\xa4J\\xbf\\x10h{\\xb2\\x05\\xbf\\'\\xbf8\\xcf\\xe8\\xbb\\x18\\x968\\xbf^1\\x14\\xdbFbt\\xbf\\x80\\xc1`%K\\xa5\\x11?\\x7fCq\\xb5b\\rc?H\\x94+v7\\xd1W\\xbf\\x14x\\x7f(\\x91\\xcfj?\\xb8\\xf5j\\x89B\\xfaA\\xbfgi\\x8e\\x0cN\\x01C\\xbf\\x04 \\x969\\xec$H\\xbfH\\xf3\\x08;\\xbc\\x8aN?\\xd0d\\xb9\\n\\xec\\xa0@?\\x94\\x91\\xffe\\x02\\x02W?\\xf0\\xca\\xb1\\x13[\\xdcA\\xbf:\\x1e\\xf2\\xc8cRj\\xbf\\xb8\\xcd7\\xa9i\\x84V\\xbf\\xb0\\xa5\\xea\\x8e\\x93\\xb6a\\xbf\\xf0;O\\xabO\\xa5a\\xbf\\xf2k\\x9a\\xbawT/?L\\x87\\xdc\"\\xf9\\xf9g\\xbf\\x80\\x9fr!\\xca\\xf4E?\\xa1f\\xcb;>\\xf1\\x7f\\xbf\\xec\\xd0y\\x14\\xf5\\xe9V\\xbfo\\xdeN\\xb5\\x10\\x96D?4\\xea\\xff\\xdc\\xea\\xcds?\\xe8\\x08\\xcc*\\x13\\x9e;\\xbf\\xd6\\xa6\\x89|\\xd4\\xecu\\xbf\\xa0\\xf7i\\xa3\\x0bc,\\xbf\\xe8lr?\\nRb?[]{\\x88\\x87\\x116?\\xa06\\xbb\\xe2\\x8fo:\\xbf0\\x8bma9\\x9bT?\\x00\\x92r\\x1e4\\xf4\\x18\\xbf\\xfb\\x00\\xad\\x1aE\\xd2p\\xbf\\x80\\xae#x\\xaatE\\xbfp\\xad\\xe9\\xe6\\x9cQQ?@R\\xe3{\\xcf}d?\\x14}\\x88y\\xabPa\\xbf\\xc5\\xd5\\xb5\\xa6\\xf1\\x8ad?0{\\x1d\\x0f\\x00\\xa6c?8ryu\\x81.f?\\x00\\x95\\xca\\x95\\xb4\\xb14\\xbf\\x80P\\xaf\\x83GR#\\xbf\\x80\\xdd\\x95\\xe7wS@?\\xa3pC\\x93\\x8f\\tp\\xbf\\xe8/ \\x9c\\x03\\x90U?@\\x01\\x08]l\\xdc4\\xbf \\x905X\\xf4\\x17P\\xbf\\x18m\\x91\\xf4\\x9d\\xdfQ?((~\\x0e\\x9cP]?\\x00\\xf0\\xa7\\x03C\\xbaN?\\xe05WCj\\x9cY\\xbf@\\xcdk9\\xbb\\xce%\\xbf\\x1c\\xf2\\x8b\\xfaK\"\\x8b?\\x08\\xf8\\xa9{\\x01\\xe3#?\\x04\\x04\\xe5\\xa2\\xc9xu\\xbf\\xfc\\xc8!\\x99:\\x91\\x8a?\\xe8\\xe9\\xddK\\x1e\\xb7U?\\xa0\\xe9\\\\\"\\xbe\\x12\\'?\\x90\\x17\\x9c\\x8b\\r!\\x82\\xbfa|\\x9b*C~X?\\xb0M$\\x91g\\xd1\\x17\\xbf\\xe0\\x1b\\xc0\\xb6*\\x99|\\xbfXH\\x07\\xd2\\xde\\xc8Z?@\\xc9x\\xcb\\xa0\\xfd3?`\\xa5\\xa9\\r\\xbeUp\\xbf\\x13\\x99\\xd1\\xa0\\xd0MR\\xbf\\x80Y \\xe3^\\xa4J\\xbf\\xad\\xf1\\xf51\\xe3\\x15\\x9b?\\x05c\\xe5\\xb6\\x1f\\x18s\\xbfd\\x17~\\x94\\xfc\\xfaQ?\\x92\\xfa\\x88\\xd1\\x0c\\x82\\x80\\xbf\\xb4\\xb3#\\x17ENw\\xbf8\\xcf\\xf7\\x16\\xa1\\x8aw?\\x02\\xe7\\xd3\\x8b\\xd9\\x9eS\\xbf\\\\\\xa6F\"\\x07\\x8e\\x83?\\xfc\\x8a(\\xc5\\x9a\\xcc`\\xbf\\xe9y\\xffZ/v\\x7f\\xbf\\xe8\\xc7MJ\\xee\\x9cP\\xbf\\xe0S9\\x18T\\x13.?\\xe0\\xf2\\n\\xd7\\xa7\\x0ce?\\xc7\\xfc\\xd0V<\\xfc\\x84?\\x82\\xf0\\xac\\xd64\\xf4w\\xbfZM\\xba\\x0bS\\xc3s?|9Xp\\x10~}\\xbf\\xf4\\xc5\\xac\\xb7\\x8d\\x19z?z\\xab\\xb5\\xe6vX\\x87?\\xf5\\xeeT!\\xe2;\\x81?\\xcd\\x88IR!\\x1fx\\xbf\\xd4\\xf6\\x16\\x0c\\x007z?Q\\xde\\xcd\\xaetC\\xa5\\xbf\\xf1$\\xb1\\xe10\\x00\\x96\\xbf\\x94\\xe1\\xec\\xf2J\\xe4z?\\x13xC\\x0bQu\\x9c?\\x00\\xcb\\xc9\\xf6\\x05T\\x8f?@{a\\xf7kVO\\xbf\\xbeQe<S\\xcfo?\\xdc\\xbe\\xc2T\\xd8\\xbcf\\xbf5\\xea\\x1b\\xdcy]\\x86?\\x06\\x9f$U\\xe3\\xc2\\x92\\xbfq\\xcf^\\xa9\\x91\\xa6\\x97\\xbf\\nV\\xe9M\\xe6\\x1b\\x92?\\xb8\\x08\\n5hu|\\xbf\\xe0\\x01/ \\x80\\xe0\\x9f?w\\xbc\\xea\\xda\\x89\\x92\\x8b?8\\xdf?`y\\xf1s\\xbf\\x00h\\xa0zQ7\\xe6\\xbe\\xab\\xbb\\xa6\\xc7 [\\x81?($\\x98\\x91!/\\x8e?\\xdcj\\x9a\\xa3%r`\\xbf\\xde\\xba;\\xcb\\xd57\\x8f?Hvf\\xcd\\xad\\xe5c\\xbf0q\\xf3C\\x0b\\x18Z\\xbfpL\\xf9j\\x1d\\x01K?\\xee\\x04\\x8c\\x10\\xbf%p?\\xcd\\xa2\\xb1\\x1b\\x06\\x0ey?\\xa2\\xd1w\\xf87\\x88\\x8f\\xbf6\\x83\\xb1\\x85\\x0e\\xf7l\\xbf\\xe3Yk\\xf2EK\\x87\\xbfR*\\x7fD4m\\x81\\xbfr\\xdf\\xc2\\xa4T\\x81h?\\xa3\\x03\\x81\\xb1G>\\x8c?\\x03\\xdd\\x07n\\x1a\\xa3p\\xbfu\\x813\\xf1p\\'q\\xbfa=,\\x98MaQ?@\\xf9I\\x8eh\\xe85\\xbfs\\x05\\x1b}\\x83rN\\xbfI\\x8a<\\xa4\\xc1\\xb7]?\\xbb\\x81\\xe4Sr(\\x80?\\xeat \\x8f\\x9e\\xc7v?x\\x06>\\xd5\\xa2SU\\xbf \\xe5\\xad1\\xbd\\xbbm\\xbf\\xba5y\\xdd\\x93\\xf0{\\xbf\\xb7\\xd4\\xd6\\xa8\\xf22b?\\xc0\\x89\\x84k\\xc8\\xb8c\\xbf\\xd2\\x904\\xe8=][\\xbf\\x10h{\\xb2\\x05\\xbf\\'\\xbf\\x05c\\xe5\\xb6\\x1f\\x18s\\xbf\\xf7\\xd3,\\xde\\xea\\x01\\x90?\\x84C\\xb2\\xb4\\x92\\xf2a?\\xac\\xd9QE\\xb6\\xf2:\\xbf\\x82+\\'\\x85#Hk?^*\\xe6\\xbb\\xda\\xc4Z\\xbfD\\xc9r\\x1c\\x1f\\xf10?\\tX\\xeb\\xf3\\x8d\\x80s\\xbf_\\x04K<\\xcdQf?\\x83O6~\\xce\\x8cx?`\\x9a\\xbax\\x8d\\x03}?\"W\\xf7\\xc1!\\xf0]\\xbf\\xe0\\xd1Vu\\x8e,&\\xbf\\x86Z\\xedj\\x96J\\x85\\xbf\\x1a=\\x1d\\xb0\\x85\\xd4~?\\x07;\\xd0\\xf5\\xa3\\nT\\xbf\\xbeaq\\x8c\\xc3a\\x84?Z-\\xd9\\xfc\\x15{b?\\x81\\xe4\\xbe3\\xa0\\x0bw\\xbf\\xba\\xd2VZ\"\\xbe\\x88\\xbf\\xaa\\xd8\\x1b\\xa5\\xec2\\x96?\\xc0\\xfb\\x14e(\\xf9\\x0e?hF>T\\xf9T\\xb3?\\xedRJ\\x00\\x91\\x0f\\x92?u p\\x94\\xbb[y?\\xd0O*\\xd0@\\x0c\\x9a\\xbf\\xaf\\x96b\\x1bM1S?fd\\xa5\\xf0\\xd8fq?\\xc3\\x7f\\xa1\\xc5\\xcf\\x0c\\x95\\xbf\\x1d`\\xce\\xb50kj\\xbf\\x9a%5\\xa0 Qz?B\\xfc`\\x00\\x08U\\xa6?\\xe0\\xa2#\\x86\\xfd!??\\x1fa\\x0e\\n\\x9c\\xc3r\\xbf\\x12&\\xe9\\xa0 \\xc8\\x98?pJ\\xf7\"\\xe1\\x9c\\x94\\xbfk\\xbb\\x9f\\xf7*R\\x86\\xbf\\x10\\xde\\n\\xb8\\xe9C\\x9c\\xbf(\\x11\\xa6PjXI\\xbfo\\xbf\\xb7Q\\x87AU\\xbf\\xb8D\\xc7}\\x82\\xc7Q\\xbf \\xf7\\x92+\\x83C\\x83?oP\\xb5\\x1d\\xca\\xf5\\x98\\xbf&\\x97*\\xa0\\xf3\\x80j\\xbfl\\t\\xc7\\xfc\\x0e\\xf8O?\\xbb\\xfda\\x8dK\\xc3\\x81\\xbf\\x93\\xb75\"(\\xbcu?1\\xfb]\\xe9\\x7f?\\x85\\xbfT\\xe9\\xa5H\\xfb\\xd2\\x82?\\x90h\\xbf(i\\xeb|?\\x84\\xc57H\\xdbE\\x85?\\x88\\x972B]\\x14\\x91?\\xf1\\xc5\\x9a%\\x81\\x94\\x84\\xbfA\"\\x94\\n\\x9c{\\x99\\xbfz2\\xfa\\x0b/*\\x89?\\xaaou\\xbd(_`?\\xfe\\x04\\xb9R35m\\xbf|\\x12\\xfbX3\\x1c}?\\xbe\\xea\\xc8\\x06\\xcc];\\xbfhoQ\\x14-\\xe63\\xbfE\\x99\\x91Xd\\xa3\\x83\\xbf\\x91\\x01`@\\x90?>?,\\xef\\x17Rzp4?U\\xc3\\xab4\\x00%\\x86\\xbf\\xb6\\x1b\\xb1\\xb7P\\x00n?\\x8f\\x88\\xa7sV\\x86f?P\\x1a\\xacp\\xcc\\xb3\\x81\\xbf\\xbe\\xdf/J\\xda\\xb1S\\xbf8\\xcf\\xe8\\xbb\\x18\\x968\\xbfd\\x17~\\x94\\xfc\\xfaQ?\\x84C\\xb2\\xb4\\x92\\xf2a?\\xceN\\xbby\\x81J\\x81?Q\\x8f\\x0c\\xd8?\\x9bi\\xbfb\\x9b\\x88\\xea=\\xf5m?\\x08t\\xc6\\xa5\\xac\\x0cl?\\x9a&m+\\x80\\xd6y?dC\\x925\\xa9zP?\\xacw\\x18#f\\xe5Q\\xbf\\xcb\\x12\\xaaS\\xff\\x11C\\xbf\\x98l\\x1c\\xa8\\x8a\\x0c!\\xbfx\\x9ez\\xec\\xe0\\xa1B?*\\xb8.\\xa8m\\x17f?)\\xbd\\x91\\xd7\\x1e\\xf0T\\xbfp\\xa2\\xf2,\\r\\xa8>\\xbf\\x10j3\\xde\\xad\\xc0a?\\x80\\x85\\xdf\\x7f\\xb2V7?\\x89\\x85\\x8a6\\xf9\\x05\\x85?\\x92\\xb5\\xeb!\\xe0\\x1dp?I)\\xe2v\\x179b\\xbfS\\x06\\x86&J\\xee\\x86?6\\xe8\\xc3\\xd5\\xc9\\x93S?\\x99\\xb6\\xa7\\xe0\\xe5\\x9e\\x94?~/(\\xb3\\xd9*i?q\\x1f\\xd08\\xb5;N\\xbf\\x84\\x8f\\xe9H,\\x94\\x86\\xbf\\xd4Jini\\xe6\\x80?\\x94\\t\\xa6\\xa5\\r\\x82\\x8a?`J^z\\xd6\\x81x\\xbf\\xd9[uY\\xfa\\x1ds\\xbf_\\xa8v\\x0c\\xa7\\xfch?\\x02\\x1fo\\xeau\\xcbd?\\xe0M\\x80\\xc8\\xf4^5\\xbf\\x0e\\xd8\\x7f\\xe9\\xf0\\xdc\\x80?\\xa4\\xa5\\xb3\\xa0R\\r{?\\xf0\\x9d\\xbcs\\x1c\\xb4S?Z\\xa4\\xab\\xb3y\\x0bZ\\xbf\\x00nW\\x0cK\\xe7>?(\\xa47\\x94\\x142\\x7f\\xbf%X\\xf2#\\xef\\xcaa\\xbf\\xc04\\x15\\\\+\\x91n\\xbfKG\\xbe%\\xbdU|?\\x10\\xa6s\\xec:N\\x82\\xbf`T\\x87\\xc2\\x8c9@?\\xc81\\x8f\\xed\\x10\\xc7Q\\xbfTN\\x03\\xa1\\xc9\\x8ds\\xbf~\\xc9\\xa8\\xf5Z\\x0eW\\xbfV\\xdf\\xe8\\x84\\x9a\\x81X\\xbf\\xd9\\xbc\\xe8\\xba\\x0c\\xe2a?\\x18\\xa8\\xfc\\x00\\x85\\xe4^?\\xbc\\xa12P\\x99/^?\\x92\\x034\\x99\\xa0\\xceg?\\xd3x\\x00Z3(b\\xbf\\xb4\\x00\\x05\\xe6\\xe2Bp\\xbf-\\x93\\x7f\\x1a\\x1e4\\x9a?\\xfe\\x9d9C\\xfc\\xb6\\x83?\\x00\\x06\\xf9\\xbdxRk?\\xba\\xcc\\xa8\\xe9-?\\x9c?$B)\\xa8M`^\\xbfra\\\\\\x9e\\xb2A\\x8b?=\\xe5-K\\x19%\\x95\\xbf\\xa8T\\x82l/wX\\xbf\\x1a\\xa54\\x03\\x93\\x07c?%\\xd0-\\x00\\x8c\\x86\\x94\\xbf\\xc2ss2\\x93}d?\\xe9\\x83\\xf2U\\xdd\\xe2\\x83?\\x0f\\xcb\\x84\\x9a\\xba\"\\xa9\\xbfA#z\\x9d\\x07\\x91\\x18?^1\\x14\\xdbFbt\\xbf\\x92\\xfa\\x88\\xd1\\x0c\\x82\\x80\\xbf\\xac\\xd9QE\\xb6\\xf2:\\xbfQ\\x8f\\x0c\\xd8?\\x9bi\\xbf\\x03\\x9b\\xe5\\xef\\xce%\\xbc?4\\x9c~\\x9c\\xc7Ag\\xbf\\xd4\\x07\\x1e\\xaa\\xa5\\x97\\xa7\\xbf\\x92\\x00\\xf4viR\\x8c?\\xa5_}\"\\xf8\\x1a\\x91\\xbf\\xe1\\xf6}x}av\\xbf\\xce\\x07\\x8eQ\\xe1\\x9eq?@\\x177\\x05\\x80\\xdaX\\xbfm\\xf84\\xa0=h]\\xbfL\\xf3\\xcb\\xd5_{\\xa6\\xbf\\x94\\x80\\xb8\\xe63j\\x8b\\xbf\\xea\\xd0\\xd6\\xf1D\\x17\\x9f?w\\xa7d\\xde\\xd1\\xa9h\\xbf\\xb7\\x81 \\xfb\\r\\x86\\x83?\\xd0\\x0b\\x97-=4\\x92\\xbf\\xce\\xf7\\xe4\\x16!\\xc4b\\xbfO1{\\xcd\\xb9T\\x83\\xbf\\xa0\\x9a\\x04\\xfa\\xa3\\x8e6?0\\xd7;w\"\\x9a`?\\x7f\\x14\\xf0\\xda\\x98\\xb5\\x94?D&0\\x1aG\\xb7T?\\xeaea\\xbd?\\x93x\\xbfh\\xf1t\\x91\\x80/\\x93\\xbf\\x88*\\x06\\xf0jeW?Xx\\xa2\\x05\\x1e\\xa4\\x96?\\xa2\\xd8\\x1a\\x0cg\\x97X?p3$\\x94\\xa3CH?x\\xa9{\\xdb\\xb7\\xa9\\x19?\\xb8\\x93\\x9a\\xeb\\x878S\\xbf\\x80P2\\xf3\\xc4\\xac8?\\x87l&#\\xc8\\xf6\\x83?0k\\x87\\xba\\xdb\\x81]? Z\\xaf \\x078s?\\x00\\x19/FjtY?\\x1c\\xff\\xb1H#\\xe4\\x92?\\x81C\\x98g4\\x07\\x94\\xbf7\\xad\\xf2\\xa3\\x14\\x12\\x85\\xbf\\xd2\\x0fb\\x1c\\xa0\\x8d\\x96\\xbfb\\xd9\\xc6\\x14\\xa4\\xae\\x8e?\\xb83\\xec\\xd2\\xc23\\x8a\\xbf\\x80?`N\\x1a\\xdc\\\\?\\xf0\\x1e\\xfd\\xd2\\x0c\\xfc@\\xbf`\\x8b\\xa6\\xe1\\x8b\\x81\\x1a\\xbf\\x8c\\x1d\\x080\\x1f*s\\xbfp\\xc5;\\xcf~\\xc1t?\\xf35n\\xa0<\\x95\\x87?\\x96\\xa4\\xc8Em\\x83w\\xbfv\\xe7yy\\xc8\\x11\\x82\\xbf.*\\x01q\\xa8;r\\xbf\\xf6\\x13\\x8f\\xe2\\x90}}?\\xb0k\\x91 \\x99\\xdbu?,c\\x0c\\xa8Hk\\x92?f\\x87R\\xde\\xe7\\x1f\\x80?Dfe\\x0e6\\xda}\\xbf\\x00\\xdej\\x9e\\x03\\x12\\x94?\\xb2j\\x1bG\\xba8w\\xbf>\\xa6\\x00\\x11\\xbczq?\\x84\\xe7>#\\xf4\\x00\\x90\\xbf,)\\x85-.\\x8dP?\\x92p\\xf1\\xfe\\xd2\\xfcV\\xbf,\\x86\\x17\\x88\\x98\\x1c\\x99\\xbf_bA\\xc5\\x072\\x85?0\\xebm\\xc6\\xb3\\xfdm?T \\xaa\\xf2\\xbdu\\x93\\xbf\\xb3\\x03\\xb9 y\\x8a<\\xbf\\x80\\xc1`%K\\xa5\\x11?\\xb4\\xb3#\\x17ENw\\xbf\\x82+\\'\\x85#Hk?b\\x9b\\x88\\xea=\\xf5m?4\\x9c~\\x9c\\xc7Ag\\xbf\\xe4\\xc2\\xf8\\xb3\\xe59\\x9b?`jI^\\xa0\\x05A\\xbf=\\xa7\\xea\\x19W\\xe2\\x89?\\xbc\\xd9P\\xb8\\x899\\x8d\\xbfP\\x0c%\\xd9\\xc7\\xacp\\xbf\\x04\\xf7i=P\\xb1r?\\xe0\\xb9\\xc54\\xfaxN?\\xe0\\xe3Z\\xa4b\\x13e\\xbf`P\\x8f\\xc3\\x86\\x94\\x87?\\xf5\\x8a\\x9d\\x7f\\x81\\x8f\\x94\\xbf2 \\xac\\xf3\\x1b_\\x89?\\x18\\xedk?\\xaf\\xa7D?\\x9e\\xac\\xd0\\xa9\\xc6m\\x86?\\x1cN\\x12\\x04$h\\x91?\\x8e\\x95e\\x02j\\xe8s?\\xb6\\x1c\\x91k\\xec\\x8e\\x85\\xbf\\x94\\xa0\\xb4`\\xbfG\\x8b?\\x00,[\\xbf}\\xb2;?\"\\xc8\\xc1z\\x98a\\xa6?\\x9b\\xf6\\x9a\\xda\\x94\\xa1\\x8e?\\x9c(\\x9c\\x0f<8g\\xbf\\xd8\\xb6\\xeb\\x1f\\x05\\xa5\\x9b\\xbf~\\x9b\\xce:\\xc9\\x90u\\xbfh\\xd7`\\xc0\\x80\\xd5\\x93?e_\\xcfo\\xf8nj\\xbfH\\x07\\xe5\\xc8\\xf9\\x83q\\xbf\\xa4\\xc7\\xd9>7n\\x8a\\xbf\\xe4\\xf3\\x91\\xcaI\\xfb\\x82?\\xbe\\x11\\xb4d\\xa39\\xa0?\\x0c\\xb0E\\xf6\\x84a\\x87\\xbf\\x8c\\xa7t\\xb5\\x9a8\\x87?#\\x92m\\xaf\\x91\\x84\\xa2\\xbf\\\\\\x1b\\xa9\\x04\\x18\\xd5\\x95\\xbf\\xce\\x1f\\x87D\\xec\\x8b\\xa1?I\\xcbT\\xd87\\xe1\\x9a\\xbfx!R\\xd2\\x96S\\x90\\xbf0\\xbb\\xd7\\x9d\\x8d\\xa4\\xaa\\xbf\\xdd\\xcfE\\xc2\\x9bE\\x9b?\\x18\\x02\\xc2N\\xfe)\\x83\\xbf\\xd8\\x00\\x85\\x92^u|?\\xa0\\xd1\\xd3\\x85\\xc9Nu\\xbf\\x00vkt@\\x90\\x0c?\\xec\\xd1\\x80G\\xeb/\\x83\\xbf\\xa0S\\xe4\\xa9\\xda\\'P?\\x14\\xc7R\\x1b\\x1c\\xc3\\x81?\\x80T\\xf3\\xe6\\xa1\\x9fo?n&.\\xd8S\\x0b\\x89?:o\\x9e\\xa3]\\xc4\\x82?8~4\\xb7\\xf6-j\\xbfJ\\xd1\\xad\\x16\\xa8V\\x90\\xbf\\xc8&\\xcbK7b\\x82\\xbf\\xc8\\xccs)\\xb8\\x96z\\xbf\\xd0\\xc5P\\x854\\xdcz\\xbfT\\xd5e\\xa5\\x9e\\xae\\x82\\xbf\\x86\\xbf\\x0b\\x05\\xff\\x87k?B\\x828:5\\xa2h\\xbf\\xb0\\xf5\\xd8QV\\xeae?\\x00\\xee\\xd7\\x12\\xa5\\xb5@?M\\x7f\\xe2\\x89o\\xf8T\\xbf`.h\\x80q\\xe5n?\\xfcx\\xa4\\xe3\\xad\\xbf{?\\xba8n\\xec\\x88\\xa7k\\xbf\\x00\\x88k\\x0cQ\\xfd\\x98?\\x08X\\x19\\xbb\\x16\\x04F\\xbf\\x7fCq\\xb5b\\rc?8\\xcf\\xf7\\x16\\xa1\\x8aw?^*\\xe6\\xbb\\xda\\xc4Z\\xbf\\x08t\\xc6\\xa5\\xac\\x0cl?\\xd4\\x07\\x1e\\xaa\\xa5\\x97\\xa7\\xbf`jI^\\xa0\\x05A\\xbf\\xaa\\x99\\x90\\xdd6\\x11\\x9e?\\xc8\\xfd\\x9c\\x9f\\xbaxE?\\xc2?$\\x07v\\xb6\\x89?<\\xafT#\\x13\\xe7k?F\\xc6\\xcbk^\\x02q\\xbfP@\\x8e(\\x0e\\xdfO\\xbfl\\xe9\\xdaH\\xa6\\xe9F?@\\xac\\xa6KD)\\x93?\\xb9So\\xbaxN\\x8a?y\\xa1\\xbf\\xecX\\xbc\\x96\\xbfB\\xbfL\\x10j\\x9dl?\\xba\\xca3\\x8ec\\xcc~\\xbf\\xfeC\\x92k/g\\x83?\\x04\\x1c\\xa8\\xb8\\xbe\\x06Z?Z4e0\\xc2\\xbf}?@\\x07\\xffe]\\xd9%?@\\x89,\\xc9M\\x8a;?\\xa8\\xa3\\x85\\xb2\\xc2:\\x8f\\xbf\"\\xdd\\xa9&\\x81\\xf8\\x82\\xbfN\\x9e\\xda[}\\xc1g?\\x9c/\\x18\\xbbk\\xdb~?\\xf1\\xc8\\xcd\\xdf\\x0e\\x84\\x83?8\\xbaL\\x832\\x9a`\\xbf}\\x08\\xddFv\\xae[?L/\\xf8S\\xbeuj\\xbf\\x8d\\x82,\\t9z\\x84?\\xe0\\xa9\\xa8\\xce\\x07\\xd9Y\\xbf*}q\\xb31\\x9e\\x97\\xbf\\x8b\\xc8!\\x81\\x83d\\x89?x\\x84zG\\xa9\\xf3u\\xbfn[k\\x81\\xd3\\xd6\\x9a?+\\xcf\\xd9Y\"\\xdep?\\x80\\xf6\\x86&3tt\\xbf\\x1eiK\\x829\\x91\\x87?KD\\xa43.\\xd7\\x86?\\xa0\\xfa\\xf6s\\xeb\\x8a\\x8e?o :\\xf7H\\xfb\\x86\\xbf]\\xb85Y\\xe9\\xccx?\\xbcB\\xc0\\xc0O\\x93n?\\xd4\\x9c\\xec\\xdbh\\x8es\\xbf\\x00\\xdd\\xcfTI|\\x13\\xbf`\\x8f\\xc8\\xe3c\\xe5\\\\\\xbf\\xd4\\xdd\\xa2\\xb5c\\xc6`?\\xa4\\x02Ul\\xa6P\\x7f\\xbf\\x98\\xb5\\xb2\\xd8W4W?\\x00X\\xf4-\\x80\\x9d=?\\xacP*W<\\x02f\\xbfH\\t@\\x9a\\xf9\\xbcW\\xbf\\xd4\\xfd\\xdc\\xec\\xa4\\xa3t?\\xee\\xccd\\x022\\xd4\\xa2?\\x06\\xca\\xf2\\x89\\xf5\\xd3r?\\xb6Y\\xfe\\x97\\xe1\\x06\\x8e\\xbfF\\xa61@d\\xff\\x90?\\x91[\\xae\\x9d\\xbf\\x82\\x83\\xbf\"D\\x99\\x81-Z}\\xbf\\xd6\\x0c;\\xfc\\xc2?\\x9c\\xbf\\tG,\\xc6\\xaf\\xacS\\xbf\\xdbR.\\x9fk\\xa0q\\xbf\\x1a\\xd3\\xf5k\\xeaz\\xa5\\xbf\\xddp\\x14\\xe1\\x9c\\xe8\\x84?$\\xb0Ag\\x0b\\xdct?\\x0f\\x17\\xbd\\r(6\\x97\\xbf\\x017W\\x97\\xe0\\xca\\x83\\xbfH\\x94+v7\\xd1W\\xbf\\x02\\xe7\\xd3\\x8b\\xd9\\x9eS\\xbfD\\xc9r\\x1c\\x1f\\xf10?\\x9a&m+\\x80\\xd6y?\\x92\\x00\\xf4viR\\x8c?=\\xa7\\xea\\x19W\\xe2\\x89?\\xb0\\xfd\\x9c\\x9f\\xbaxE?\\x1e+\\x89m6,\\xb7?\\xa0vG\\x9f0^_?\\\\\\xce\\x82\\x1e\\x97\\x96\\x94?Z)\\xfa\\xb9`j:?\\x90\\x80$\\xeb}o*\\xbf\\xc0\\xad\\x9eh\\xb5+k\\xbf\\xe0Mv\\xc3\\x95px?i\\x81}\\xb1#\\x19\\x8a\\xbf\\xebP\\xb0\\'U\\x0fw?\\xbb\\x80\\x03\\xf0\\x12\\x8f\\x9a\\xbf\"\\x07c\\x93i\\x0fr?\\x00\\x13\\xc2\\xaf\\xa3FR?3\\x19\\x1d3\\x82\\xf3v?\\xe1\\xc1qh\\x11\\x9c\\x87\\xbf\\x91+\\xbc\\r\"\\xba\\x80?\\x00\\xfd\\x1d\\xfa\\xa1-\\xf7\\xbek\\xa6i\\xf62\\xa1\\x8f?\\xde\\rV\\x862\\xd2a?V\\x19\\x9dQ\\xcc\\xb7w\\xbf\\xf6]#|d\\x04\\x93\\xbf\\x02H\\x93\\xd5\\xc3\\x08b?\\x8a\\xe4\\xd8\\xd4\\xaa\\xaf\\x9c?_9\\x8dQ\\xd6\\xf4`?PJ\\x0f\\xe3\\r\\x02]\\xbfN\\x95\\xf0\\xff;\\xe43?\\xc2\\xc0Re\\x15\\x10\\x89\\xbf\\x84\\xe4\\xbe\\x9d\\xf6\\r\\x88?\\xec\\xa3\\xa3\\x81i8m?\\x7f\\xb8\\x1eE\\x0e\\xa1\\x82?\\x0c1\\xbc\\xce\\x86\\x8e\\x81\\xbf\\x94\\xb3T\\xbca\\x9a\\x86\\xbf\\x1ef\\x13.?<\\x9f?\\xae&\\xb3S\\xa2\\x84\\x97\\xbf\\x13\\x15m\\xd3\\xdd\\xb2\\x89\\xbfF\\xf3S\\x86U\\x9e\\xa4\\xbf\\xfcj\\xbb\\x1d\\'\\xac\\x97?\\'0\\xbb\\xe8\\x1e:\\x86\\xbf\\xf8\\xcd\\xf8Nj`n?\\xc0\\xe1\\xd7\\x9d\\x8d\\xb8s\\xbf\\xa03\\x87\\xccDq\\x81?J\\xeek<5\\x95\\x89\\xbf\\x1aS\\x81\\xc1\\xd3,\\x86?\\xa9\\xbd\\xbb\\x92\\xb1\\x0c\\x87?&M\\xe5\\x13M\\xdeh?\\xd2\\x12\\x9c8\\xccs\\x81?\\xa0\\x93\\x9bZ\\t\\xc3)?h\\xe4\\x11\\xe3\\xa7\\x80U?\\x9a\\xa6\\xad\\x8d0)~\\xbf`Vt\\xbak\\x9b\\x86\\xbf%m\\x17s*im\\xbf\\xf8~\\xb6\\xc1\\x8a\\x03v?\\x9c\"z\\x11\\xe7\\xb0\\x92\\xbf\\xb6\\xf9=:\\xe6\\x0b}?\\x02]\\xaa\\x1f\\x88Nz\\xbf\\xf0G\\xc0\\xe8\\xffv~?HA\\x06a\\x9d\\xe7d\\xbf@hA\\x8c\\x91\\xe6Q?\\xe0\\xedr\\xa7fj\\x91?\\xe8\\xf5\\x15\\xdd#\\xb2i?\\xb0\\x17m\\x1a\\x01\\xb9e\\xbf\\xbc\\xebt_\\xe8\\x0b\\x9b?\\xa6r\\x07\\xe9\\'\\xe7r?\\x14x\\x7f(\\x91\\xcfj?\\\\\\xa6F\"\\x07\\x8e\\x83?\\tX\\xeb\\xf3\\x8d\\x80s\\xbfdC\\x925\\xa9zP?\\xa5_}\"\\xf8\\x1a\\x91\\xbf\\xbc\\xd9P\\xb8\\x899\\x8d\\xbf\\xc2?$\\x07v\\xb6\\x89?\\xa0vG\\x9f0^_?\\xecS\\xb3\\x0bX\\xac\\x9a?\\x98\"\\xc4T\\xf6[\\x7f?~y\\xa0J{\\\\\\x7f\\xbf\\xb4\\xcc\\xb4<\\xa2=c\\xbf\\xfe\\xda1\\xd1\\xda{`?\\xc0]\\x1b\\xb7\\x92\\x15W?\\xbe\\xe9\\xe2K\\x08%\\x93?\\xd6g\\x18\\xa3d\\xff\\x90\\xbf\\xfff\\xfdW\\x10\\xd3p\\xbfX\\xb1=\\x90L\\x91\\x8d\\xbf`cj\\xdeg\\xedw\\xbf\\xe8\\xf6\\x06C\\x7f\\x91R?\\xf4M\\x88\\x90\\xd5\\r\\x8a?\\x160\\xe0\\xc3\\x95l\\x82\\xbf\\x00\\xed\\xb4hO\\xfc\"?\\xdc\\xcf\\\\4\\x17\\xfc\\xa6\\xbft,\\x9b\\xc6\\x07\\xa6\\x92\\xbf\\x0cR\\xd2\\x82\\xdf\\x8b\\\\?\\xac\\xf6\\xb00\\x16\\x08\\x98?\\xaba\\'\\x1b\\r\\xfb\\x82?<\\xa5\\x0b\\xeb\\xae\\x94\\x89\\xbf\\x13\\x86\\x7fc\\x0b\\xaew?\\x00\\x10\\x81%\\xc3*=?A\\x9a&\\x975\\xc6\\x8b?\\xca6\\xbb\\x82\"\\x12\\x8c\\xbf\\x84~\\xbe\\x90xM\\x9c\\xbf\\xdc\\xd8\\xb7\"\\x9f\\xe3\\x8a?D<\\xf2,\\x80\\x04\\x84\\xbf4\\xa3/t9F\\xa0?\\xb9\\x03\\x04\\xe1\\r\"\\x95?\\x00\\xae\\x9c\\x0el%\\x91\\xbf\\x88z\\x80\\x1a%)\\x94?z\\xe5\\x93(\\x0eR\\x90?\\x8c\\xfb\\x13l\\xd8\\xfb\\xa3?\\xd4A\\x9e\\xb0\\xa8\\xda\\x93\\xbfF\\xce\\xcf\\x9f\\xd0<\\x8a?\\x80\\xa5|,\\xe6\\xeaw\\xbf\\x88./\\n\\xddyu?O\\xe5\\x92?\\x8f\\xceu?`d,\\xac\\xc7\\x07|?@\\xee\\x12DN\\xdfB\\xbf\\xb0\\xf3\\xc2\\x986\\xb4}\\xbf\\xc0\\xb9\\xb5T\\xd17R\\xbf\\xd8\\xde\\x0ek\"wv\\xbf$\\xc1vkz\\xb8\\x7f\\xbf\\x80\\'\\xe86l\\xfd2?\\xcc\\xbe\\xda\\x7f\\xa2S\\x8b?t\\xc4\\xf8\\x1d\\x0e \\x88\\xbf2\\x0e\\x8c\\xe8}$l\\xbf\\xa8K\\xf5\\x9e\\xf3\\xecp?pF\\xeb\\xf9g\\x0c\\x91\\xbfXH\\x8b/R(J\\xbf\\xca:ww\\t\\xe6\\x88\\xbf\\xf0\\xa7\\xffb^\\x9d\\x94?p\\x05p\\x9e\\x9bu]?\\x80\\xae\\xaa\\xe8\\xa1\\\\1?\\x00\\xe7\\x80\\xaf\\x92\\x1a4?T\\xc5E\\x1d\\xe7\\xc6w\\xbf\\xd8\\'*\\xa1\\x9aaT\\xbfD\\xe5\\xa8\\xe17\\x0c\\x91?\\x03sr\\xb4\\xb1\\xf7d?\\xb8\\xf5j\\x89B\\xfaA\\xbf\\xfc\\x8a(\\xc5\\x9a\\xcc`\\xbf_\\x04K<\\xcdQf?\\xacw\\x18#f\\xe5Q\\xbf\\xe1\\xf6}x}av\\xbfP\\x0c%\\xd9\\xc7\\xacp\\xbf<\\xafT#\\x13\\xe7k?\\\\\\xce\\x82\\x1e\\x97\\x96\\x94?\\x98\"\\xc4T\\xf6[\\x7f?)o\\n\\xff_\\xff\\x9b?\\x1c<Ea\\xbdxz?\\xc8\\xebr{j\\xbcq?\\xf47\\xc8\\xaa:\\x0f]?\\xa0\\xd3>J\\xd4\\xfbj\\xbf\\x149*F\\xaf\\x07B\\xbf`;zD&\\xf9c\\xbf\\x1f\\xe3\\x99\\xed\\xf1\\x94\\x91\\xbf\\x88\\xdb\\xe7Y\\xfdgs?/#\\'\\x0f\\xeb\\x10\\xa1\\xbf\\x97\\x08\\x02\\xdb\\xb9\\xec~\\xbf\\xe6Lb\\x06=\\xeb|\\xbf\\xb4\\x80?\\xb6\\xfa\\rv\\xbf\\x00K\\x8f\\x8fcE\\x0f\\xbf\\xfe\\xc3\\xff>\\x7f4P\\xbf\\xc0\\\\\\xc6\\xd8m\\xbd\\x84?\\xa7,/\\xa8\\xbf\\xfbe?\\xc0V\\x16\\x90\\x85[\\x86?E\\xd0\\x89\\x05\\x97\\xe0\\x82\\xbf\\xe0\\xa4\\t\\x8f\\x17k\\x8c\\xbf\\x00S\\xae\\xff\\xa2\\xd3r\\xbf\\xa44K\\x80\\x0c\\xfc\\x82? g\\xd3\\xa6X&k\\xbfb\\x9fT/(\\xc6\\x84?\\xb0\\xef\\x99O\\xb9\"\\x82\\xbfP\\xb1*\\xef\\x05k\\x8c\\xbf\\xee\\xe1\\xd9\\xaby\\xe2\\x83?\\xc0\\x06\\xc3\\x14P\\xa3b?\\xda \\xa8\\x7f#.v?\\x9e\\x8f\\x15\\xb1\\xadr\\xa2\\xbf\\xce\\x1b\\x05\\xca\\xfbC\\x93?\\x10\\xcb\\xc6\\xc9(>/\\xbf\\xac<\\x142oa\\xa0?\\x8e\\xe0\\x96\\x17J\\x0f\\x8c\\xbfZ\\x13\\x1a\\xe2q\\xa1}\\xbf(\\xb1\\xf2p\\x0f\\xf0d\\xbf,\\xfd\\x8c\\xf8W\\tq?j\\xaa\\xfaD\\x1d\\xd0U\\xbf\\xd8b\\x94\\xdc\\xbbdt?\\x04\\x161\\x11\\x951`\\xbf\\x00\\x9f\\xa3\\xb3\\xe4\\xeaK\\xbf\\xa8\\xba\\x95\\x86\\xe9\\xd9S?\\xc0KG\\x9fB\\x81:\\xbf\\x00\\xe0V\\xde\\x13\\xa4\\xfb\\xbe4\\x9b\\x8b\\xd4\\r\\xd9m\\xbf\\xe0\\xadS\\xc8\\x93\\xd2t\\xbf`\\xe7<\\xf6o\\xe0k\\xbf4I;\\xc7\\xf0\\xb4>?\\xd0r\\xbfr\\xec2d?pV\\xbf~\\xfb2B?{LzO\\x0e\\x9fe\\xbf|y\\x8d\\x9f\\x8dNK\\xbfp\\xf2Lo\\xed\\xfa\\x85?\\x137\\xb41@\\x9ca?\\xac\\x9bI\\xc7\\xd9\\x7f\\x1e? \\xed<\\x02R\\x95e\\xbfo\\xd1\\xe0q\\x9bWv\\xbf\\xc8\\x01\\xae95\\x86*?:\\xdb\\xbajz\\xcaj\\xbf\\x14>\\xce\\xadL_\\\\?gi\\x8e\\x0cN\\x01C\\xbf\\xe9y\\xffZ/v\\x7f\\xbf\\x82O6~\\xce\\x8cx?\\xcb\\x12\\xaaS\\xff\\x11C\\xbf\\xce\\x07\\x8eQ\\xe1\\x9eq?\\x04\\xf7i=P\\xb1r?F\\xc6\\xcbk^\\x02q\\xbf`)\\xfa\\xb9`j:?~y\\xa0J{\\\\\\x7f\\xbf\\x1c<Ea\\xbdxz?\\xc0\\xa0\\xbaW\\x0b\\xe2\\x8a?M\\x0cML\\xcddj?\\x00\\x80\\xdb\\xe2\\xbev\\r\\xbf\\xe8\\x02\\x01{\\xdeih\\xbf\\xdfK\\xe3\\xbb\\x0e\\xaa\\x83\\xbf\\xdeu\\x84\\xc6\\x0b?s?\\xcc\\x15\\xb8\\x1d\\xfc~f\\xbf\\x17\\x87:K\\xbec\\x83?0\\xdeW\\xc6\\xe6\\xcc\\x81\\xbf@\\xe4\\x93:C5\\xef\\xbe(\\xa2lU\\xa85~\\xbf\\xf0x\\xef3\\x1fYu?@\\x90\\xeb\\xd2\\xdc\\x8eT?W\\x1c$\\xc5\\\\\\xac\\xa3?\\xfd\\x0c\\xef\\xf1S1\\x94?d\\x7f\\xa77\\xe4zg?\\x12\\x1d\\x08\\x8b\\x84\\x8e\\x90\\xbf\\xb8A\\xa9`\\xcc\\x08\\x88\\xbf\\xcd\\xca\\xb2\\xa60\\x02y\\xbf\\x91\\xf7\\x90\\x0e\\x8d\\xfd\\x80\\xbf\\t\\xdd\\r\\x81\\xae\\xc8f?\\x89\\xd0Xu\\x80\\xa7{\\xbf\\xd9\\xb1\\xaf\\xd5$\\xd6\\x9b?\\xe6\\xadm\\xd6\\xe2\"\\x80? =Y\\xbd\\xfb\\xe9\\x86\\xbf\\xfe~\\xea\\x838Jp?\\x9a\\x8c\\xcf\\xf5\\xab\\xf9\\x8d\\xbf\\x1a\\xcc\\x01\\xe8\\xefT\\x82\\xbfg-\\x12\\xd0#\\xa4\\x82\\xbf&&kSd\\xb1y\\xbf+v\\x9d\\x01\\xee\\x83a\\xbf\\xb4\\x1b50\\xdbzq\\xbf\\xecQ/\\x93(\\xbf\\x83?\\xa6H\\xf5~4\\xb7\\x93\\xbf8\\x08\\x92\\x1f\\xd7\\xb7H\\xbfx6\\xdb\\xecT\\t0?_\\x88\\x93\\x8f.d\\x85\\xbf|\\x06|\\xbb\\x8e\\xc1[?/\\x81\\x84.\\xe7\\x89f\\xbf2f\\xa3\\t\\xe2mw?^\\xc0\\xfe\\xf0\\xd32s?\\x10\\x18\\xf0\\xfc\\x84[u?\\xf1[[w\\xd5I\\x81?\\x05\\xb8\\xf4A\\x85\\xa7z\\xbf\\x136\\x15\\xc6\\xa9\\xf2\\x8b\\xbf \\xb7\\x7f\\x99\\xe1Kz\\xbf\\xae4]-\\xe4\\xa1m\\xbf\\xc0\\xc0\\xe2\\\\\\x8a{\\x1f?\\xe0U\\x85m\\xfa\\xe4R?\\xfa\\r_\\x8c4CR\\xbf\\x84V\\xe5J`\\xc2H\\xbfdg\\xef\\xacx%|?\\xdai\\x9av\\x88xr?\\xe4r\\x1f8?\\x850\\xbf d\\xf4\\x948vF\\xbf\\xaf\\xb7w\\x84\\x13\\xc0r\\xbf@\\xe7{t\\xd2\\x0b\\x1b?@gG\\xf6x$W?\\xd5\\x93d\\xa2\\x14N\\x15\\xbf\\x04 \\x969\\xec$H\\xbf\\xe8\\xc7MJ\\xee\\x9cP\\xbf`\\x9a\\xbax\\x8d\\x03}?\\x98l\\x1c\\xa8\\x8a\\x0c!\\xbf@\\x177\\x05\\x80\\xdaX\\xbf\\xe0\\xb9\\xc54\\xfaxN?P@\\x8e(\\x0e\\xdfO\\xbf\\x90\\x80$\\xeb}o*\\xbf\\xb4\\xcc\\xb4<\\xa2=c\\xbf\\xc8\\xebr{j\\xbcq?M\\x0cML\\xcddj?T\\xe4\\xbeS\\x8b\\xc7y?\\x16\\x8b\\xafm\\x99&@\\xbf\\x80 \\xba\\xd4\\x98$\"?\\x05\\xb7\\xfc\\xb7\\xf3\\x1ev\\xbf`\\xf9`\\x81z\\xfdu?\\xf7\\xad\\xbf\\xc7N\\x80c\\xbf\\x19\\xd2\\x8f\\x10\\xe1Cy?\\x8c\\xd5\\xad\\xe5*\\xebp\\xbf\\x80\\xf0\\xd4\\xc9p5j\\xbf\\xab2\\x90\\xcb\\xcb\\x02~\\xbfU%\\xd2\\xb8Z\\x9f\\x81?p\\xb4R\\x86\\xfd\\xe4:\\xbf\\x97\\x17Y\\x80\\x07;\\x9f?@\\xa0\\t\\xf6j!\\x84?\\xeaF\\x82\\xc2\\x86\\xd4m?\\x14\\xae\\xba\\xbd\\x13\\xd6m\\xbf\\x18\\x92\\x8b\\x8c\\x87\\xfeb\\xbf\\x00#\\xe0\\x0b\\xf27-\\xbf\\x87\\xc9\\xf9\\xad\\xc1&\\x83\\xbf\\xb0Z\\xe9\\xf1`\\xc9D?\\xe7H4\\xef\\xddmG?~\\xa7(T\\xa5\\xd9\\x93?\\xe0\\x83\\x19\\x81\\n\\xe5J?\\t\\x97\\x97p\\t\\x05\\x82\\xbf\\xb6\\x9a\\xae\\x06\\xd1s\\x92?\\x8e\\xf2\\x12\\x921]\\x8d\\xbfF\\xeeA\\xff\\x99\\x08u\\xbf\\x1e\\xe0#L\\xcfH\\x95\\xbf\\xb6\\xc0\\x85rG\\x94p?\\xf0\\xda\\xd0c\\x1c\\x10n\\xbfX\\x8e\\xfd<\\x15\\xe6t?8\\xd4+\\x19|\\xc0P?J\\x9c\\x17\\x8a5\\x03\\x87\\xbf\\x80\\xad2%\\xc1yV\\xbf\\xa0\\xc8\\xc8[\\xc7N9?\\xee/\\x9f)\\xd0\\x00d\\xbf<\\xb5\\xda\\xe3\\x98Wj?\\x8e\\xc5.E\\x1b\\xe8s\\xbf@\\xfe\\xe6_ySh?j \\xa6\\xf4\"\\xe7c?\\x84\\x9f\\x98\\xe3Q\\x1fk?\\xa4N\\x0f\\x11a\\xb6{?\\xff\\xb4@\\x00\\x10\\xd4r\\xbf\\xa6\\xdc\\x95T\\xd4\\xe7\\x88\\xbf\\xa1\\x0e>i\\x99\\xd0\\x82\\xbf\\xee\\x88\\xba\\xf2\\xd6R@\\xbf\\xd4\\xb3}\\xd7x\\x18_?\\x12\\x18\\x9a\\xd0_Y\\x84\\xbfQ\\x8et\\x86\\xa9BL?\\x1c\\xca\\x9f\\xaeM\\xe5d\\xbf\\xfa+s\\x88\\xc1b\\x83?\\x13\\x04\\xeb|e\\xe1<\\xbfFsP\\xdb\\x10|X?\\xd6\\xf8\\xe9\\x16\\xf6$\\x7f?\\xc8rU\\xc1\\xa1\\x0e4\\xbf\\x12\\xcf\\x14\\x1f=>\\\\\\xbf\\x95fX\\x0e+,\\x80?\\xa0(\\xd3\\xf2\\x83?B?H\\xf3\\x08;\\xbc\\x8aN?\\xe0S9\\x18T\\x13.?\"W\\xf7\\xc1!\\xf0]\\xbfx\\x9ez\\xec\\xe0\\xa1B?n\\xf84\\xa0=h]\\xbf\\xe0\\xe3Z\\xa4b\\x13e\\xbfl\\xe9\\xdaH\\xa6\\xe9F?\\xc0\\xad\\x9eh\\xb5+k\\xbf\\xfe\\xda1\\xd1\\xda{`?\\xf47\\xc8\\xaa:\\x0f]?\\x00\\x80\\xdb\\xe2\\xbev\\r\\xbf\\x16\\x8b\\xafm\\x99&@\\xbf\\xe8m\\xbc/\\xb91l?Tw\\n@\\x16\\xaaP\\xbf\\x9e\\xc5\\xb7\\xc8wii?4MAt\\x0c\\x9c`\\xbf\\xdb\\x17l\\x8bG\\xeeQ\\xbf\\x02=\\x1dO1\\xacU\\xbf\\xaa\\x8c`\\x10{4w\\xbf\\xfcMu\\xa3\\xe35b\\xbfN\\x8b!\\x9c\"[k?\\x98\\xb7\\x14g{/u\\xbf\\x00][\\x9d\\x99\\x92\\x15?\\x9c^2{\\xe4e\\x91\\xbfX\\xf4\\xa5\\x89X\\xd49?\\x90\\x14E\\xc4\\x0b/\\x08?n\\xd2c\\xf5\\xab\\xd3\\x84?r\\x92+\\x91\\xf6\\xce]\\xbfcPt\\x7f?t\\x81\\xbfPC\\x83D\\xec\\xb6X?t\\xbb|uq^f?i>\\xb6=\\xa2Em\\xbf?\\x14\\xbb\\x08\\xd9|w\\xbf\\x18Ra\\xe9\\xfc\\x91U?\\x88D\\xf9\\x05K\\x8f`\\xbf\\x02E\\xcb%\\xb8cs\\xbfDD\\xb8\\x06\\x0b\\xafe?\\xa1\\x92\\x94\\x15\\xf9\\xafi?P\\xed\\xa7\\x87\\xc8pT\\xbf\\xc6tgX\\xa8|d?\\xa7\\xd7\\x83\\xb4\\xf1\\x97H?4l>y\\x0e@\\x7f?6N\\xfdC\\xb3\"o\\xbf\\xf3\\x94\\xa2\\x8f\\x8d\\x16d?\\xb8-\\xf3\\x8fX\\xdcD\\xbfB\\xdel\\xc1,\\xad]?H]\\xe4jj\\xdfJ\\xbf\\xb0Q\\x06\\xd4\\xb4\\xefP? `\\x84\\x98\\xb5\\x003\\xbfv\\x92=\\x02\\xae\\x9ad\\xbf \\xd5\\xf7N\\xbcUQ\\xbf8\\xd7\\x0c\\xb0\\xedF`\\xbf\\xe8f\\xaam\\x84ol\\xbf\\x808\"\\x86\\xfa\\xe7F?\\x92\\xd7u\\xa4\\x8f\\x80m?\\x00\\x90\\xeb\\x1d\\xe9LQ?YbA\\n%\\x11`?\\xb8\\xc8\\xbb\\xff\\xf9\\xf5p\\xbf\\x90$t\\x9a\\x87\\xb4|?\\x1c]\\xecE\\x95\\xa4w\\xbf \\x8b\\xd4\\xc3\\x8e\\xc2u\\xbf0\\x06\\xe7\\x1d(\\x02|\\xbf\\x1c\\xae\\xaci\\xac,^?\\xc4)?\\xd6\\x16ij\\xbftS\\xb4\\xca\\xf8s\\x9b\\xbf\\x84\\x12\\x1c\\x1b\\x12\\xa3w?\\x00Y\\xae6\\r\\xb4L?\\x00\\x92\\xd5\\xef\\xe0\\x13\\'?:\\xf5\\x08\\x96\\xdcqr\\xbf\\xd0d\\xb9\\n\\xec\\xa0@?\\xd0\\xf2\\n\\xd7\\xa7\\x0ce?\\xe0\\xd1Vu\\x8e,&\\xbf.\\xb8.\\xa8m\\x17f?L\\xf3\\xcb\\xd5_{\\xa6\\xbf`P\\x8f\\xc3\\x86\\x94\\x87?@\\xac\\xa6KD)\\x93?\\xe0Mv\\xc3\\x95px?\\xc0]\\x1b\\xb7\\x92\\x15W?\\xa0\\xd3>J\\xd4\\xfbj\\xbf\\xe8\\x02\\x01{\\xdeih\\xbf\\x80 \\xba\\xd4\\x98$\"?Tw\\n@\\x16\\xaaP\\xbf\\\\\\xb2\\x02\\x86?\\x85\\xa2?P.uK~\\xf2_\\xbf\\x90\\xe6\\x14\\xb4g\\x96\\x83\\xbf\\xf8\\xee>2K\\xeeu?h\\x9c\\\\\\x9e\\xec\\xd6p\\xbf\\xa8\\xa4\\xee\\xcf\\x9e\\x81\\x9d?y\\xa6\\x93\\xbf(Q\\x86?\\x9e\\xe41{\\xbf/d?pH+\\xed%*x?\\x08f\\xc89Q\\xaca\\xbfl\\xb6\\xad\\xb3\\xca\\xf3k?\\xd8~\"/\\xf2\\xd9k?\\x00a\\xee\\x92\\xf9\\xce\\xf1\\xbe\\x80\\xacIa\\x85Ch\\xbf\\xe0(\\t\\x18\\x0b\\x1df\\xbf\\xe0]p\\xdc\\xf5kU?HY\\xd0\\x9e\\x19\\xd7R\\xbf\\xb8\\xf0\\x05\\x8c\\xb0%s\\xbfd\\xd8\\xbf>n\\x8bq\\xbf`\\x99\\xd6c\"\\xd2R\\xbf\\x10\\x9a<\\xfc$e\\x98?\\x80\\x7f=7cT\\x80\\xbf`Q\\x8e\\'~ud?\\x98\\xf66\\xf3\\xc0\\xb6\\x9a\\xbf2\\xa1\\t\\\\\\x00?\\x84\\xbf\\x10Y!U\\xca=\\x9d?\\x9c 1T`w\\x89\\xbf\\xba{\\x7f.\\x93\\xebb\\xbf\\x90\\x04\\xfa\\xc5m\\x1e\\x9b\\xbf\\xd8\\xb8\\xb2$\\xb5\\xd7\\x8a?\\xfc\\xbf\\xc3U/\\xc5\\x7f?\\x00\\t\\x8a\\x054\\xc0R?@k\\x7f\\x95VaU\\xbf\\xe8\\xad\\xbb\\x89\\xddzv?\\x10U#\\n\\xee\\x1bh\\xbfP*c\\xe3\\xc3dV\\xbf@6J\\xb3\\xb8}R?\\xf8\\x80?\\x97\\xe8\\x97s?\\xcc\\n\\xe1tp\\xce\\x8a?\\x04O\\\\\\x0b.\\x94p?p\\x0e\\xf0\\xc2\\xab+p\\xbf\\xec62k\\xfa\\xe2\\x84\\xbfIy\\r\\xf0x\\xff\\x82\\xbf\\\\\\xc4\\xd9\\x11\\x1b6r\\xbf2\\xad\\xa2\\x13+\\x95a?7\\xb3\\x06\\t\\xe5=\\x92\\xbf\\xecPD7\\xbc\\n}?\\x98\\xe2\\x8b\\x11\\xa3\\xd1^\\xbf\\xca\\xb9\\x18\\x1e\\x1a.s?\\x1e F\\t\\xf7\\xc2q\\xbf\\x1c\\x10\\xf2Bq<U?:v\\xc1\\x8bo\\x91\\x93?\\r \\xe1\\xcaX\\x8dp?\\xd5~\\x07?\\xf1Wi\\xbf\\xf5d^,\\xaf:\\x94?\\xbdU\\xf3\\xea]@b\\xbf\\x94\\x91\\xffe\\x02\\x02W?\\xc7\\xfc\\xd0V<\\xfc\\x84?\\x86Z\\xedj\\x96J\\x85\\xbf)\\xbd\\x91\\xd7\\x1e\\xf0T\\xbf\\x94\\x80\\xb8\\xe63j\\x8b\\xbf\\xf5\\x8a\\x9d\\x7f\\x81\\x8f\\x94\\xbf\\xb9So\\xbaxN\\x8a?i\\x81}\\xb1#\\x19\\x8a\\xbf\\xbc\\xe9\\xe2K\\x08%\\x93?\\x149*F\\xaf\\x07B\\xbf\\xdfK\\xe3\\xbb\\x0e\\xaa\\x83\\xbf\\x05\\xb7\\xfc\\xb7\\xf3\\x1ev\\xbf\\x9e\\xc5\\xb7\\xc8wii?P.uK~\\xf2_\\xbf8\\xbb\\x17\\x19\\xb9)\\x9e?o)M?I\\xf2\\x96\\xbfF\\xbd\\xf3\\x82N\\x95w?\\xec\\xc8_wNC\\x93\\xbff\\xe7\\xd6n\\x12vz\\xbfDv\\x92\\x1f\\x9f(c?\\x98\\x08O\\x96=k\\x91?*\\xa0\\xa4hi\\x11\\x92\\xbf\\xd8\\xa6wL\\x84`I\\xbf\\x03\\xdd\\x04\\x15\\x03y\\xb3\\xbf_\\xba/\\xf2\\xc8\\xb7\\x9a\\xbf\\x0f\\xe8\\xbc\\xbec\\xf9Q\\xbf\\x92=\\xcd\\xb2\\x0b7\\xa2?\\xefdU\\x9a\\x83~\\x86?\\xd0\\x81\\xec\\xea\\xad\\x12\\x8c\\xbf\\xe4\\x15@\\xef\\x08m\\x87?\\xec\\xcaJ\\xd7/\\x14X?K\\xd7\\xd8\\r\\xbam\\x8a?\\x02\\xa0Quv\\x11\\xa1\\xbf8\\xceDm\\xf4\\xff\\xa4\\xbf\\xe4\\x98\\xab$\\xf0\\'\\x95?P\\x1f\\xae\\x87\\xb6\\xd1\\x93\\xbf\\xb6\\x7fs\\xd3\\x08\\x14\\xac?\\xe5j4\\xda\\xb7\\xae\\x98?\\xd5[\\xd9%N\\x15\\x94\\xbf\\x0b\\xbc\\xe8%n\\xce\\x9e?&E\\xc98\\xe4\\x88\\x94?\\xa9\\xd5ty\\xd0\\xaa\\xaa?\\xd3\\xfd,-\\x0cq\\xa1\\xbf\\x95I\\xce\\x0c.\\x04\\x99?\\x90=w4w^D?\\x80[k :=>\\xbf\\xae\\xe4`\\xba\\x08\\x9e~?\\xc82\\xb8e\\x9ccX?\\x82\\x97P(\\xe5Tz?\\x88\\xee*/\\xac\\xed\\x90\\xbfr\\xfdX\\x82\"K{\\xbfS\\x7f\\xe11\\x9a\\xc9\\x90\\xbfl\\xb6\\xae\\x9d\\x7f\\xaf\\x92\\xbf\\x1a\\xe9c3\\xf4_\\x7f?\\xd1\\xddPX\\x00\\xce\\x9d?\\x00\\x08h\\x1a\\xed\\x89J\\xbf\\x90\\xa7\\xfe\\x13_C*\\xbf\\x80H@d\\x88eb\\xbf\\xe4I\\x8a\\xb4\\xa8\\x87\\x8f?v\\xa48\\xee\\xf7\\xc7d\\xbf\\x12DZ\\xe2\\\\\\xe8\\x80?\\xc0\\xd3\\xb7Z<CB?I\\xcf\\xb6\\x85\\xfa\\x80t?\\xde\\x03!\\x1b\\x06\\xeaI\\xbf\\xb0\\ti\\xad\\xaf\\xd9u\\xbf,6@>T\\x1db\\xbf@\\xb4\\xc5\\x12\\xbd\\xdfQ?\\xd4\\\\\\x98e[\\x15\\x86\\xbf\\xc2\\x92s}\\xb8\\xc3;\\xbf\\xf0\\xca\\xb1\\x13[\\xdcA\\xbf\\x82\\xf0\\xac\\xd64\\xf4w\\xbf\\x1a=\\x1d\\xb0\\x85\\xd4~?p\\xa2\\xf2,\\r\\xa8>\\xbf\\xea\\xd0\\xd6\\xf1D\\x17\\x9f?2 \\xac\\xf3\\x1b_\\x89?y\\xa1\\xbf\\xecX\\xbc\\x96\\xbf\\xebP\\xb0\\'U\\x0fw?\\xd6g\\x18\\xa3d\\xff\\x90\\xbf`;zD&\\xf9c\\xbf\\xdeu\\x84\\xc6\\x0b?s?`\\xf9`\\x81z\\xfdu?4MAt\\x0c\\x9c`\\xbf\\x90\\xe6\\x14\\xb4g\\x96\\x83\\xbfo)M?I\\xf2\\x96\\xbf\\xad\\x05\\xc8\\xdf\\x13\\xc2\\xa2?\\xa04\\xa1\\x92\\x07\\x7f{\\xbf\\xdcZ\\xaap\\xf4y\\x90?\\xa01\\xfcv\\x12\\x8dt\\xbf\\x15\\xdb\\x1e\\x86\\x11Xq\\xbf\\xa7)x6\\x9bw\\x92\\xbfT\\xe9\\x81\\xcf\\x1f&\\x8c?\\xd0\\xb8\\x89\\xc4\\xde6R\\xbf\\xdc\\xf5E\\xf1~\\x80\\xab?\\x9d\\xe5\\xcb:\\x98\\x98\\x8f?-r\\xbf\\x8f\\x85\\x07g\\xbf\\xe0\\x8a\\xce_\\xa0\\xe1\\x91\\xbf,\\xc7\\xfa|\\xd5\\ru\\xbf\\xb2\\xacq\\xe9\\xc6\\xc2\\x8d?\\x8d\\xc4\\xa0\\xf0\\x8e4\\x82\\xbfp\\xbeD\\xb0\\x90\\x9aY?\\xf4B\\xa7i\\x8c\\xf5\\x85\\xbfs\\xb0\\xd1?\\xce\\xed\\x89?TD\\x17V\\xfa\\x85\\x9c?9Pt\\\\3\\xfb\\x90\\xbfTK\\xe5~\\xb5\\x11\\xa0?:\\xa5\\xfa\\xa2D\\xd5\\xa6\\xbfC\\xcc\\xc2\\x88\\xb9\\x98\\x94\\xbf\\x94v\\xa9\\xfb\\x11\\x1c\\x91\\xbf $\\xed\\x9bG\\xd0y\\xbfR\\xc3JP\\xe0\\xba\\x95\\xbf\\xd8#\\xcff\\xdd\\xf5\\x80\\xbft-\\xbe\\x0e\\xe9\\xbf\\x8c?:\\xff\\xa0\\xe0%\\xb4\\x94\\xbf\\xf0\\x95&\\xf7\\xf0:U\\xbf\\x10C\"|\\\\\\x02\\\\?\\xe8\\x03\\x01\\x02\\xb1,\\x83\\xbf@\\x0c\\xd1\\xf2\\'\\xbb]?@\\x01\\x0bBM\\xb3n\\xbf3,R\\xa0\\xfc>\\x87?@\\xc7*G\\xdc\\xc3G?\\xb0V=\\x1c\\xb5\\xe4b?\\xbd\\x8f\\xb7\\x92\\xc1\\xd3\\x8c?\\xe0\\x94\\xed\\xbb\\x9b\\xc0b\\xbf\\x8c[\\xaa\\x12\\xf2\\x7f\\x92\\xbf\\xbb\\x83|OR5\\x8a?\\xa6\\x07n\\xb9Y3o?\\xeaC\\xf6z\\xb1\\xc8f\\xbf\\xdc0\\xfb\\xcf\\xc9\\xca\\x98?j^\\xf34\\x08\\xbfY?\\xd0T\\xb9\\x9e\\xc5~\\x87?\\x84\\x00\\xc9\\x81\\x88\\x9d\\x93\\xbf\\xbc\\xa3\\xa5\\xc9,\\xb7S?\\x11\\x19i5k|2?\\x14\\xb2\\x14O\\xb3\\xea\\x93\\xbf\\xeb\\xd8\\xf1\\xbb\\xfe\\x88\\x81?\\x10\\x92H\\xdf\\xfaru?\\xee3\\xd9\\xd7\\x94:\\x9f\\xbf \\x91zB;\\xacT\\xbf:\\x1e\\xf2\\xc8cRj\\xbfZM\\xba\\x0bS\\xc3s?\\x07;\\xd0\\xf5\\xa3\\nT\\xbf\\x10j3\\xde\\xad\\xc0a?w\\xa7d\\xde\\xd1\\xa9h\\xbf\\x18\\xedk?\\xaf\\xa7D?B\\xbfL\\x10j\\x9dl?\\xbb\\x80\\x03\\xf0\\x12\\x8f\\x9a\\xbf\\xfff\\xfdW\\x10\\xd3p\\xbf\\x1f\\xe3\\x99\\xed\\xf1\\x94\\x91\\xbf\\xcc\\x15\\xb8\\x1d\\xfc~f\\xbf\\xf7\\xad\\xbf\\xc7N\\x80c\\xbf\\xdb\\x17l\\x8bG\\xeeQ\\xbf\\xf8\\xee>2K\\xeeu?F\\xbd\\xf3\\x82N\\x95w?\\xa04\\xa1\\x92\\x07\\x7f{\\xbf\\xec\\x1a\\xd8\\'\"\\xd6\\x9a?\\x10\\xe7sH\\x18\\x84l\\xbf\\xf5\\xd3\\x9f\\xd4b\\xac\\x99?\\x8f\\xf28S\\x00\\xae\\x84?#\\xf4\\x9c\\x0b}\\xd9~?\\xa4&\\xbc\\x8c\\x9c\\xb1|?\\xcb\\xa0\\x97\\xa5\\xc4wc?\\xffF\\xd5\\x83\\xddQ\\x80?\\x95I\\xc8\\xa4)c\\x85\\xbf\\xe1H\\xa4\\x8b\\x87\\x0c`?2\\t\\x8f\\x8d\\xeaI\\x82\\xbf\\xed\\xf4\\xb3a\\xd4\\x94\\x8c?8\\x82L\\xc7a\\n\\x8c?\\x80=X\\xd6\\x1d\\xca\\x01?r\\x06\\x0e&\\x8b\\xd4\\x83\\xbf VaO\\'e\\x87?\\xb8\\xfe\\xc7\\xebS_S?M\\x1c:qy\\x10\\x92\\xbf\\xc0\\x10\\x04cFn\\x94?\\x03\\xcd\\x83;\\x9d\\xd0|\\xbfp\\x13\\xfc\\xa5\\x9b\\xe4\\x94?\\x80\\xea\\xc9@[o\\x1f?Hn\\x02\\xad\\x93|l?\\xc4\\xc8\\x99\\x9f\\x99^w\\xbf\\x8a-\\xf2\\xef\\xc2`{?\\x08\\x97RY\\x18\\x81g\\xbf`\\xc7\\xac\\xf4zKf?4\\xefo\\xe2Y\\xecF\\xbf\"\\xc3U[\\x8a\\x86a?`a\\xae\\xbe\\x0f\\xfcz\\xbf\\x06\\xd9\\xa3\\x0c\\x8b\\xb1q\\xbf\\xc8R\\xfd\\xbbc\\xb3d\\xbf\\xf0\\xb8\\xc7\\xa0\\x1c\\x87Z?*\\x8f\\xa2R\\xb0Fy\\xbf0_K\\xbda\\xd4[\\xbf\\xaf\\xa5<i\\xc6\\xf3y\\xbf\\xacn6W\\xc2\\xc2d\\xbfFvhPwZa?\\xef\\x11;\\xf0\\x17\\x04~?\\xb0\\rma\\xe5)|\\xbf\\xc0\\'\\x02\\xe2\\r\\x0ff\\xbfX\\xedB\\xc8}1p\\xbf\\xa0\\xf7\\xfd\\x11p\\xc2r?,T\\xe6c\\xa9\\xfeY\\xbf\\x9e\\xf6\\xf4\\xfa\\x81 r?x\\x8e\\xd6\\xeb\\x8c\\xe0\\x84?N\\x98\\xd9\\xfdp\\xe6v?\\xf4\\xa2\\xdb\\xd9Z*A\\xbf\\x90\\xbeN%a\\xe2z\\xbf\\xcc\\xbf}2\\x80tm\\xbf\\xa0\\x92\\xd7\\xd8f)H?0\\x9e\\x9f\\xfe\\xf9\\x10{\\xbf|\\xaa{\\xf5\\x88:g?\\xb8\\xcd7\\xa9i\\x84V\\xbf|9Xp\\x10~}\\xbf\\xbeaq\\x8c\\xc3a\\x84?\\x80\\x85\\xdf\\x7f\\xb2V7?\\xb7\\x81 \\xfb\\r\\x86\\x83?\\x9e\\xac\\xd0\\xa9\\xc6m\\x86?\\xba\\xca3\\x8ec\\xcc~\\xbf\"\\x07c\\x93i\\x0fr?X\\xb1=\\x90L\\x91\\x8d\\xbf\\x88\\xdb\\xe7Y\\xfdgs?\\x17\\x87:K\\xbec\\x83?\\x19\\xd2\\x8f\\x10\\xe1Cy?\\x04=\\x1dO1\\xacU\\xbfh\\x9c\\\\\\x9e\\xec\\xd6p\\xbf\\xec\\xc8_wNC\\x93\\xbf\\xdcZ\\xaap\\xf4y\\x90?\\x10\\xe7sH\\x18\\x84l\\xbf\\xcb\\x96\\x18\\xa9p&\\x95?\\xe8\\xe7G\\x84\\xffe{\\xbf\\xce\\x86\\xab\\xc2\\x97\\xbc\\x82\\xbf\\xfe\\x17\\xfc>\\nP\\x91\\xbf6f\\xce\\xdb\\xac\\x8e\\x8a?h\\xed+\\xb0\\xbbAd?\\xe8\\xfbY\\x11\\xe9\\x8d\\xaf?t\\'\\xaa82\\xcf\\x92?\\x9e\\xb9\\x88j\\xd4\\x9fv?\\xef#\\x04CX\\xb9\\x95\\xbfN2\\x02%\\xf2Wh\\xbf\\xee\\xc3*\\x9dg\\x12\\x80?\\x90\\xcb\\xb9#\\x85\\xff\\x8c\\xbf\\xa0-}\\xcd\\xab#e?\\x9f\\xbf\\xaal\\x99\\xa6q\\xbf\\x94\\xa1R-H\\x00\\xa1?\\xb4Kp\\xfa\\x05\\x92\\x8a?F\\xb0\\xd7&\\xeen\\x82\\xbf\\xbfg8\\xb1\\xa1\\x03\\x92?nT\\x05\\x17\\x17+\\x99\\xbf\\xe2\\x87\\x90f*G\\x94\\xbf\\xb0\\xa5U\\x0e\\x89w\\x8e\\xbf\\x96\\xce\\t\\x0e\\x03\\xf7\\x8a\\xbf\\xde\\x8c\\xaa\\xaa\\xf9\\xe3\\x85\\xbf\\x10\\xa0Wy\\xad\\xcc\\x91\\xbf_\\xab*]:\\x98\\x93?\\xea\\x8c\\xa5{\\xc8!\\x9e\\xbf`\\xa4cN\\'\\x02@\\xbf\\x80\\x8d\\xf6P\\xc6PO\\xbf|\\xadT!\\x182\\x8e\\xbfp\\xc92\\x17N\\xd3R?`\\x03+\\x87\\xfd?v\\xbf\\x8d&\\x8b\\xd4^\\x93\\x81?\\xd0\\xf3\\x94\\xfd\\x05\\x94l?(\\xc9\\n\\xb0\\xbd\\xe1w?\\x02\\xc8\\x1c\\x04(\\xe8\\x8c?\\xfc\\x87g\\x9eXtw\\xbf\\xe4\\x9e\\xd9O#\\xcf\\x95\\xbf4\\x19Dt\\xfc\\xb2\\xa9?\\x1asi\\x87\\xc3q\\x84?\\x1ci\\xb0\\x03:\\xa3\\x8b\\xbftN\\xe9\\xd2\\xf7\\xde\\xac?\\x84K\\x03\\xbf\\xb2@y\\xbf>\\x84\\xc83\\x82\\x06\\x89?\\xe8\\xa7\\xc6\\x93\\x86\\r\\xae\\xbf\\x90\\x04N\\x1co\\xacL?x\\xe7/\"\\xad\\xf7l\\xbf\\xa0\\xf0r\\xe0Ga\\xa9\\xbf\\xbcu\\xca)\\x90\\xf2\\x87?\\xbc\\x07g\\xbd\\xe7\\xd7\\x83?\\x00\\xb2\\x7f\\x86O\\x9b\\xa8\\xbfi\\xdf)L\\x91_r\\xbf\\xb0\\xa5\\xea\\x8e\\x93\\xb6a\\xbf\\xf4\\xc5\\xac\\xb7\\x8d\\x19z?Z-\\xd9\\xfc\\x15{b?\\x89\\x85\\x8a6\\xf9\\x05\\x85?\\xd0\\x0b\\x97-=4\\x92\\xbf\\x1cN\\x12\\x04$h\\x91?\\xfeC\\x92k/g\\x83?\\x00\\x13\\xc2\\xaf\\xa3FR?`cj\\xdeg\\xedw\\xbf/#\\'\\x0f\\xeb\\x10\\xa1\\xbf0\\xdeW\\xc6\\xe6\\xcc\\x81\\xbf\\x8c\\xd5\\xad\\xe5*\\xebp\\xbf\\xaa\\x8c`\\x10{4w\\xbf\\xa8\\xa4\\xee\\xcf\\x9e\\x81\\x9d?f\\xe7\\xd6n\\x12vz\\xbf\\xa01\\xfcv\\x12\\x8dt\\xbf\\xf5\\xd3\\x9f\\xd4b\\xac\\x99?\\xd8\\xe7G\\x84\\xffe{\\xbf\\xcb5\\xe7*K\\x1a\\xb5?\\xa7\\xf2\\xb6/O6\\x9a?z\\r&\\x1a\\xe9\\xb4\\x88?\\x1eN\\xd3\\x9ap\\xcb\\x9d?\\x00s\\xc4,*\\x07:\\xbf(\\xc94-$:\\xa8?\\xd0*\\xbc\\x12\\x83\\xd4q\\xbfDb\\xca\\x05s5P\\xbf\\xc6\\xf0\\xcb\\xe9\\xd1\\xa6\\xa5\\xbf\\xd2\\xe8Y\\xb1m\\x1a\\x92?\\xa2z\\xd2\\x8b\\xda\\xf8\\xa3?@\\xf8p\\xe1\\xb3yA\\xbf\\xa6D\\x08\\xf0\\x80\\x97\\x99\\xbf\\xec\\xef\\xb5\\xf6\\xa0\\x1c\\x87? \\xff\\xe8\\x8d^\\xc7a?\\xa0\\xd7\\xc1\\xd3\\xfej\\x9d?\\x1eF\\x1cb\\xf7e\\x9b?h\\x12K\\x83J\\xfdt\\xbf\\x90].\\xac?\\xc8\\x97\\xbf\\xf8^p\\xba\\x7f\\xb5\\x8b\\xbfZ\\xcb<\\xdc\\x12\\x03\\xb2?\\x10\\x06\\xba\\x8f\\x1d\\xda\\xaa\\xbf\\xe3\\t\\xad`\\xb3\\x13w?\\xc81\\x0c\\xb9m\\xef\\xb3\\xbfR\\xd3\\xbbdD\\xb1\\xa7?\\xa0\\xf0\\xd2\\x8f\\xec\\xa3@?\\xc0\\xbb\\xd4\\x97u\\x04@\\xbf\\xa4j\\xa1\\x1e{\\x10\\x80\\xbf*\\x03\\x97\\xd0\\x99pw?\\xfcOW\\x96\\xdc\\x19\\x81\\xbf \\xbe\\x19\\x05bFS?\\x84\\x8e\\xda\\x9d)\\xb2\\x80?H\\xa9\\xd7^4\\x1bx?\\xc0\\xc6\\xd0\\xeeg3\\x8d?\\x10\\'\\x17r\\xe6\\xe6\\x81?@h\\x86\\x83zI`\\xbf\\x10\\xaa\\xed\\xa6\\x94A\\x84\\xbfM6\\x06\\xac\\xfcl\\xa4?N\\xdd>B\\x16\\xea\\x80?\\xbb\\xea 3+\\x8cz\\xbf\\x80\\xbe\\x06{T\\x12\\xa2?\\x06\\x7f6\\xcc\\xa6%u\\xbf\\xc0\\xabn\\x11Eg4\\xbf\\xd6\\x03oM\\x13I\\xa2\\xbf>i\\x8dvdzS\\xbfX^\\xa3\\xaf\\xd3\\xeeJ\\xbf\\xc2\\x9c\\x03\\x1f\\xa6b\\x9a\\xbft\\xdd\\x02\\x05I\\xc3_?\\xd4\\x01z\\xd9\\xc2no?u\\xd9P\\xbf|\\xb8\\x9a\\xbfg\\x1c\\x9d\\xefFL^\\xbf\\xf0;O\\xabO\\xa5a\\xbfz\\xab\\xb5\\xe6vX\\x87?\\x81\\xe4\\xbe3\\xa0\\x0bw\\xbf\\x92\\xb5\\xeb!\\xe0\\x1dp?\\xce\\xf7\\xe4\\x16!\\xc4b\\xbf\\x8d\\x95e\\x02j\\xe8s?\\x04\\x1c\\xa8\\xb8\\xbe\\x06Z?3\\x19\\x1d3\\x82\\xf3v?\\xe8\\xf6\\x06C\\x7f\\x91R?\\x97\\x08\\x02\\xdb\\xb9\\xec~\\xbf@\\xe4\\x93:C5\\xef\\xbe\\x80\\xf0\\xd4\\xc9p5j\\xbf\\xfcMu\\xa3\\xe35b\\xbfy\\xa6\\x93\\xbf(Q\\x86?Dv\\x92\\x1f\\x9f(c?\\x15\\xdb\\x1e\\x86\\x11Xq\\xbf\\x8f\\xf28S\\x00\\xae\\x84?\\xce\\x86\\xab\\xc2\\x97\\xbc\\x82\\xbf\\xa7\\xf2\\xb6/O6\\x9a?\\xff\\x84?\\xee\\xcd\\xda\\xac?K\\xedS\\x9e\\xaa\"~?\\x88c@z2\\xdbQ?\\x96\\xc4\\xf3k\\xbd7^\\xbf\\xc6\\x8bO\\x94\\xf3\\xd8\\x82\\xbfu\\x8e\\x11|\\xe3\\x1cz?\\xde\\x9bQ-\\xb9Yx\\xbfJ\\xbc\\xa95y:\\x80\\xbf\\x94>\\xb3eL\\xbe\\x86\\xbf\\xf0f\\xcd\\xadU~\\x96?\\xbeR\\x90\\xaan\\x04\\x85?\\xb6\\x85\\x01\\xf5mbw\\xbfv\\xad^@*)\\x82\\xbf\\xfa>(\\xb35+\\x99\\xbf\\xa2\\xd2\\xd5\\xb4Y\\xb8\\x93?\\xe8\\xebr\\x03\\xcd_Z?\\x94\\xe7\\xa5xF\\xfcl\\xbf\\x0c\\xf4\\x8c\\x0f\\x81\\xae\\x86\\xbf\\xf2\\x1d~\\xf9\\xd7\\x16`?\\xbe\\xcd\\x80t\\xec\\xce\\xa0?\\x9cR<\\x1d}\\xb1\\x93\\xbf) \\xdb\\x1c#\\xcaC?\\xc5\\x08,v\\xb3y\\x98\\xbf\\xf6\\x0c|c\\x10\\x1d\\x8d?Z\\xabY\\x08\\xad\\r\\x87?\\xb8\\xf8i\\xfb\\xf2\\xe1F?\\x89\\x121;T\\xac\\x8c\\xbf\\xb3\\x81>\\x1e\\xeb\\x92u?\\x06\\xaf\\x83\\xb4|\\x89l\\xbf\\xa0\\xe1`\\x8a.X\\x94?$Ju\\x11Ytw\\xbf\\xb8R>V\\x8bnQ?4\\x08\\x1c\\xe1\\xc6Dc\\xbf4\\xe3\\xb3\\xeb\\xf6\\xaa{\\xbfp\\xec\\xbbK*\\rG?\\x1a\\xe0\\xbd\\xeb\\xa2W}?\\x88\\xdaq&\\x9b\\x14E\\xbfcF\\x1dx$\\xf5j?\\xea\\x15\\x86<\\xda\\x1ci?\\xf9\\x84\\xbfS\\x0c`z?>\\x87L\\xcaYb]?\\x0b\\xc0\\xe4\\xaeNWU\\xbfxvE\\xa5]R\\x81\\xbf\\x16\\xd6v\\x96;+g\\xbf\\xcf\\xd5c\\x98\\x99\\xbdd?\\x8a\\x94A~b8q?$<(3L\\xf7j?\\t\\xbbR\\xde\\xcb1`\\xbf\\xf2\\xe4\\x03\\xb5\\xb5uq?\\xa4\\x83Z9FI[?\\xfak\\x9a\\xbawT/?\\xf5\\xeeT!\\xe2;\\x81?\\xba\\xd2VZ\"\\xbe\\x88\\xbfI)\\xe2v\\x179b\\xbfO1{\\xcd\\xb9T\\x83\\xbf\\xb6\\x1c\\x91k\\xec\\x8e\\x85\\xbfZ4e0\\xc2\\xbf}?\\xe1\\xc1qh\\x11\\x9c\\x87\\xbf\\xf4M\\x88\\x90\\xd5\\r\\x8a?\\xe6Lb\\x06=\\xeb|\\xbf(\\xa2lU\\xa85~\\xbf\\xab2\\x90\\xcb\\xcb\\x02~\\xbfN\\x8b!\\x9c\"[k?\\xa1\\xe41{\\xbf/d?\\x98\\x08O\\x96=k\\x91?\\xa8)x6\\x9bw\\x92\\xbf#\\xf4\\x9c\\x0b}\\xd9~?\\xfe\\x17\\xfc>\\nP\\x91\\xbfz\\r&\\x1a\\xe9\\xb4\\x88?K\\xedS\\x9e\\xaa\"~?\\x89}\\xbf\\xe6\\x1b\\xa2\\xaf?\\xfd\\xa81UT\\xdd\\x9a\\xbf?\\xd9%M\\xbbjf\\xbf9\\x9a\\'.\\x8d\\xa9\\xb3\\xbf6\\xc1k\\xa9\\xf3\\xec\\x91\\xbf\\xcc\\xc9\\x8f\\xf2\\xf24W?\\xfdQ\\xb57^\\xc2\\x95?\\xc5\\'\\xc9r\\x88Mo?0!\\x17e0\\x1b\\x94\\xbf\\xbf\\xcer\\x84v\\xd7\\xa4?]Q\\xd1\\x92`u\\x84\\xbf\\x1c\\xcf\\x9b^\\xdc\\xcfQ\\xbfV\\x05\\x0b2\\xe1\\x16\\xa2\\xbf\\x1a\\xc1|\\x0c\\xe7\\x99r\\xbf\\n\\x1b\\xd4\\x83[*\\x95?e[\\x9e\\xb7a\\x08\\xa7\\xbf\\x87\\x97KF\\\\\\x9f\\xa4?m \\t1\\x87\\xcd\\x90?+\\xac\\xac\\'\\xea\\x1c\\xa3?\\xd4i\\xff\\xe8\\x17\\x14:\\xbf0\\x0b\\xb2\\xd0\\x8a\\x1e\\x90?~T]\\xf4\\xc4Mj?\"\\x13t\\xd2\\x01\\x97\\x81\\xbf\\xefM=\\x7f\\xeaJ\\x9c?\\xf2N{\\xdc\\xb9\\xbe|\\xbf\\'\\xd8f\\xd5f\\xa1b?c\\xa5s\\xaa\\xf1JJ?v\\xf7g\\x8f3\\x92f?\\x9fx.\\xc3\\xddi\\x84?\\xf0\\x94\\x97w\\x9b.\\x89\\xbf\\xcd\\x05\\x06F\\x8adp\\xbf\\xbd\\xfc*\\xf4\\xd4\\xc8\\x84\\xbfc\\x00v:\\xe8J\\x91\\xbf\\xe2\\x9ejRZ\\xb1\\x81?\\xf8\\xd2\\xbbR\\xea\\xb8\\x9e?\\xc8\\xc2\\x8c\\xf4$\\xba\\x94?\\x80\\xf8?\\x90\\x19{\\x17\\xbf\\x88\\xa7\\xe6l\\xde}i\\xbfz\\x99R\\xd3$\\xfb\\xa0?\\xf0@\\xa8\\x89\\xe0\\xc2n\\xbfLN\\xd0\\xcc\\r,\\x83?0\\xf4\\x9c\\x123Z\\x94\\xbf\\xca\\x05\\xf1_G\\x81\\x82?dj\\x8d\\xed\"\\xd7r\\xbf\\xfa#3 \\xd8n\\xa0\\xbf\\xc8\\x90\\xef\\x1c\\xbd\\xffo?h\\x19\\x86Y_\\x9e\\x82?\\xf2Q\\n\\x94\\x8dG\\x9f\\xbf\\x00\\x81,1\\x84\\x03r\\xbfL\\x87\\xdc\"\\xf9\\xf9g\\xbf\\xcd\\x88IR!\\x1fx\\xbf\\xaa\\xd8\\x1b\\xa5\\xec2\\x96?S\\x06\\x86&J\\xee\\x86?\\xa0\\x9a\\x04\\xfa\\xa3\\x8e6?\\x94\\xa0\\xb4`\\xbfG\\x8b?@\\x07\\xffe]\\xd9%?\\x91+\\xbc\\r\"\\xba\\x80?\\x160\\xe0\\xc3\\x95l\\x82\\xbf\\xb4\\x80?\\xb6\\xfa\\rv\\xbf\\xf0x\\xef3\\x1fYu?U%\\xd2\\xb8Z\\x9f\\x81?\\x98\\xb7\\x14g{/u\\xbfpH+\\xed%*x?*\\xa0\\xa4hi\\x11\\x92\\xbfT\\xe9\\x81\\xcf\\x1f&\\x8c?\\xa4&\\xbc\\x8c\\x9c\\xb1|?6f\\xce\\xdb\\xac\\x8e\\x8a?\\x1eN\\xd3\\x9ap\\xcb\\x9d?\\x88c@z2\\xdbQ?\\xfd\\xa81UT\\xdd\\x9a\\xbf\\x10\\x12\\xb1\\xd1\\xb6*\\xae?\\xa0\\xf3\\x03\\x83\\x10\\x1bL\\xbf+\\xa9\\x0e\\x10rM\\xc2?#gZ\\x94+\\x01\\x9a?\\xabj<\\x92\\xf2wn?\\x92\\x8c#\\xdb\\xa4\\xcb\\xae\\xbf\\xf0\\xfa[zw`\\x89?\\xfc\\xed\\xbd\\xb3\\xb50\\xa4?\\x01\\xb7\\xa6\\xe7Q7\\xa4\\xbf\\xd2\\xbd\\xca\\xf8\\x99J\\x89\\xbf(:r\\x04L6\\x8c?\\x1eT\\x93<\\xbbm\\xae?\\x00\\x80*}w\\xa1\\xcd\\xbehn\\xb6\\xcf\\x97Iy?Fw}*\\x13\\xa3\\xa9?\\xfe\\r\\xfb\\xd8\\xc5\\x1d\\xa0\\xbfP\\xa1\\xb1\\xc4.m\\x9a\\xbf\\xa9\\xc2\\x12\\xe4\\xa7_\\xa5\\xbf\\x88R}\\xd72\\'w\\xbf\\xa2\\x149S\\xe8tr\\xbf\\xe8\\x18\\xfe\\x95/\\xdf\\x86\\xbf]A\\x0c\\x83\\x96\\x8d\\x93?\\xd8\\x94\\x0e\\x18Y\\xb8\\xa5\\xbf@s\\x87\\x04Q\\xb69?\\xd0?\\xdeKy\\x89n\\xbf\\xa3Y\\xdb\\xab\\x875\\x88\\xbf\\x80\\x12\\xf4\\xf4\\xbf\\x887\\xbf8\\xf2\\xfb\\xde\\xc5q\\x8b\\xbfFOV\\xe60\\xe9\\x91?J*\\xbb\\x1a`\\xba\\x85?\\x94s\\'\\xc4+\\x18\\x8f?l\\xa3M\\x04zM\\x9d?VU\\x92\\xe46\\xe2\\x8b\\xbf.[d\\xde\\xe6\\xd1\\xa4\\xbf\\x00\\xc7\\xe9>\\x152f\\xbf\\x08q\\xa8\\x9a\\x91ZU?`\\x1f\\xb5\\xa7\\xfd\\xd82\\xbf`\\xd9\\x8b\\x97\\x08\\xf0[\\xbf@\\xc4\\x0e_\\x8b\\xddE?p\\x99\\xd3\\x8cB\\xab<?@\\xe1_\\xe9\\xd0\\x1cr? +\\xfaX\\xd1\\x9d6?\\xd0\\x1e\\x14L\\xb0\\xf86?pmp\\xd0\\xfbrb?\\x9c\\x02\\xa7\\x10m\\x17m?\\xb0\\x062v\\x08\\rO\\xbf\\x00*\\x04\\xa3!D?\\xbf\\xf2Z%k;zP\\xbf\\x80\\x9fr!\\xca\\xf4E?\\xd4\\xf6\\x16\\x0c\\x007z?\\xc0\\xfb\\x14e(\\xf9\\x0e?6\\xe8\\xc3\\xd5\\xc9\\x93S?0\\xd7;w\"\\x9a`?\\x00,[\\xbf}\\xb2;?@\\x89,\\xc9M\\x8a;?\\x00\\xfd\\x1d\\xfa\\xa1-\\xf7\\xbe\\x00\\xed\\xb4hO\\xfc\"?\\x00K\\x8f\\x8fcE\\x0f\\xbf@\\x90\\xeb\\xd2\\xdc\\x8eT?p\\xb4R\\x86\\xfd\\xe4:\\xbf\\x00][\\x9d\\x99\\x92\\x15?\\x08f\\xc89Q\\xaca\\xbf\\xd8\\xa6wL\\x84`I\\xbf\\xd0\\xb8\\x89\\xc4\\xde6R\\xbf\\xcb\\xa0\\x97\\xa5\\xc4wc?d\\xed+\\xb0\\xbbAd?\\x00s\\xc4,*\\x07:\\xbf\\x96\\xc4\\xf3k\\xbd7^\\xbf?\\xd9%M\\xbbjf\\xbf\\xa0\\xf3\\x03\\x83\\x10\\x1bL\\xbf\\x86\\xa5,\\x14\\xfd\\xb3\\x86?\\xdc\\x1e\\xaf\\xb1C\\x02A?\\xf6\\xbb\\x8fk!E\\x86\\xbf\\x82\\xce\\xb7\\x8a\\xd10\\x80?\\xb8\\xdc\\x8f\\x8d\\t\\xbc_?N\\xee\\x82\\xeaSB\\x88?\\xc0\\xe3at\\xa6\\xc7O\\xbf7L\\xdc u\\x99`\\xbf\\x00\\xce\\x87@\\xcb~0\\xbfU\\xfd\\x00\\xe8\\x93\\xaa\\x86?\\xba\\x99W\\xd1i\\x18\\x88?\\xa0\\x0b\\xf4\\xbaD\\x9c\\x91\\xbfO\\x00\\xa2\\xdc\\xd6\\x04\\x88?\\xfam\\x1f\\x17\\xc3\\x86\\x82\\xbf\\xb4\\x817c$\\x90\\x93?\\x9c\\x02\\xc5Dg\\x80~?`\\x11G;q\\xcel?R\\xe8\\x8d|B\\xbd\\x8b\\xbf\\xef(\\xc8M\\xdf\\x15x? g\\xd8gNBS\\xbfH\\xc4\\xaa%-\\xc2\\x87?\\xd7S\\x0f\\xa5\\xfem\\x80\\xbfh\\xc4\\xe6j]\\xf7W\\xbf\\x00\\x13\\xd6|\\xa8m0?\\x84\\xbb\\x87\\xaf\\x06W\\x82\\xbf\\x8c1\\x04M\\xb9\\x13e?\\x0c\\xfa\\xd2\\xf5\\x17\\xaba\\xbftH\\xb4\\x14|\\x9bi\\xbf\\x80~\\xf1\\xc4\\xa8\\x021?(\\xbb\\xb0\\xd6*\\x90h\\xbf(\\x9f\\x16R\\x9c\\xacS?\\xf0\\xbc\\x91\\x03\\x0c\\x02]\\xbf\\x80\\x05f\\xbf\\xa9|[?\\x94e\\x16>\\x86\\xe9\\x96?O\\x0bF][\\xb9\\x87\\xbf\\xa8\\xf2\\xd3\\xe2\\xd9\\xd5y\\xbfZo6^\\xe2\\x86\\xb0?&[\\x086r\\x8a~\\xbf8\\x9a\\xd8\\xaeuH\\x9e?\\x884\\xea\\x1an\\xf7\\x89\\xbf%=\\xe2\\x9c\\xe3[\\x9c?\\xe4\\xbb\\xf5\\xac\\xd0\\x90\\x88\\xbf\\x10\\xf3\\x85A\\x88\\xfd\\xb0\\xbfU\\x0c)8(\\x11\\x92\\xbf~\\x17UqSh\\x96?D\\xcd?\\xee\\xe0\\x86\\xb3\\xbf\\xf2\\xfc\\r\\xbf\\xe8\\xacP\\xbf\\xa1f\\xcb;>\\xf1\\x7f\\xbfQ\\xde\\xcd\\xaetC\\xa5\\xbfhF>T\\xf9T\\xb3?\\x99\\xb6\\xa7\\xe0\\xe5\\x9e\\x94?\\x7f\\x14\\xf0\\xda\\x98\\xb5\\x94?\"\\xc8\\xc1z\\x98a\\xa6?\\xa8\\xa3\\x85\\xb2\\xc2:\\x8f\\xbfk\\xa6i\\xf62\\xa1\\x8f?\\xdc\\xcf\\\\4\\x17\\xfc\\xa6\\xbf\\xe6\\xc3\\xff>\\x7f4P\\xbfW\\x1c$\\xc5\\\\\\xac\\xa3?\\x97\\x17Y\\x80\\x07;\\x9f?\\x9c^2{\\xe4e\\x91\\xbfp\\xb6\\xad\\xb3\\xca\\xf3k?\\x03\\xdd\\x04\\x15\\x03y\\xb3\\xbf\\xdc\\xf5E\\xf1~\\x80\\xab?\\xffF\\xd5\\x83\\xddQ\\x80?\\xe8\\xfbY\\x11\\xe9\\x8d\\xaf?(\\xc94-$:\\xa8?\\xc6\\x8bO\\x94\\xf3\\xd8\\x82\\xbf9\\x9a\\'.\\x8d\\xa9\\xb3\\xbf+\\xa9\\x0e\\x10rM\\xc2?\\xdc\\x1e\\xaf\\xb1C\\x02A?68\\x17\\xbe\\xfd\\xba\\xdf?\\xa6\\x1fr\\xe1\\xf4b\\xbb?\\xa1Yf\\xff[B\\x93?\\xc6\\xba\\x10\\x0b2T\\xcc\\xbf\\\\\\x8bU\\xb6\\x82\\x99\\x81?/F-4;\\x8b\\xb3?\\xec8\\xca\\x04[y\\xbb\\xbf\\x1b\\x81l1\"#\\x9e\\xbfN\\xfd\\xcc\\x99\\xb8\\x8d\\x9e?\\xcec\\xfe\"\\x10\\x96\\xcf?\\x90u(\\xc5W\\xd0\\x9a?\\xf6\\x06r\\x1a\\x1b\\x80\\x84\\xbf\\xbe\\xb4\\xc6\\x92K[\\xc0?\\xa2\\xad\\x05\\xd3\\x07\\xf4\\xbf\\xbf$\\xf7\\xd4\\xbc\\xee!\\xb6\\xbf\\xeaF\\xc6\\xb7UJ\\xbb\\xbf\\x138\\x85\\xef\\x03\\r\\xa2\\xbf\\x84\\xef\\xb7\\xdaH\\xbf\\x9b\\xbfy)\\x14\\xcf0\\xbf\\xaf\\xbf\\xd4\\x99\\xc5|\\x88u\\xb3?-H]\\x00\\xb5\\xf4\\xc3\\xbf\\x85\\x94\\x01\\xd0\\xe0%\\x80\\xbf\\x89\\x00\\xa1\\xe6S\\x80\\x80\\xbf\\xcf\\xdf\\xdf\\xa1_\\x95\\xaf\\xbfZ\\xcb\\xcf&ZC\\x8a?C\\xfd\\xffz\\x0c\\x8b\\xa8\\xbf\\xb3\\xa1\\xeez3\\x94\\xb1?\\t\\x8e\\xb1\\x15\\xca~\\xa5?.\\xf4\\xfax\\'p\\xb0?\\xae\\xdd\\x1f\\xfb+\\x8a\\xba?/\\xe3\\xa9$c~\\xab\\xbf-\\x1f9\\x0f\\x9c>\\xc2\\xbf\\x00\\xbb\\xac\\xfb\\x15\\xb5(?\\x12]v\\xd3.\\xb2H?f\\xdf\\xb2\\xfb\\xb3tx?\\xe8W\\x9d\\xa7L\\x15z?\\xb5\\xfb\\x9f\\xd9\\xa8\\xac\\x82\\xbf\\xa9\\xd5P_\\xb0\\x8dq\\xbf\\xc09~\\x873\\x0f\\x8c?\\xb83\\x7f\\xfc\\')y?\\xc1\\xffA$\\xd8\\xf1V\\xbf0s9\\x9e\\x7fU\\x86\\xbf\\xca\\xf0>\\xbe\\xbd\\xb5\\x91\\xbff\\x0b\\x1b\\xec\\xe7%g?\\xd0\\xf4\\xe8r\\xe3\\x8e\\x85\\xbf\\xc9\\x12<0g\\xf9p?\\xe8\\xd0y\\x14\\xf5\\xe9V\\xbf\\xf1$\\xb1\\xe10\\x00\\x96\\xbf\\xedRJ\\x00\\x91\\x0f\\x92?\\x82/(\\xb3\\xd9*i?@&0\\x1aG\\xb7T?\\x9b\\xf6\\x9a\\xda\\x94\\xa1\\x8e?\"\\xdd\\xa9&\\x81\\xf8\\x82\\xbf\\xde\\rV\\x862\\xd2a?t,\\x9b\\xc6\\x07\\xa6\\x92\\xbf\\xc0\\\\\\xc6\\xd8m\\xbd\\x84?\\xfd\\x0c\\xef\\xf1S1\\x94?@\\xa0\\t\\xf6j!\\x84?T\\xf4\\xa5\\x89X\\xd49?\\xd8~\"/\\xf2\\xd9k?_\\xba/\\xf2\\xc8\\xb7\\x9a\\xbf\\x9d\\xe5\\xcb:\\x98\\x98\\x8f?\\x95I\\xc8\\xa4)c\\x85\\xbft\\'\\xaa82\\xcf\\x92?\\xd0*\\xbc\\x12\\x83\\xd4q\\xbfu\\x8e\\x11|\\xe3\\x1cz?5\\xc1k\\xa9\\xf3\\xec\\x91\\xbf#gZ\\x94+\\x01\\x9a?\\xf6\\xbb\\x8fk!E\\x86\\xbf\\xa6\\x1fr\\xe1\\xf4b\\xbb?\\xdaP\\xf1\\xfb\\x15\\x91\\xb4?\\xdc \\xee\\xa1\\xecDl\\xbf^\\x8392\\x18\\xe5\\xa5\\xbf3x\\x8a\\x02F\\xb1\\xa9\\xbf\\xa0\"C^\\xbex\\x84\\xbfq\\xce\\x9ev\\x05\\n\\x9e\\xbf\\xb8\\x96\\xde\\xfei\\xbdh?3i\\x05\\xcem5\\xa4\\xbfp\\xd0\\x11={\\x80\\xa8?\\xf9U\\xcba\\xc11\\xb2?V\\xf7\\xb4\\x9au\\xba\\xaa\\xbf\\x99n\\xa0\\xe7\\xcdU\\xa4?a\\x8d\\x91\\xe2T\\x99\\xb7\\xbfV,\\xb6\\x9d\\x8b\\xb1\\x9d\\xbf\\xb3==\\x96\\x9cF\\x98\\xbf\\x96,\\xd4\\xd5\\x12\\xebp\\xbf\\xff\\x95\\xbe\\xb6v:\\x90\\xbf\\x18>\\xd9\\xed;?\\x97\\xbfy\\x00\\xf3\\xf86\\xe1\\x86?/a*\\xa7\\xb8e\\x9f\\xbfPzM\\\\\\xdb\\xf4R\\xbf\\x17\\xcb\\xd7&=\\x95v\\xbfE\\x88\\x10\\x80^\\xea}\\xbf\\x88\\x87\\xb7\\x00C\\xb0Q?:h7*\\xa1jv\\xbf\\xc9\\x13L\\xb0\\xa0\\x1b\\x93?-p\\xec\\x9et\\xcc\\x8c?Y&\\xd5\\x04)\\x83\\x9c?\\xad\\xe5<h\\xed\\x1e\\x97?\\xea\\x1f\\x7f\\x9b.j\\x91\\xbf\\xbfQ#\\xb2\\xd8\\x14\\xa8\\xbf6\\xb2\\xce\\xb4\\xae\\xb7\\x90\\xbf\\xdd\\xa1\\xf2\\xa4k\\xcdk\\xbf\\xc4d.N\\xf4\\x8dd?\\x0eP\\xdb\\xbe\"\\xf8\\x7f\\xbf.v\\x8e\\xdf8\\xe9S?\\x00?\\xa9(\\xc0b\\x19?C\\x91&U\\xf7w\\x91?q\\x1ac\\xbb\\xf4tp?\\xe0eG\\x07\\xda\\xf3\\xeb>\\xca\\xd8\\xd1\\x1f\\xae\\xe0v?w\\xd2\\xa7\\xcf\\xc1|c\\xbf \\xaf\\x04\\td\\x03Y\\xbf^p\\x99d\\xda\\n\\x81?\\xa5\\xb9\\xdd]Gk@?o\\xdeN\\xb5\\x10\\x96D?\\x94\\xe1\\xec\\xf2J\\xe4z?u p\\x94\\xbb[y?q\\x1f\\xd08\\xb5;N\\xbf\\xeaea\\xbd?\\x93x\\xbf\\x9c(\\x9c\\x0f<8g\\xbfN\\x9e\\xda[}\\xc1g?V\\x19\\x9dQ\\xcc\\xb7w\\xbf\\x08R\\xd2\\x82\\xdf\\x8b\\\\?\\xa7,/\\xa8\\xbf\\xfbe?d\\x7f\\xa77\\xe4zg?\\xeaF\\x82\\xc2\\x86\\xd4m?\\x90\\x14E\\xc4\\x0b/\\x08?\\x00a\\xee\\x92\\xf9\\xce\\xf1\\xbe\\x0f\\xe8\\xbc\\xbec\\xf9Q\\xbf/r\\xbf\\x8f\\x85\\x07g\\xbf\\xe1H\\xa4\\x8b\\x87\\x0c`?\\x9e\\xb9\\x88j\\xd4\\x9fv?@b\\xca\\x05s5P\\xbf\\xde\\x9bQ-\\xb9Yx\\xbf\\xcc\\xc9\\x8f\\xf2\\xf24W?\\xabj<\\x92\\xf2wn?\\x82\\xce\\xb7\\x8a\\xd10\\x80?\\xa1Yf\\xff[B\\x93?\\xdc \\xee\\xa1\\xecDl\\xbf{\\xe7VE\\xb4X\\x90?\\x01?^\\xaeaTY?\\xaf>\\xc1\\xc96\\xc4\\x82?\\x05\\xb7yh\\x95\\xde\\x84\\xbf\\xb3\\x16\\x89T\\xbc\\xd8\\x80\\xbf\\xc0\\xdb8\\x95\\x14\\xa9\\x10\\xbf\\xb3\\xa8\\x0e\\x00\\xc1\\xf3\\x88?\\x84k.e\\x88\\x87\\x9d?\\xd8\\x13\\xac\\x05\\\\*\\x90\\xbf\\xbc)&\\xf1\\x8bu\\x81?b9\\x99\\xcb\\x08\\xf1n\\xbf\\xda\\x12YA\\xc9\\x7f\\x88?w\\x8e\\x024\\xd1\\x92t?\\rM\\xf3\\x06{|\\x8f\\xbf\\x80W\\x87~#\\r\\x7f\\xbfv}\\x0e\\x03\\xdf\\xc2\\x90?\\xf6~\\x06\\xf4\\xb4Kp?.\\xe7k\\xa3q\\x0b\\x87?;\\xc5\\x80\\x86\\xeai\\x82\\xbfO\\xae\\xae\\xe5\\xd69t\\xbf%\\xed\\xa5{\\x07\\\\a?B\\xd80\\x10(\\x18w\\xbf\\x81m.\\x81\\xc0\\x0f}?\\xe7\\x92s\\xed\\xc6\\xf0v\\xbf\\xbc\\xbd3\\xcd#\\x00k\\xbf\\x9b\\xcc9\\x157k`?XX\\xac~\\xf5\\x962?gh]\\xe3\\xc4Hv?\\xd6\\x90\\xc2Q\\xf0\\x9dr\\xbf:\\xef\\xe0t\\xc2m\\x7f\\xbf\\xc8W\\x12>\\x8e\\x18\\xa4\\xbf\\x8e]\\xcc\\x06\\x01Ge\\xbfj\\x91\\xc7\\n\\x1e\\xd1\\x80?\\x00y2\\x18nV\\xa7\\xbf\\xa9\\xd2\\xdc\\xa7F\\x03l?\\x90\\x1f{#\\n\\xad\\x92\\xbf\\xe6\\xccJ\\xd7\\xb0\\xb4\\xa2?\\x84]E\\x83|\\x8fo\\xbf$\\xc8\\xb1\\x82uow?z\\xa6\\xa1\\x16\\xb7\\xa0\\xa7?\\xcc\\x04\\xdd\\x17\\r\\xbdg?\\xaa\\x84\\x91\\xfb\\xde\\x05\\x8c\\xbf\\xee\\xc4\\xd38}\\xc2\\xac?z?\\x0b9\\xf2kp\\xbf4\\xea\\xff\\xdc\\xea\\xcds?\\x13xC\\x0bQu\\x9c?\\xd0O*\\xd0@\\x0c\\x9a\\xbf\\x84\\x8f\\xe9H,\\x94\\x86\\xbfh\\xf1t\\x91\\x80/\\x93\\xbf\\xd8\\xb6\\xeb\\x1f\\x05\\xa5\\x9b\\xbf\\x9c/\\x18\\xbbk\\xdb~?\\xf6]#|d\\x04\\x93\\xbf\\xac\\xf6\\xb00\\x16\\x08\\x98?\\xc0V\\x16\\x90\\x85[\\x86?\\x12\\x1d\\x08\\x8b\\x84\\x8e\\x90\\xbf\\x14\\xae\\xba\\xbd\\x13\\xd6m\\xbfn\\xd2c\\xf5\\xab\\xd3\\x84?\\x80\\xacIa\\x85Ch\\xbf\\x92=\\xcd\\xb2\\x0b7\\xa2?\\xe0\\x8a\\xce_\\xa0\\xe1\\x91\\xbf2\\t\\x8f\\x8d\\xeaI\\x82\\xbf\\xef#\\x04CX\\xb9\\x95\\xbf\\xc6\\xf0\\xcb\\xe9\\xd1\\xa6\\xa5\\xbfJ\\xbc\\xa95y:\\x80\\xbf\\xfdQ\\xb57^\\xc2\\x95?\\x92\\x8c#\\xdb\\xa4\\xcb\\xae\\xbf\\xb8\\xdc\\x8f\\x8d\\t\\xbc_?\\xc6\\xba\\x10\\x0b2T\\xcc\\xbf^\\x8392\\x18\\xe5\\xa5\\xbf\\xff>^\\xaeaTY?\\x0c\\xd1\\xb1yV\\xfd\\xc1?8\\x1a\\xf2\\xc7\\xbe\\x8eV\\xbf\\t1<0\\x0e\\xd2\\xa8\\xbf\\x05LZ\\xd9\\x9d\\x0b\\x9c?\\xbf\\x01#]\\n^\\x94?\\x94\\x8e\\x84\\x06\\xea\\xac\\x84\\xbf\\x1f\\xcay\\xd0r\\n\\xb8\\xbf\\xf0\\x9c\\x14\\xf8\\xe32\\x9c\\xbf\"r\\x12\\xf9B\\xa5\\x81\\xbf\\x9f>\\xb5u\\xae+\\x93\\xbf\\x88P\\x9a\\x9d\\x05\\x0c\\xaa?\\x897\\xc7\\x9e\\x95\\xb9\\xa3?\\x80\\x04U\\x89\\xafA\\x84\\xbf0yL5\\x91\\xe0\\xa2?\\xf9\\xa9\\xfc\\x01\\xa4P\\x8b?a\\xb7\\xb9t\\x9b\\x07\\xb3?\\x99Y\\x18aN\\x81\\xa6\\xbf[~\\'3W9\\xae?\\xc0(\\x93\\xe7\\xbbmJ?xV\\xc4\\'>\\x8d{?\"Lt\\xa3<\\xd0\\x96?h\\xc1\\xe4G.\\xbbs?6%r\\x86\\xc5}\\x89?&?\\xa7\\x05\\xd18\\xa3\\xbfM\\xfa\\xb3\\xaa\\x10\\xd8\\x92\\xbf\\xc5\\xe0\\xe8\\xcbM\\xda\\xa0\\xbf\\xbaY0\\x95\\xe9O\\xa5\\xbf_\\x11z\\xc8\\x11Z\\x91?h\\x18\\xc1\\xd4\\x05i\\xaa?\\x14?!\\x84\\x95\\x1a|?n\\xe378\\x97uc\\xbf\\xe6r\\x91\\xcd\\x85\\xaf\\x80\\xbf\\xa2\\xb3y\\x1b\\xe6,\\x81?\\x14e\\x98\\x88\\xa4\\x9a|?\\xbc\\t9U\\xe3\\xdf\\x84?\\x11&d\\xfb\\x12\\xf1\\x8e\\xbf!z\\x97\\xdd\\x15\\xf2a?\\xe0Oq1\\xcf\\x94Z\\xbf\\xa0D9U\\xb1\\xdb\\x85\\xbf\\xae{\\xa1\\xb9t\\x1c\\x92?\\x95\\xecprf\\xd0m?\\x14\\x90\\xba\\xa6%\\xa2\\x84\\xbf\\x16$\\xabc\\x91!\\x80\\xbf\\xe8\\x08\\xcc*\\x13\\x9e;\\xbf\\x00\\xcb\\xc9\\xf6\\x05T\\x8f?\\xb0\\x96b\\x1bM1S?\\xd4Jini\\xe6\\x80?\\x88*\\x06\\xf0jeW?~\\x9b\\xce:\\xc9\\x90u\\xbf\\xf1\\xc8\\xcd\\xdf\\x0e\\x84\\x83?\\x03H\\x93\\xd5\\xc3\\x08b?\\xaba\\'\\x1b\\r\\xfb\\x82?E\\xd0\\x89\\x05\\x97\\xe0\\x82\\xbf\\xb8A\\xa9`\\xcc\\x08\\x88\\xbf\\x18\\x92\\x8b\\x8c\\x87\\xfeb\\xbfr\\x92+\\x91\\xf6\\xce]\\xbf\\xe0(\\t\\x18\\x0b\\x1df\\xbf\\xefdU\\x9a\\x83~\\x86?,\\xc7\\xfa|\\xd5\\ru\\xbf\\xee\\xf4\\xb3a\\xd4\\x94\\x8c?N2\\x02%\\xf2Wh\\xbf\\xd2\\xe8Y\\xb1m\\x1a\\x92?\\x94>\\xb3eL\\xbe\\x86\\xbf\\xc1\\'\\xc9r\\x88Mo?\\xf0\\xfa[zw`\\x89?N\\xee\\x82\\xeaSB\\x88?]\\x8bU\\xb6\\x82\\x99\\x81?3x\\x8a\\x02F\\xb1\\xa9\\xbf\\xaf>\\xc1\\xc96\\xc4\\x82?8\\x1a\\xf2\\xc7\\xbe\\x8eV\\xbfE;\\x8b\\xa4Z\\xd2\\xb0?7\\xe5\\x19\\xfel\\xef\\xa1?\\x9a\\xc2\\xa8\\x8b\\r\\x0bs\\xbft\\x14&1O\\x80\\x8c\\xbf\\xf7\\xaa\\xfd\\x11(m\\xa7?8\\xa1\\xbb}=Xf?^\\x99\\x12\\xc0\\xe5\\xc4\\xb1\\xbfas&\\xc5\\x17\\xf6\\xaf?H<.\\xd0\\xab\\xb1R\\xbf4\\xec\\xe7\\x1e\\xben\\xb4?`\\xa2\\xa0\\x86k;\\x84?\\x00K\\x87Qyyq\\xbf\\x00o_Q>\\x88v\\xbf\\xbd\\xf6\\xb4\\xe6\\x9b:\\x8e?h7\\tY\\xb8}\\x8f?\\x00\\xce\\xbc\\x0b\\xd5\\xf7|?$\\x81\\xdc[V\\xbd~\\xbf\\xb8\\xb6\\x9e|,cS?~\\x92\\xf0\\xe0yKv?\\xba\\xc3\\x1a:\\xfb\\xf6\\x84\\xbfp\\xec\\xe6n\\xc5\\xfbE?5\\xf3\\x128g \\x82\\xbf\\xf8\\xea`\\xc6D^s\\xbf\\xd0bT\\xcf\\x18Cm\\xbfPBzTB\\xaf\\x8a\\xbfp\\xcc\\x9fkm\\xf7[?\\xa4\\x9e\\x03\\x1f\\xa1\\xf2k?M\\x8a[\\x7fBW\\x88?#\\x8f\\xbc3\\x83\\x04\\xb1?\\xda\\xd8\\xd2\\xd8)\\x8a\\x7f?\\xce\\xde)\\xbdS]\\x93\\xbfB\\x99\\xd8\\xde/\\x05\\xaf?\\xd0Nr\\x80NUs\\xbfBk\\xb88T\\xd9\\x8e?|\\xca\\x12U\\xba\\x0b\\xb2\\xbf\"\\xaf|\\x9d}jb?2\\x12\\xe0\\xb6nBv\\xbf\\xa4\\xb9\\x9b?\\xf23\\xae\\xbf=\\x87\\xcd\\xaeI\\xfb\\x92?r)v\\x14m\\x13\\x8d?V\\xcc2\\x9a\\x0c\\x01\\xaf\\xbf\\xc0\\xa0\\x1e\\xd0\\x16F\\x81\\xbf\\xd6\\xa6\\x89|\\xd4\\xecu\\xbf`{a\\xf7kVO\\xbffd\\xa5\\xf0\\xd8fq?\\x94\\t\\xa6\\xa5\\r\\x82\\x8a?Xx\\xa2\\x05\\x1e\\xa4\\x96?e\\xd7`\\xc0\\x80\\xd5\\x93?8\\xbaL\\x832\\x9a`\\xbf\\x8a\\xe4\\xd8\\xd4\\xaa\\xaf\\x9c?<\\xa5\\x0b\\xeb\\xae\\x94\\x89\\xbf\\xe0\\xa4\\t\\x8f\\x17k\\x8c\\xbf\\xcd\\xca\\xb2\\xa60\\x02y\\xbf\\x00#\\xe0\\x0b\\xf27-\\xbfcPt\\x7f?t\\x81\\xbf\\xe0]p\\xdc\\xf5kU?\\xd0\\x81\\xec\\xea\\xad\\x12\\x8c\\xbf\\xb2\\xacq\\xe9\\xc6\\xc2\\x8d?8\\x82L\\xc7a\\n\\x8c?\\xee\\xc3*\\x9dg\\x12\\x80?\\xa2z\\xd2\\x8b\\xda\\xf8\\xa3?\\xf0f\\xcd\\xadU~\\x96?0!\\x17e0\\x1b\\x94\\xbf\\xfc\\xed\\xbd\\xb3\\xb50\\xa4?\\xc0\\xe3at\\xa6\\xc7O\\xbf/F-4;\\x8b\\xb3?\\xa0\"C^\\xbex\\x84\\xbf\\x06\\xb7yh\\x95\\xde\\x84\\xbf\\x0b1<0\\x0e\\xd2\\xa8\\xbf7\\xe5\\x19\\xfel\\xef\\xa1? \\xd8\\xed\\x02\\x04\\xd4\\xba?\\xaaY)\\x87\\x0eCq\\xbf\\x84\\xde\\x19\\xf1\\xdco\\x93\\xbf\\xac2e\\xd2\\xcc\\x97\\x90?B\\xe5\\xf5\\x124I\\x8b\\xbf\\x08\\x11\\x82\\xc9\\x03\\xd4\\x86\\xbf<\\xb4\\x83\\x1d\\xf3\\x89\\x9f?\\x93Kf\\xd4m\\x7f\\xa7?\\xe0`I\\'p(p?\\x1b\\x04\\xdc\\x9c&e\\x98\\xbf \\x8fJ\\xde\\x810\\x88?\\x86\\xca\\xf4\\xd4\\xbfx\\x96\\xbf{\\x1bpD\\xdc`\\x96\\xbf\\xe0\\xe6;\\xd6\\xc8\\xeb\\xa1\\xbf6\\xc1\\xd7\\xc3\\xc9P\\x99?\\xe12\\xfd\\\\\\xd5\\xa6\\x9a\\xbf\\xf0#\\xe3\\xfa\\xa9s\\x8e? \\xads\\x14\\xdd\\x82\\x87\\xbf\\xacPi\\x98r\\xf6k\\xbf\\x18\\xa5\\xb6\\x95q\\xe6\\x92\\xbf\\xa8!\\xd9\\xad`\\x8bu?\\x04X\\xb4\\xe7\\x178\\x8b?\\xf0\\x12\\xf3t#vP\\xbf`R9\\xde\\xe5\\x12\\\\\\xbf\\xa6\\xfe\\x93);\\x16\\x84?T\\xf0\\xd6\\x9c\\xea\\xebp?P\\xa4\\x98\\x08)W}\\xbf\\x80\\xe42\\xc2\\xfa~\\x8a?\\x92\\x8a\\x15)\\xe5\\xc9h?\\xb2E~[\\x00_\\x80\\xbfY\\xad@r\\x81\\xbcz?a.\\xb7G\\xc2yZ?\\x9eX\\x836\\xa2Pc\\xbfl\\x02\\x8f\\xa2\\x86-\\x95\\xbfb%\\xdd\\x90\\xe54\\x80\\xbfO35D\\xbd{p?\\\\\\xef\\\\W\\x8d\\xcfq?R\\x1a\\xe4\\xfe\\xb1\\x83a?\\xd8T\\x859\\xc9\\x06n\\xbf\\x8a;\\xe5D\\xb1\\xf3s?\\xb1\\\\M_y\\xeer?\\xa0\\xf7i\\xa3\\x0bc,\\xbf\\xbeQe<S\\xcfo?\\xc3\\x7f\\xa1\\xc5\\xcf\\x0c\\x95\\xbf`J^z\\xd6\\x81x\\xbf\\xa2\\xd8\\x1a\\x0cg\\x97X?e_\\xcfo\\xf8nj\\xbf|\\x08\\xddFv\\xae[?^9\\x8dQ\\xd6\\xf4`?\\x13\\x86\\x7fc\\x0b\\xaew?\\x00S\\xae\\xff\\xa2\\xd3r\\xbf\\x91\\xf7\\x90\\x0e\\x8d\\xfd\\x80\\xbf\\x87\\xc9\\xf9\\xad\\xc1&\\x83\\xbfPC\\x83D\\xec\\xb6X?HY\\xd0\\x9e\\x19\\xd7R\\xbf\\xe4\\x15@\\xef\\x08m\\x87?\\x8d\\xc4\\xa0\\xf0\\x8e4\\x82\\xbf\\x80=X\\xd6\\x1d\\xca\\x01?\\x90\\xcb\\xb9#\\x85\\xff\\x8c\\xbf@\\xf8p\\xe1\\xb3yA\\xbf\\xbeR\\x90\\xaan\\x04\\x85?\\xbf\\xcer\\x84v\\xd7\\xa4?\\x01\\xb7\\xa6\\xe7Q7\\xa4\\xbf7L\\xdc u\\x99`\\xbf\\xec8\\xca\\x04[y\\xbb\\xbfq\\xce\\x9ev\\x05\\n\\x9e\\xbf\\xb3\\x16\\x89T\\xbc\\xd8\\x80\\xbf\\x05LZ\\xd9\\x9d\\x0b\\x9c?\\x9a\\xc2\\xa8\\x8b\\r\\x0bs\\xbf\\xaaY)\\x87\\x0eCq\\xbf\\xc0\\xf5\\x8e\\x80\\xc1#\\xaf?\\xd0\\x98\\xdc\\xbb\\xc8\\xb2<\\xbf\\x93\\x8f\\x7f+\\xc6*\\x80\\xbf\\x1e]\\xc2\\x86\\xefq\\xae\\xbf(\\xae\\xd7\\xe5\\x88z_?\\xe1E\\xe52[\\xf3c?\\xfd\\xb1\\xab\\xf2\\x8a:\\xa5\\xbf\\xc9\\x17\\xf7\\xd9M\\xdc\\x96?M\\xba\\xef\\x86\\xd3\\x03\\x90?\\x86\\xc2\\x0b\\x1e\\xb2B\\xac?\\xb7\\xb5\\xa5\\xc5\\xda\\x81c\\xbfjb\\xf4?\\xbd\\x98{\\xbf\\x12\\xdfP\\xf3\\xf2\\xe6\\x86\\xbf\\xda\\x87\\xa2x\\x01\\xe2\\x84\\xbf\\xcfo\\xe6<\\xa7Z\\xa1?\\x96\\xb6\\xd8A\\xc5\\xaak?8\\xd6\\xadd\\xe1\\xbeg\\xbf\\xdcj^\\xe2N?\\x8a?\\x7f\\x82\\xef\\xa8f\\xf0|\\xbfK\\xd3z\\xc7\\x8a[\\x94?\\x81\\r4\\xe8\\xda4\\x87\\xbfZ\\x19\\xf5N\\x99\\xb1\\x86\\xbf\\xc8\\x1e\\xd0\\xf0`\\xe9\\x90\\xbf\"\\xbc?\\xac\\x9e\\xa1\\x9a\\xbf\\xda\\xe45\\xac\\xcb\\x11\\x91?\\xb5\\xb4){\\xa9\\x8e\\xa5?\\x08\\x8d\\x9d\\xa8\\xaf\\xee\\x97\\xbf\\x8a_\\xdd\\xa0X\\xe4t\\xbf,R2i\\xb7\\xc6q?<C]\\xc98c\\x9d\\xbf\\xbc>`mvQg?\\x9cq\\x1d\\x01\\x9b\\xccq\\xbf\\x8c\\x98\\x08\\x8dv\\x07\\x9b?\\xdc&\\xc3\\xa8\\xe6\\xd1\\\\\\xbf\\x10\\x17\\t\\x8d\\xb5\\xf1%?\\xa0o\\x82\\x06]}\\x95?2\\xf1\\x95\\xca\\x0b\\xed\\x81\\xbft\\x9b\\xa4Iv\\xa8r\\xbf\\xb0\\x8a\\x96r!\\x03\\x97?~\\xba/\\x17\\xfd\\\\q?\\xe8lr?\\nRb?\\xe4\\xbe\\xc2T\\xd8\\xbcf\\xbf\\x1d`\\xce\\xb50kj\\xbf\\xd9[uY\\xfa\\x1ds\\xbfp3$\\x94\\xa3CH?H\\x07\\xe5\\xc8\\xf9\\x83q\\xbfL/\\xf8S\\xbeuj\\xbfPJ\\x0f\\xe3\\r\\x02]\\xbf\\x00\\x10\\x81%\\xc3*=?\\xa44K\\x80\\x0c\\xfc\\x82?\\t\\xdd\\r\\x81\\xae\\xc8f?\\xb0Z\\xe9\\xf1`\\xc9D?t\\xbb|uq^f?\\xb8\\xf0\\x05\\x8c\\xb0%s\\xbf\\xec\\xcaJ\\xd7/\\x14X?p\\xbeD\\xb0\\x90\\x9aY?r\\x06\\x0e&\\x8b\\xd4\\x83\\xbf\\xa8-}\\xcd\\xab#e?\\xa6D\\x08\\xf0\\x80\\x97\\x99\\xbf\\xb4\\x85\\x01\\xf5mbw\\xbf]Q\\xd1\\x92`u\\x84\\xbf\\xd2\\xbd\\xca\\xf8\\x99J\\x89\\xbf\\x00\\xce\\x87@\\xcb~0\\xbf\\x1b\\x81l1\"#\\x9e\\xbf\\xb8\\x96\\xde\\xfei\\xbdh?\\xc0\\xdb8\\x95\\x14\\xa9\\x10\\xbf\\xbf\\x01#]\\n^\\x94?t\\x14&1O\\x80\\x8c\\xbf\\x84\\xde\\x19\\xf1\\xdco\\x93\\xbf\\xd0\\x98\\xdc\\xbb\\xc8\\xb2<\\xbf \\xfa\\x8b\\xb91e\\x93?U\\xbf\\x8d\\xe9\\xef\\xbe\\x83\\xbfX\\xbd\\xfe\\x00\\x07\\x13{\\xbf\\xd8\\x14c\\xe2\\xf1\\xff\\x83?\\x16\\x81N\\xbd\\xbf\\xec\\x90\\xbf\\x18\\xb0\\xee$\\xbaer\\xbf@\\x95\\x84\\xb1\\xb3!\\x82\\xbf(\\xe0\\xc6\\x069\\x0f_?\\x08\\xd1\\x1d\\x87\\xb2\\x10\\x88\\xbf\\x88\\x80\\xe2\\xe7_\\xf0y?\\xb9\\xe5\\xfc\\x89M\\xa2b\\xbfX^\\xb9\\x06zL\\x90?\\x00A\\x12O\\xb1\\xc6x\\xbf`\\xef\\xc4\\xd3D5P?0d\\xe9U\\xbb\\xd7X\\xbf\\xf8\\xc3T\\x00\\x14\\x8ch?X\\xbes\\x08\\x1c\\xc1b\\xbf\\x00\\xa2\\xb2\\xe8\\x14\\xbdm?\\xd0j,\\xdb|\\x9eP?\\x80\\xde\\xcf\\x88<\\x17Z\\xbf\\x80V48\\xf2\\xc2Y\\xbf\\xa0\\x81U\\x0f\\xae\\x8ec\\xbf\\xe8\\xd1\\xb5\\xec2pa\\xbf\\x00\\x82\\x1466\\xcc9?\\x80\\xc1,\\x07\\xe9\\xb7]?\\x18\\xaa\\xeb\\xf3E\\xffr\\xbfJ\\xca\\x12\\x06E5}\\xbf\\xed\\xdb\\xeb\\xf6\\x9d\\xb5h\\xbfDo\\x89\\x88\\xd3\\rM\\xbf\\xd2nM\\xf6ID\\x82?\\xd9\\xe7\\xdc\\xea\\xe7\\xda\\x81?h,\\xe4\\x84\\x03\\xbcv\\xbfM\\xf6\\xfc\\x84\\x10<e?\\xafl\\\\\\xf7~\\xed`\\xbf\\x9c\\x9en\\xc3\\xd3\\xa9Z\\xbf9\\xbc\\xcb\\x08\\x06\"\\x86?\\x1c&\\xf4#64c?8\\xb8\\x9e\\xf6\\xa9\\x063?.\\xcc\\xfbz8\\x18x\\xbf[]{\\x88\\x87\\x116?5\\xea\\x1b\\xdcy]\\x86?\\x97%5\\xa0 Qz?_\\xa8v\\x0c\\xa7\\xfch?\\x98\\xa9{\\xdb\\xb7\\xa9\\x19?\\xa4\\xc7\\xd9>7n\\x8a\\xbf\\x8d\\x82,\\t9z\\x84?N\\x95\\xf0\\xff;\\xe43?A\\x9a&\\x975\\xc6\\x8b? g\\xd3\\xa6X&k\\xbf\\x89\\xd0Xu\\x80\\xa7{\\xbf\\xecH4\\xef\\xddmG?i>\\xb6=\\xa2Em\\xbfd\\xd8\\xbf>n\\x8bq\\xbfK\\xd7\\xd8\\r\\xbam\\x8a?\\xf4B\\xa7i\\x8c\\xf5\\x85\\xbf VaO\\'e\\x87?\\x9f\\xbf\\xaal\\x99\\xa6q\\xbf\\xec\\xef\\xb5\\xf6\\xa0\\x1c\\x87?v\\xad^@*)\\x82\\xbf\\x1c\\xcf\\x9b^\\xdc\\xcfQ\\xbf(:r\\x04L6\\x8c?U\\xfd\\x00\\xe8\\x93\\xaa\\x86?N\\xfd\\xcc\\x99\\xb8\\x8d\\x9e?3i\\x05\\xcem5\\xa4\\xbf\\xb3\\xa8\\x0e\\x00\\xc1\\xf3\\x88?\\x94\\x8e\\x84\\x06\\xea\\xac\\x84\\xbf\\xf7\\xaa\\xfd\\x11(m\\xa7?\\xad2e\\xd2\\xcc\\x97\\x90?\\x93\\x8f\\x7f+\\xc6*\\x80\\xbfU\\xbf\\x8d\\xe9\\xef\\xbe\\x83\\xbf\\xbb\\xd7\\x95\\x07\\xd5c\\xb1?\\xd2\\xdd~\\xd3?l\\xa1?W\\xdf\\xae\\x81\\xecb\\xb4\\xbf\"\\xa6\\x9b\\xd0\\xe2\\r\\xb0?\\xd3y\\xb7Q_\\xc8o\\xbf\\x94\\xf5\\xfc\\x86\\xa4E\\xb1?\\xc5n\\x1bF\\xff\\xf1\\xa1?\\x9aS\\x07\\x1c\\x95e\\xa3\\xbf\\x9a\\xb9\\xda\\x13\\xd3\\x80\\x8a\\xbf\\xb7\\x90\\xdf\\xfe\\xe7\\xf6\\xa0?\\x98K\\xbfQ\\xe0\\xe6\\xa5?\\xa1z\\\\t^\\xe4\\x91?\\x996\\x8eYk\\xae\\x9d\\xbf\\x00\\x93\\xd6\\xed\\x8ah\\x83\\xbf\\x98\\xbc\\x05\\x8d\\xf2\\x18q\\xbf\"&\\xcb\\x9d\\nJ\\x9b\\xbf\\n\\x08/\\tcW\\x89?g\\x1a\\xf7\\xd8(pt\\xbf\\xdf\\xf1\\x14\\x99\\xc8\\xdco\\xbf\\xb1|\\x02\\x96\\xf9\\xa0Y?\\x80\\xa6+\\x02I\\xfe\\x84\\xbf\\xbf\\x10\\xe1&[\\xa2u?\\x1a\\xf1\\x03\\xf2\\xa9Oq\\xbfC8Ff\\xf6\\xe9x?\\x88\\x003\\xdc\"/\\xa5\\xbf9#}FNL\\x8c\\xbf\\xfd\\x9c\\xb4\\xff\\x86\\xfd\\x83?\\xd0\\xa4\\x0ex\\x85\\x19\\x7f\\xbf\\xd0\\x83\\x04%\\x14\\xbd]?\\xcd\\x0c\\x1b\\xc7\\xd9\\x9b\\x80?(aK)#6\\xa6?\\xe2\\x91\\x8a\\x7f\\xbe\\xf4\\x90?\\xccl\\x9d}\\x9c\\xa3f\\xbf`\\x86\\xfd\\xe3G\\xe2o?_\\xect\\n\\xda\\x18\\x93\\xbf\\x98\\x15J\\x82F\\xaah?\\xc0\\xb4\\x96\\x11+\\xa3^?\\xffHX\\x08<\\xf1|?\\xa06\\xbb\\xe2\\x8fo:\\xbf\\x06\\x9f$U\\xe3\\xc2\\x92\\xbfB\\xfc`\\x00\\x08U\\xa6?\\x02\\x1fo\\xeau\\xcbd?\\xb8\\x93\\x9a\\xeb\\x878S\\xbf\\xe4\\xf3\\x91\\xcaI\\xfb\\x82?\\xe0\\xa9\\xa8\\xce\\x07\\xd9Y\\xbf\\xc2\\xc0Re\\x15\\x10\\x89\\xbf\\xca6\\xbb\\x82\"\\x12\\x8c\\xbfb\\x9fT/(\\xc6\\x84?\\xd9\\xb1\\xaf\\xd5$\\xd6\\x9b?~\\xa7(T\\xa5\\xd9\\x93??\\x14\\xbb\\x08\\xd9|w\\xbf`\\x99\\xd6c\"\\xd2R\\xbf\\x02\\xa0Quv\\x11\\xa1\\xbft\\xb0\\xd1?\\xce\\xed\\x89?\\xb8\\xfe\\xc7\\xebS_S?\\x94\\xa1R-H\\x00\\xa1? \\xff\\xe8\\x8d^\\xc7a?\\xfa>(\\xb35+\\x99\\xbfW\\x05\\x0b2\\xe1\\x16\\xa2\\xbf\\x1eT\\x93<\\xbbm\\xae?\\xbc\\x99W\\xd1i\\x18\\x88?\\xcec\\xfe\"\\x10\\x96\\xcf?p\\xd0\\x11={\\x80\\xa8?\\x84k.e\\x88\\x87\\x9d?\\x1f\\xcay\\xd0r\\n\\xb8\\xbf8\\xa1\\xbb}=Xf?B\\xe5\\xf5\\x124I\\x8b\\xbf\\x1e]\\xc2\\x86\\xefq\\xae\\xbfX\\xbd\\xfe\\x00\\x07\\x13{\\xbf\\xd2\\xdd~\\xd3?l\\xa1?\\xe5R\\x81\\xb1n\\x8b\\xc8?PQ\\xb5\\x83\\x16\\x1c\\x81\\xbf\\x0e\\xa1m\\xb6:\\xf9{\\xbf\\x9d\\x94\\x01v\\xa8\\x97\\xa2?<\\x19P\\xb1\\xc5\\xe2\\xaa\\xbfz\\xd1/\\x06\\xd2\\x0c\\x97\\xbf\\xa8\\xf7\\xc4\\x19Y\\x15\\xb2\\xbfm@\\xeb\\x95\\xf1C\\x96\\xbf\\x91\\x89\\x8a\\xf6\\x17\\xfc\\x89?\\x00m4\\xea\\x83c]\\xbf\\xcc\\xcd \\x95[\\x83\\xa7?\\x08E\\x0b\\x9e\\x87#\\xb7\\xbf\\x95\\xf7\\xa9[\\xbb{\\x91\\xbfx\\x9a\\xb1\\x1b\\x93\\x99k?r\\xaev\\x8d\\xc4\\x06\\xa5\\xbf\\x12\\xae^\\x13\\xf9I\\x9b?(\\xba\\x9d6HY\\xa3\\xbf\\xfe^\\xf7?\\xbf\\x9b\\xa0?\\x97k\\xeb%5g\\x9a?\\x16\\xa3\\x84\\x82:\\xd7\\xa2?b\\x86\\xb2\\xd2\\'\\x16\\xad?.\\xcf\\xf2\\xa4\\x880\\xa4\\xbfG6/+\\xd4\\x08\\xb4\\xbf@\\x1d\\xc0bpo\\x80?\\xe9Es\\xe3\\x94\\x98\\x8e?\\x18\\xc4\\x11\\x86\\x08U\\x82?\\x0061\\xdcU6e?3\\x98\\x7f\\x16\\xe4\\xa2\\x92\\xbf#\\x9c\\x17\\xf5@m\\x8f\\xbf\\x00\\xa06\\xc0\\x02\\x83\\x0c?\\x18\\xdc\\x12z\\xde\\xfce\\xbf\\x100\\xe5\\x96\\xce}I\\xbf\\xb0<\\xa8\\x16\\x0bH\\x89\\xbf\\xa5\\xf7z\\x1e!o\\x98\\xbf\\x00N\\xe2\\xd4k\\xd1\\x10?\\x80\\x05\\x8a|\\xec\\xe1\\x8a\\xbf\\xc4\\x81\\xf7\\x89R\\xb9\\x87?0\\x8bma9\\x9bT?q\\xcf^\\xa9\\x91\\xa6\\x97\\xbf\\xe0\\xa2#\\x86\\xfd!??\\xe0M\\x80\\xc8\\xf4^5\\xbf\\x80P2\\xf3\\xc4\\xac8?\\xbe\\x11\\xb4d\\xa39\\xa0?*}q\\xb31\\x9e\\x97\\xbf\\x84\\xe4\\xbe\\x9d\\xf6\\r\\x88?\\x84~\\xbe\\x90xM\\x9c\\xbf\\xb0\\xef\\x99O\\xb9\"\\x82\\xbf\\xe6\\xadm\\xd6\\xe2\"\\x80?\\xe0\\x83\\x19\\x81\\n\\xe5J?\\x18Ra\\xe9\\xfc\\x91U?\\x10\\x9a<\\xfc$e\\x98?8\\xceDm\\xf4\\xff\\xa4\\xbfTD\\x17V\\xfa\\x85\\x9c?M\\x1c:qy\\x10\\x92\\xbf\\xb4Kp\\xfa\\x05\\x92\\x8a?\\xa0\\xd7\\xc1\\xd3\\xfej\\x9d?\\xa2\\xd2\\xd5\\xb4Y\\xb8\\x93?\\x1a\\xc1|\\x0c\\xe7\\x99r\\xbf\\x00\\x80*}w\\xa1\\xcd\\xbe\\xa0\\x0b\\xf4\\xbaD\\x9c\\x91\\xbf\\x92u(\\xc5W\\xd0\\x9a?\\xf9U\\xcba\\xc11\\xb2?\\xd8\\x13\\xac\\x05\\\\*\\x90\\xbf\\xf8\\x9c\\x14\\xf8\\xe32\\x9c\\xbf^\\x99\\x12\\xc0\\xe5\\xc4\\xb1\\xbf\\x08\\x11\\x82\\xc9\\x03\\xd4\\x86\\xbf \\xae\\xd7\\xe5\\x88z_?\\xd8\\x14c\\xe2\\xf1\\xff\\x83?W\\xdf\\xae\\x81\\xecb\\xb4\\xbfXQ\\xb5\\x83\\x16\\x1c\\x81\\xbf\\x16\\x1d\\xc4Q\\xde\\xc5\\xc9?\\xf7\\x93YINk\\xb5\\xbf@\\xbb\\xa8\\xd9\\x1ePQ\\xbfE_\\xb6\\x8f\\x0b\\xb4\\xc7\\xbf\\xbdc\\xd3\\x84U\\xcd\\xa1\\xbf\\x84\"u#\\x14\\xf8\\xb4?(\\x8fT\\xf3c\\xcd\\xaf\\xbfG\\xf2\\x18/\\xf0A\\x9f\\xbf\\xd8\\x16\\xe4\\xe7\\xc7\\xce\\xb9\\xbf\\x10\\xe3\\rO\\xb1Q\\xac?\\xc8\\xee\\x8bG\\x8a~\\x8c?X5\\xc7\\x92mb\\x85\\xbf\\x88\\xe6\\x9e\\xa9K\\x83\\x90?:a\\x19V:[\\x98?\\x80\\xc6\\xab\\xe6S\\x9cZ\\xbf\\xb8\\x8e\\x0f\\xb2\\x14\\x93\\x80\\xbf,\\xa4Zp\\x16\\x02\\x9e?\\x00\\xc9]\\x8ash\\x82?~\\x98h\\xd8\\x86\\x0f\\xa5?\\\\\\x19\\x05\\xf4:\\x85\\x8d?\\xa0\\x98%\\xc43Rz\\xbf\\xf8\\x84T\\xbc{C\\xa4\\xbf\\xc0aP*+[\\x90?\\xc4\\x11_\\n-Q]\\xbf\\xde\\xf9\\x03\\xdd0\\xef\\x86\\xbf\\xa4\\x9aX\\xea\\xc2\\xa7\\x92?P[\\xef\\x85\\xf4J\\x86?\\xed\\xaem\\xb5\\x19\\x0f\\x92?\\x98\\x10\\x92\\xb8\\xad5\\x9a\\xbf\\xd0\\x91\\xc3L~\\x94K\\xbf\\xb2\\xcb\\x1c\\x1b\\x19\\xbfe\\xbf\\x18\\xa7V\\xa1e\\xe5\\x90\\xbf\\xc2C4\"\\xf8\\x18\\x97?$\\xa2\\x93s\\xac\\x81q?`\\xcfP\\xb0\\x90{\\x8f\\xbf\\x9c\\x8d\\x04\\x06\\xd0v|\\xbf\\x00\\x92r\\x1e4\\xf4\\x18\\xbf\\nV\\xe9M\\xe6\\x1b\\x92?\\x1fa\\x0e\\n\\x9c\\xc3r\\xbf\\x0e\\xd8\\x7f\\xe9\\xf0\\xdc\\x80?\\x87l&#\\xc8\\xf6\\x83?\\x0c\\xb0E\\xf6\\x84a\\x87\\xbf\\x8d\\xc8!\\x81\\x83d\\x89?\\xec\\xa3\\xa3\\x81i8m?\\xdc\\xd8\\xb7\"\\x9f\\xe3\\x8a?P\\xb1*\\xef\\x05k\\x8c\\xbf =Y\\xbd\\xfb\\xe9\\x86\\xbf\\t\\x97\\x97p\\t\\x05\\x82\\xbf\\x88D\\xf9\\x05K\\x8f`\\xbf\\x80\\x7f=7cT\\x80\\xbf\\xe4\\x98\\xab$\\xf0\\'\\x95?9Pt\\\\3\\xfb\\x90\\xbf\\xc0\\x10\\x04cFn\\x94?F\\xb0\\xd7&\\xeen\\x82\\xbf\\x1eF\\x1cb\\xf7e\\x9b?\\xe8\\xebr\\x03\\xcd_Z?\\n\\x1b\\xd4\\x83[*\\x95?hn\\xb6\\xcf\\x97Iy?O\\x00\\xa2\\xdc\\xd6\\x04\\x88?\\xf6\\x06r\\x1a\\x1b\\x80\\x84\\xbfV\\xf7\\xb4\\x9au\\xba\\xaa\\xbf\\xbc)&\\xf1\\x8bu\\x81?\"r\\x12\\xf9B\\xa5\\x81\\xbfas&\\xc5\\x17\\xf6\\xaf?<\\xb4\\x83\\x1d\\xf3\\x89\\x9f?\\xe2E\\xe52[\\xf3c?\\x16\\x81N\\xbd\\xbf\\xec\\x90\\xbf\"\\xa6\\x9b\\xd0\\xe2\\r\\xb0?\\x0e\\xa1m\\xb6:\\xf9{\\xbf\\xf7\\x93YINk\\xb5\\xbf\\xd1\\x15\\xa5\\xf62\\xad\\xbb?\\xf4\\x113{A\\xdf\\xa2\\xbf\\xd4\\x8b\\xb2L\\xe6\\xc5\\xbe?6L4\\xa9\\xe5\\x94\\x9c?\\x00\\xde\\x16\\xb8k\\xf2,?\\x1bw\\xff\\x1e\\xc6t\\x9d\\xbfH\\xbe\\x1f%Z\\xa1\\xab?\\xc8\\x07\\xaf\\xfb\\xfc\\x9d\\x9f?\\xb4\\xf5\\xea\\x9a;N\\x9d?\\x10\\xd4yB\\x89\\x8a\\x92\\xbf@\\xb5\\xd1C\"\\x07z\\xbf,,\\x0cfK\\x9e\\x83\\xbf\\xc5+}\\xd5\\xc6f\\xa2\\xbf\\xb0`\\xbe\\x1a\"\\xc8u?\\\\\\\\\\xbaP\\xa3\\xfc\\x88?\\x8en\\r.\\xdc\\x02\\x86\\xbf`\\xb8W:,ec\\xbf\\x9f\\xd5\\xe4\\x02\\x9fJ\\x95\\xbf\\xd0\\xd1\\xa8\\xb7\\xda;k\\xbf n \\xf8+\\xa7w?\\x80\\xb2b?\\xf8O\\x9a?p\\x19\\xb9S\\x9c\\xef\\x87?O\\xf0\\xf5\\x0c\\xcd\\xf5{\\xbf\\x80s|\\xfb\\xd8\\xb6i\\xbf\\xb0K\\x86k&\\xc4\\x99?\\xbb\\xe5\\x08\\xc0>\\xect\\xbf?\\x8a\\xa0tE\\x96r?\\xe8{\\xceO\\x9c\\t\\x81\\xbf\\x18+0\\x96\\xfe\\x0b\\x8c?\\xba\\x1f\\xa4>\\x17\\xe2v\\xbflW\\xd3\\xfax\\xc6\\x99\\xbf \\xca\\r7TtL\\xbf*\\xe37\\x7f\\x9a]\\x80?\\xee\\xab\\x8a\\x1a\\xf0\\xfd\\x94\\xbf\\x9a\\xb0\\x8f.\\x99x\\x82\\xbf\\xfb\\x00\\xad\\x1aE\\xd2p\\xbf\\xb8\\x08\\n5hu|\\xbf\\x12&\\xe9\\xa0 \\xc8\\x98?\\xa4\\xa5\\xb3\\xa0R\\r{?0k\\x87\\xba\\xdb\\x81]?\\x8c\\xa7t\\xb5\\x9a8\\x87?x\\x84zG\\xa9\\xf3u\\xbf\\x7f\\xb8\\x1eE\\x0e\\xa1\\x82?D<\\xf2,\\x80\\x04\\x84\\xbf\\xee\\xe1\\xd9\\xaby\\xe2\\x83?\\xfe~\\xea\\x838Jp?\\xb6\\x9a\\xae\\x06\\xd1s\\x92?\\x02E\\xcb%\\xb8cs\\xbf`Q\\x8e\\'~ud?P\\x1f\\xae\\x87\\xb6\\xd1\\x93\\xbfTK\\xe5~\\xb5\\x11\\xa0?\\x03\\xcd\\x83;\\x9d\\xd0|\\xbf\\xbfg8\\xb1\\xa1\\x03\\x92?h\\x12K\\x83J\\xfdt\\xbf\\x94\\xe7\\xa5xF\\xfcl\\xbfe[\\x9e\\xb7a\\x08\\xa7\\xbfFw}*\\x13\\xa3\\xa9?\\xfam\\x1f\\x17\\xc3\\x86\\x82\\xbf\\xbe\\xb4\\xc6\\x92K[\\xc0?\\x99n\\xa0\\xe7\\xcdU\\xa4?b9\\x99\\xcb\\x08\\xf1n\\xbf\\x9f>\\xb5u\\xae+\\x93\\xbfH<.\\xd0\\xab\\xb1R\\xbf\\x93Kf\\xd4m\\x7f\\xa7?\\xfd\\xb1\\xab\\xf2\\x8a:\\xa5\\xbf\\x18\\xb0\\xee$\\xbaer\\xbf\\xd3y\\xb7Q_\\xc8o\\xbf\\x9d\\x94\\x01v\\xa8\\x97\\xa2?@\\xbb\\xa8\\xd9\\x1ePQ\\xbf\\xf4\\x113{A\\xdf\\xa2\\xbf\\xd7\\xaf\\x9c\\xf0\\xd8\\r\\xc0?\\x96S\\xe1\\x05\\xa9\\x04\\xaf\\xbfn3\\xba\\\\D\\xfb\\xa0\\xbfH\\x84\\x0c&:\\x9d\\xb8\\xbf\\x06\\xd8\\xeb\\xe8\\xba\\x86\\xa5?\\xdc4jV\\x1b\\xab\\xa1\\xbf\\nd8\\xf6#V\\xa0?\\xae\\xb3\\xa5\\x85\\xd64\\x94\\xbf\\x02\\x9e\\xfe\\x0e8\\x97\\xa3\\xbf\\x08\\xb6\\x03\\xc7\\x0c\\x17\\x88?\\xd0\\x8d\\x1d\\xd2\\xf4\\x04n\\xbf\\x80`@B\\xdeMa?\\x80*\\xfdQ\\x90Xm\\xbf\\x9f\\xc3\\xdf!\\xb5\\xe1\\x91\\xbf`\"\\x0eM\\x153\\x8f?\\x00P\\x14z\\xc9X|?2\\x01r\\x84\\xbd\\x86\\x86?\\xda\\xab\\xbe\\x10k\\xf6\\x9b?,_\\x04\\xe4m\\x13\\x8d\\xbf\\x86\\xc4\\x05\\x89\\x95\\xeb\\xa7\\xbf\\xc0@\\x1fD\\xfaWm?\\x8eEf\\x84\\xfd\\x94{\\xbf\\xc8\\xea\\xe9\\xf6\\x10\\xc3\\x84\\xbf\\xc0\\x1fo\\xb9a\\xc1o\\xbfm\\xe7Q\\x92\\xc0\\xb6\\x93?\\x88\\xc8\\xb5\\xa8g\\xc5\\x8c?@;\\xce\\xe0\\xe7-\\x84\\xbf\">\\x8cA)\\xc9v\\xbf \\xf7\\x82E\\x9d\\xaeE?`\\x9c\\x0c\"8 \\x85?\\xf0.c\\xda\\xb9O\\x9e?\\x00\\xf0&F\\x19\\x06W\\xbf\\xc0\\xdbr\\xe2}6{?M\\xc8\\t\\x8e\\x0e+\\x85\\xbf\\x80\\xae#x\\xaatE\\xbf\\xe0\\x01/ \\x80\\xe0\\x9f?pJ\\xf7\"\\xe1\\x9c\\x94\\xbf\\xf0\\x9d\\xbcs\\x1c\\xb4S? Z\\xaf \\x078s?#\\x92m\\xaf\\x91\\x84\\xa2\\xbfn[k\\x81\\xd3\\xd6\\x9a?\\x041\\xbc\\xce\\x86\\x8e\\x81\\xbf4\\xa3/t9F\\xa0?\\xc0\\x06\\xc3\\x14P\\xa3b?\\x9a\\x8c\\xcf\\xf5\\xab\\xf9\\x8d\\xbf\\x8e\\xf2\\x12\\x921]\\x8d\\xbfDD\\xb8\\x06\\x0b\\xafe?\\x98\\xf66\\xf3\\xc0\\xb6\\x9a\\xbf\\xb6\\x7fs\\xd3\\x08\\x14\\xac?:\\xa5\\xfa\\xa2D\\xd5\\xa6\\xbfp\\x13\\xfc\\xa5\\x9b\\xe4\\x94?pT\\x05\\x17\\x17+\\x99\\xbf\\x90].\\xac?\\xc8\\x97\\xbf\\x14\\xf4\\x8c\\x0f\\x81\\xae\\x86\\xbf\\x87\\x97KF\\\\\\x9f\\xa4?\\xfe\\r\\xfb\\xd8\\xc5\\x1d\\xa0\\xbf\\xb2\\x817c$\\x90\\x93?\\xa2\\xad\\x05\\xd3\\x07\\xf4\\xbf\\xbfa\\x8d\\x91\\xe2T\\x99\\xb7\\xbf\\xda\\x12YA\\xc9\\x7f\\x88?\\x88P\\x9a\\x9d\\x05\\x0c\\xaa?4\\xec\\xe7\\x1e\\xben\\xb4?\\xe0`I\\'p(p?\\xc9\\x17\\xf7\\xd9M\\xdc\\x96?@\\x95\\x84\\xb1\\xb3!\\x82\\xbf\\x94\\xf5\\xfc\\x86\\xa4E\\xb1?<\\x19P\\xb1\\xc5\\xe2\\xaa\\xbfE_\\xb6\\x8f\\x0b\\xb4\\xc7\\xbf\\xd4\\x8b\\xb2L\\xe6\\xc5\\xbe?\\x96S\\xe1\\x05\\xa9\\x04\\xaf\\xbf>Y\\xc1\\x14\\n\\x9e\\xcf?\\xa6O\\xb6l\\xcd:\\xa6?`s\\x995\\xe4u\\x8f\\xbf\\x94\\xa7\\\\;\\xa6(\\xa4?\\xa3\\xd0\\xdd\\x04X\\xe3\\xa8?\\xc4=\\xfe>\\xc5\\x02\\xb6?\\xaa\\x95u\\x9d\\xb9\\xd6\\xa7\\xbf\\xe4\\x06\\xb6Ob\\xb4\\x8e?p\\x17\\x0b\\x8d$\\x10~?\\x80\\xde\\x7f\\x83\\x94\\xe4\\x7f\\xbf\\xb2\\x940p\\xaf(\\xa1\\xbf\\x80\\x13]\\xc4!CW\\xbf\\xfei\\xdax\\x1a\\xd4\\x92?|\\x19\\xd6\\x82@\\x11\\xa4\\xbf\\xa8\\x10\\xd0\\xd2\\xc8\\x9c\\x8c\\xbf`Nx_\\x10\\x15\\xaa\\xbf\\x18\\xf7S*\\x020\\x9f\\xbf\\xd6@l\\xe3\\xf3_\\x93?\\xd2\\x8f\\xd8\\xde\\xaeX\\xb2?H\\x1e\\x06G\\xa8\\x12\\x8a\\xbfI\\xf3%\\xc1\\xbd\\xd7d?u\\x13\\xd7sX-\\x87?\\xaa\\x81y\\x9c\\xa7P\\x99\\xbf\\xaa\\x88\\xdevC\\x9es?\\xec\\xb3w!\\x15\\xb3\\x85\\xbf|[\\xd5\\x0c\\n\\x1f\\x81?( (\\xc6e\\x9ey\\xbf\\xda\\x90\\x02\\xf5\\xb9@m?\\xe6\\xac\\xc5\\xe2|K\\x98?\\x82\\xcb^J\\x06\\xa1d?\\x12R\\xca\\xd7\\x15gr\\xbf\\x9e\\xd6A\\xbfi_\\x98?\\x87W\\xc2W\\x01\\xbaQ?p\\xad\\xe9\\xe6\\x9cQQ?w\\xbc\\xea\\xda\\x89\\x92\\x8b?k\\xbb\\x9f\\xf7*R\\x86\\xbfZ\\xa4\\xab\\xb3y\\x0bZ\\xbf\\x00\\x19/FjtY?\\\\\\x1b\\xa9\\x04\\x18\\xd5\\x95\\xbf+\\xcf\\xd9Y\"\\xdep?\\x94\\xb3T\\xbca\\x9a\\x86\\xbf\\xb9\\x03\\x04\\xe1\\r\"\\x95?\\xda \\xa8\\x7f#.v?\\x1a\\xcc\\x01\\xe8\\xefT\\x82\\xbfF\\xeeA\\xff\\x99\\x08u\\xbf\\xa1\\x92\\x94\\x15\\xf9\\xafi?6\\xa1\\t\\\\\\x00?\\x84\\xbf\\xe5j4\\xda\\xb7\\xae\\x98?C\\xcc\\xc2\\x88\\xb9\\x98\\x94\\xbf\\x80\\xea\\xc9@[o\\x1f?\\xe2\\x87\\x90f*G\\x94\\xbf\\xf8^p\\xba\\x7f\\xb5\\x8b\\xbf\\xf2\\x1d~\\xf9\\xd7\\x16`?m \\t1\\x87\\xcd\\x90?P\\xa1\\xb1\\xc4.m\\x9a\\xbf\\x9d\\x02\\xc5Dg\\x80~?$\\xf7\\xd4\\xbc\\xee!\\xb6\\xbfV,\\xb6\\x9d\\x8b\\xb1\\x9d\\xbfw\\x8e\\x024\\xd1\\x92t?\\x897\\xc7\\x9e\\x95\\xb9\\xa3?b\\xa2\\xa0\\x86k;\\x84?\\x1b\\x04\\xdc\\x9c&e\\x98\\xbfM\\xba\\xef\\x86\\xd3\\x03\\x90?(\\xe0\\xc6\\x069\\x0f_?\\xc5n\\x1bF\\xff\\xf1\\xa1?z\\xd1/\\x06\\xd2\\x0c\\x97\\xbf\\xbdc\\xd3\\x84U\\xcd\\xa1\\xbf6L4\\xa9\\xe5\\x94\\x9c?n3\\xba\\\\D\\xfb\\xa0\\xbf\\xa6O\\xb6l\\xcd:\\xa6?\\xc4\\x8c\\x90\\x99_\\x1e\\xbc?,\\xad\\xeb\\x86\\xfcO\\x96\\xbf@\\xae\\x15\\x1eF%M\\xbfo_\\xea<\\xa1\\x0c\\xb1?\\x1b\\x8f/K\\x05\\xe4\\xad?\\xd6\\xc3H\\x1a\\x1d{\\x84\\xbf\\xcaKU\\xf7~D\\xac?\\x00\\xfe\\xcd\\x83\\xb9?\\x83\\xbf\\xde\\xf4-\\x8d\\xd2\\x7fx?\\x92]#\\xb2\\xb5L\\xa1?d3}\\x1bd\\xcc\\x88?\\x90\\xdb\\xd6\\xd6D\\nG?\\x1c\\x88\\xe9\\x9c\\xdbV\\x94\\xbfN\\xcc\\x10\\xc0\\x01$\\x81\\xbf\\x8cZ\\xd3\\xf2\\xfa\\xaf\\x88\\xbf&\\x83\\xf5 _\\\\\\x99\\xbf\\xf8G\\x00\\xb0\\xd8\\x17~?\\x1dH\\r\\xc6\\xbf\\xa6\\x9f?\\x80\"?\\x02\\xf1\\x16\\xb2?\\xfd6\\xdc^\\xc0\\xca\\x9d?`(~/\\xbf\\xe9\\x94\\xbf\\xb0h\\xd2\\x94\\x9b*\\xa4?X\\xb1\\x9dA\\x1cC\\x86\\xbf\\x80 \\x89\\xcc_\\x83A\\xbf\\xc4i\\x0e\"\\xbdq\\xb0\\xbf\\t\\x01\\xa4\\x89\\t\\xc2\\x91\\xbf\\x1fa=\\xe8\\xa0\"s?\\xf8\\xe5gL\\xa9P\\xa3\\xbf\\x80\\xa4~\\x0f\\x13PU\\xbf\\x80\\x1a\\xe9 ~#J?\\xf0\\xb7\\xd0\\xbb\\x9ep\\xa8\\xbf\\n\\x9a\\xcd\\xeb\\xd4\\xf8\\x93?@R\\xe3{\\xcf}d?@\\xdf?`y\\xf1s\\xbf\\x0e\\xde\\n\\xb8\\xe9C\\x9c\\xbf\\x00nW\\x0cK\\xe7>?\\x1c\\xff\\xb1H#\\xe4\\x92?\\xce\\x1f\\x87D\\xec\\x8b\\xa1?\\x80\\xf6\\x86&3tt\\xbf\\x1ef\\x13.?<\\x9f?\\x00\\xae\\x9c\\x0el%\\x91\\xbf\\x9e\\x8f\\x15\\xb1\\xadr\\xa2\\xbfg-\\x12\\xd0#\\xa4\\x82\\xbf\\x1e\\xe0#L\\xcfH\\x95\\xbfP\\xed\\xa7\\x87\\xc8pT\\xbf\\x10Y!U\\xca=\\x9d?\\xd5[\\xd9%N\\x15\\x94\\xbf\\x94v\\xa9\\xfb\\x11\\x1c\\x91\\xbfHn\\x02\\xad\\x93|l?\\xb0\\xa5U\\x0e\\x89w\\x8e\\xbfZ\\xcb<\\xdc\\x12\\x03\\xb2?\\xbe\\xcd\\x80t\\xec\\xce\\xa0?,\\xac\\xac\\'\\xea\\x1c\\xa3?\\xa9\\xc2\\x12\\xe4\\xa7_\\xa5\\xbf`\\x11G;q\\xcel?\\xe8F\\xc6\\xb7UJ\\xbb\\xbf\\xb3==\\x96\\x9cF\\x98\\xbf\\rM\\xf3\\x06{|\\x8f\\xbf\\x80\\x04U\\x89\\xafA\\x84\\xbf\\x00K\\x87Qyyq\\xbf \\x8fJ\\xde\\x810\\x88?\\x86\\xc2\\x0b\\x1e\\xb2B\\xac?\\x08\\xd1\\x1d\\x87\\xb2\\x10\\x88\\xbf\\x9aS\\x07\\x1c\\x95e\\xa3\\xbf\\xa8\\xf7\\xc4\\x19Y\\x15\\xb2\\xbf\\x84\"u#\\x14\\xf8\\xb4?\\x00\\xde\\x16\\xb8k\\xf2,?H\\x84\\x0c&:\\x9d\\xb8\\xbf@s\\x995\\xe4u\\x8f\\xbf,\\xad\\xeb\\x86\\xfcO\\x96\\xbfe\\xed]\\xe2\\xc9/\\xdf?\\x03\\x89\\x8b8\\x89U\\xc6\\xbf\\xb0\\x1eO\\xc4\\xca\\x10\\xa9\\xbf\\xff\\xda\\xe8p\\xa9\\xb1\\xd8\\xbff\\x80\\x0f\\x80p\\xa1\\xbd?L\\xf0\\xb0G<s\\xb8?4\\\\\\xdb\\x16q\\xb8\\x9d?\\xd0\\xf2\\x82\\xa1ge\\xa2\\xbf\\x10\\xcd\\x9f\\x14\\xe4j\\xab?\\xfc\\x1d\\x83\\x14\\xac&\\xa6\\xbf\\xa9\\xedY\\x83U\\xe3\\xa5?Lf\\xb4\"\\xbaU\\x93?\\xe0\\x12q;\\xfd5s?\\x88\\xd3\\x87\\xf2\\x9az\\xab?z\\xcb\\xbc\\xe3\\x0ea\\x93\\xbf\\xf8\\xb8.\\xdb\\xee\\x96\\x80?\\xe0M}1r\\xee\\x82?\\x10Y\\xed\\x03\\xf8\\x98\\xa2\\xbfk\\x1c\\x1an\\xccn\\x92\\xbf\\xe05@\\xfe\\xb4\\xf3z?h\\x97\\xb6\\x17\\xbd\\xfe\\x9a\\xbf\\xa0\\xe7\\x91QP\\t\\x84?\\x90\\x9a(8\\x84\\x06B\\xbf\\x04\\x15>z;\\xb4\\x9b?\\xd6\\xda\\x03\\x07.``?\\x0c\\xd0\\x8b\\xeb\\xb8\\xbfC?\\xecc\\xb1\\x05\\xa3\\xdd\\xa2?\\x10\\xb9\\xf2\\xd9K\\x18U?\\x0cw\\xf6\\n\\xd6\\xe3s\\xbf\\x084l\\xc7\\xe4\\xc9\\xa4?\\x84\\xd3\\xba\\xdb\\xfaUy\\xbf\\x14}\\x88y\\xabPa\\xbf\\x00h\\xa0zQ7\\xe6\\xbe(\\x11\\xa6PjXI\\xbf(\\xa47\\x94\\x142\\x7f\\xbf\\x81C\\x98g4\\x07\\x94\\xbfI\\xcbT\\xd87\\xe1\\x9a\\xbf\\x1eiK\\x829\\x91\\x87?\\xae&\\xb3S\\xa2\\x84\\x97\\xbf\\x8cz\\x80\\x1a%)\\x94?\\xce\\x1b\\x05\\xca\\xfbC\\x93?&&kSd\\xb1y\\xbf\\xb6\\xc0\\x85rG\\x94p?\\xc6tgX\\xa8|d?\\x9c 1T`w\\x89\\xbf\\x0b\\xbc\\xe8%n\\xce\\x9e? $\\xed\\x9bG\\xd0y\\xbf\\xc4\\xc8\\x99\\x9f\\x99^w\\xbf\\x96\\xce\\t\\x0e\\x03\\xf7\\x8a\\xbf\\x10\\x06\\xba\\x8f\\x1d\\xda\\xaa\\xbf\\x9cR<\\x1d}\\xb1\\x93\\xbf\\xf8i\\xff\\xe8\\x17\\x14:\\xbf\\x80R}\\xd72\\'w\\xbfR\\xe8\\x8d|B\\xbd\\x8b\\xbf\\x138\\x85\\xef\\x03\\r\\xa2\\xbf\\x96,\\xd4\\xd5\\x12\\xebp\\xbf\\x80W\\x87~#\\r\\x7f\\xbf0yL5\\x91\\xe0\\xa2?\\x00o_Q>\\x88v\\xbf\\x86\\xca\\xf4\\xd4\\xbfx\\x96\\xbf\\xb7\\xb5\\xa5\\xc5\\xda\\x81c\\xbf\\x88\\x80\\xe2\\xe7_\\xf0y?\\x9a\\xb9\\xda\\x13\\xd3\\x80\\x8a\\xbfm@\\xeb\\x95\\xf1C\\x96\\xbf(\\x8fT\\xf3c\\xcd\\xaf\\xbf\\x1bw\\xff\\x1e\\xc6t\\x9d\\xbf\\x06\\xd8\\xeb\\xe8\\xba\\x86\\xa5?\\x94\\xa7\\\\;\\xa6(\\xa4?@\\xae\\x15\\x1eF%M\\xbf\\x03\\x89\\x8b8\\x89U\\xc6\\xbf&\\xc3\\xe3\\xa2\\xaa\\x07\\xc5?\\x800\\x88U#lB\\xbf07u\\xb0\\xb8 \\xc5?\\xf7>\\xddwU\\x02\\xc2\\xbf \\xd1@\\xfaLz\\xa1?V\\x1d\\xa6\\x9e\\xbd9\\x81?\\xb7\\x9b\\xc0\\x89\\x84\\x9d\\x97?\\xde\\xce\\x06nZ\\x18\\xa1?x\\xbf\\x96V\\xb6\\'j?,\\x99Q=N\\xf5\\x92\\xbf\\xab\\xbd \\xa4\\xccY\\x91\\xbfV\\x85,6:X\\x88\\xbf\\x0c\\x1b4\\x7f\\xcf\\xf5\\x9a\\xbf\\x1e \\x96\\xfc\\xf1\\xdb\\x89\\xbf\\x08\\xb6\\x06;\\xc6\\xf8\\x84?&\\x95EsW\\xb3\\x95?\\x04\\xf2\\xc2\\x95\\x9cX\\x9e\\xbf\\x00\\xb1\\x0c\\xf0\\xb1\\xe7Z\\xbfP\\xcd\\xd6\\xfa\\x97\\xef\\x8b?\\x98\\x15\\xc4,\\xb4\\xb0\\x98\\xbf \\x00a\\xb5RLw?L\\xf5Z\\x17F\\x8a\\\\?#\\xac60*9\\x97?\\xda1\\xfcm\\xb4\\x8dZ\\xbf\\xb5\\xb0\\xb2{\\xdb\\xd9^\\xbf\\xa9\\xe0\\x0e\\x00\\xce\\xf8\\x90?*\\xfd\\xf0\\xd3@t}?\\xc9\\x8b}r\\xdb4l\\xbf\\xc4EE?\\x8eD\\x9a?\\x065\\xbb\\xe7s\\x98b\\xbf\\xc4\\xd5\\xb5\\xa6\\xf1\\x8ad?\\xac\\xbb\\xa6\\xc7 [\\x81?o\\xbf\\xb7Q\\x87AU\\xbf%X\\xf2#\\xef\\xcaa\\xbf5\\xad\\xf2\\xa3\\x14\\x12\\x85\\xbfx!R\\xd2\\x96S\\x90\\xbfKD\\xa43.\\xd7\\x86?\\x13\\x15m\\xd3\\xdd\\xb2\\x89\\xbfz\\xe5\\x93(\\x0eR\\x90?\\x00\\xcb\\xc6\\xc9(>/\\xbf+v\\x9d\\x01\\xee\\x83a\\xbf\\xf0\\xda\\xd0c\\x1c\\x10n\\xbf\\xa7\\xd7\\x83\\xb4\\xf1\\x97H?\\xba{\\x7f.\\x93\\xebb\\xbf&E\\xc98\\xe4\\x88\\x94?R\\xc3JP\\xe0\\xba\\x95\\xbf\\x8a-\\xf2\\xef\\xc2`{?\\xde\\x8c\\xaa\\xaa\\xf9\\xe3\\x85\\xbf\\xe3\\t\\xad`\\xb3\\x13w?\\x1e \\xdb\\x1c#\\xcaC?0\\x0b\\xb2\\xd0\\x8a\\x1e\\x90?\\x9e\\x149S\\xe8tr\\xbf\\xef(\\xc8M\\xdf\\x15x?\\x84\\xef\\xb7\\xdaH\\xbf\\x9b\\xbf\\xfe\\x95\\xbe\\xb6v:\\x90\\xbfv}\\x0e\\x03\\xdf\\xc2\\x90?\\xf9\\xa9\\xfc\\x01\\xa4P\\x8b?\\xbd\\xf6\\xb4\\xe6\\x9b:\\x8e?{\\x1bpD\\xdc`\\x96\\xbfjb\\xf4?\\xbd\\x98{\\xbf\\xb9\\xe5\\xfc\\x89M\\xa2b\\xbf\\xb7\\x90\\xdf\\xfe\\xe7\\xf6\\xa0?\\x91\\x89\\x8a\\xf6\\x17\\xfc\\x89?G\\xf2\\x18/\\xf0A\\x9f\\xbfH\\xbe\\x1f%Z\\xa1\\xab?\\xdc4jV\\x1b\\xab\\xa1\\xbf\\xa3\\xd0\\xdd\\x04X\\xe3\\xa8?o_\\xea<\\xa1\\x0c\\xb1?\\xaf\\x1eO\\xc4\\xca\\x10\\xa9\\xbf\\x800\\x88U#lB\\xbf\\x1c?\\xbf4\\xa9k\\xbf?\\x124\\xd5\\x07\\xa2=\\xb0?\\xb5K\\xd1\\xacvr\\x83?\\x80\\x8f\\xd93b9\\xa1?\\x8d\\xf2\\xae-\\x0f\\xef\\x83\\xbf\\x19\\x03j\\x93\\xf0\\'o?}\\xd0\\x8a[xg\\xa4?9`K\\xb0\\xc5\\x88\\x87?\\r\\xe65\\xbb\\xae\\xcbf?\\xc6\\x16I\\xf3\\x1b\\xce\\x85\\xbf\\xb0\\x90}I\\xb19[\\xbf\\xe6~\\x08 B\\xa7q\\xbfaj\\xcd# _|\\xbf(\\x87H\\x88\\xdd\\xfch?V\\xdb\\xe2\\xf3\\xd0\\x88~?\\xa0\\xcaX?\\x1a\\x8e\\xb3\\xbfR\\xe8u\\xa4\\xf4Y\\x9a\\xbf\\x90\\x05\\xe0\\xca\\xa8\\xec\\x96?P\\x82\\xd1\\xd7\\x998\\xae\\xbfv\\xbb,I\\xed\\xb1\\x92?`\\x11\\xe5H\\xcf\\xa1|\\xbfd\\x96E\\xd0\\x1fA\\xaf?\\x1c\\xf2\\x91\\xcf\\xc6\\xcbv?P\\x9b4\\xb3$rJ\\xbf\\xc8\\x18\\x15*UY\\xb0?|\\x8c:\\xa1o1\\x83?@!\\x19\"\\xeb\\xdc\\x80\\xbf\\x00\\xf4\\xab=\\xf0\\xe4\\xb2?\\xdc\\x9c\\xc3\\x08\\x93\\xe2\\x92\\xbf0{\\x1d\\x0f\\x00\\xa6c?($\\x98\\x91!/\\x8e?\\xb8D\\xc7}\\x82\\xc7Q\\xbf\\xc04\\x15\\\\+\\x91n\\xbf\\xd2\\x0fb\\x1c\\xa0\\x8d\\x96\\xbf0\\xbb\\xd7\\x9d\\x8d\\xa4\\xaa\\xbf\\xa0\\xfa\\xf6s\\xeb\\x8a\\x8e?H\\xf3S\\x86U\\x9e\\xa4\\xbf\\x8c\\xfb\\x13l\\xd8\\xfb\\xa3?\\xac<\\x142oa\\xa0?\\xb4\\x1b50\\xdbzq\\xbfX\\x8e\\xfd<\\x15\\xe6t?4l>y\\x0e@\\x7f?\\x90\\x04\\xfa\\xc5m\\x1e\\x9b\\xbf\\xa9\\xd5ty\\xd0\\xaa\\xaa?\\xd8#\\xcff\\xdd\\xf5\\x80\\xbf\\x08\\x97RY\\x18\\x81g\\xbf\\x10\\xa0Wy\\xad\\xcc\\x91\\xbf\\xc81\\x0c\\xb9m\\xef\\xb3\\xbf\\xc1\\x08,v\\xb3y\\x98\\xbf~T]\\xf4\\xc4Mj?\\xe8\\x18\\xfe\\x95/\\xdf\\x86\\xbf g\\xd8gNBS\\xbfy)\\x14\\xcf0\\xbf\\xaf\\xbf\\x18>\\xd9\\xed;?\\x97\\xbf\\xf6~\\x06\\xf4\\xb4Kp?a\\xb7\\xb9t\\x9b\\x07\\xb3?h7\\tY\\xb8}\\x8f?\\xe0\\xe6;\\xd6\\xc8\\xeb\\xa1\\xbf\\x12\\xdfP\\xf3\\xf2\\xe6\\x86\\xbfX^\\xb9\\x06zL\\x90?\\x98K\\xbfQ\\xe0\\xe6\\xa5?\\x00m4\\xea\\x83c]\\xbf\\xd8\\x16\\xe4\\xe7\\xc7\\xce\\xb9\\xbf\\xc8\\x07\\xaf\\xfb\\xfc\\x9d\\x9f?\\nd8\\xf6#V\\xa0?\\xc0=\\xfe>\\xc5\\x02\\xb6?\\x1b\\x8f/K\\x05\\xe4\\xad?\\xff\\xda\\xe8p\\xa9\\xb1\\xd8\\xbf07u\\xb0\\xb8 \\xc5?\\x124\\xd5\\x07\\xa2=\\xb0?\\x94\\x058b\\x12\\x83\\xdb?<\\x136\\xd9\\xa7\\xbd\\xbf\\xbf\\xfcT\\x89Ud\\x90\\xa9\\xbflx3\\xfb^\\x88\\x9f\\xbf\\x1aO\\x9eAN\\xca\\xa2? \\xfb\\xc8\\t\\x05\\x86\\xaf\\xbf\\xfa\\x18\\x8d\\xa8\\xd19\\xaa?\\xe2JR\\xdf\\xb9x\\x9b\\xbf\\x98\\xa3\\xa8\\x95\\xb0F\\xa1\\xbf\\xa8\\x96\\x99[\\x06\\xf0\\x88\\xbf`}*\\xcc;\\x11\\xb1\\xbf@~\\xa5\\\\O\\xa8\\x83\\xbf\\x00\\x0e_=L\\x84P?\\xb8\\x0e\\xf5\\xee\\x82\\xfa\\xa5?|\\xd9\\xcb5%\\x13\\x97?\\xfb\\xd6)X(\\xb9\\x8b?p\\x834tR\\x0fp\\xbf\\x8cR\\x16;6J\\x95?`Q\\x9c}\\x8b$\\x83\\xbf\\x80\\xe0\\xff\\xad76[?\\xf0\\x96+\\xb4\\x99;\\x8e\\xbf\\\\C\"\\xa1a=d?\\xc9z7-}Qa\\xbf\\x10\\x9d\\xbd\\xa1\\xfa{\\xa1\\xbf\\x80\\xb8\\xb5\\x8fQy)\\xbfT\\xa9\\xf7\\x0cl\\xe3q?f\\xdb\\xd3G\\xae\\xed\\xa0\\xbf!\\x81\\xad\\xc2 \\x02b?8ryu\\x81.f?\\xdcj\\x9a\\xa3%r`\\xbf\"\\xf7\\x92+\\x83C\\x83?KG\\xbe%\\xbdU|?b\\xd9\\xc6\\x14\\xa4\\xae\\x8e?\\xdd\\xcfE\\xc2\\x9bE\\x9b?o :\\xf7H\\xfb\\x86\\xbf\\xfcj\\xbb\\x1d\\'\\xac\\x97?\\xd4A\\x9e\\xb0\\xa8\\xda\\x93\\xbf\\x8e\\xe0\\x96\\x17J\\x0f\\x8c\\xbf\\xecQ/\\x93(\\xbf\\x83?0\\xd4+\\x19|\\xc0P?6N\\xfdC\\xb3\"o\\xbf\\xe0\\xb8\\xb2$\\xb5\\xd7\\x8a?\\xd3\\xfd,-\\x0cq\\xa1\\xbft-\\xbe\\x0e\\xe9\\xbf\\x8c?`\\xc7\\xac\\xf4zKf?_\\xab*]:\\x98\\x93?T\\xd3\\xbbdD\\xb1\\xa7?\\xf6\\x0c|c\\x10\\x1d\\x8d?\"\\x13t\\xd2\\x01\\x97\\x81\\xbf]A\\x0c\\x83\\x96\\x8d\\x93?H\\xc4\\xaa%-\\xc2\\x87?\\xd4\\x99\\xc5|\\x88u\\xb3?y\\x00\\xf3\\xf86\\xe1\\x86?.\\xe7k\\xa3q\\x0b\\x87?\\x99Y\\x18aN\\x81\\xa6\\xbf\\x00\\xce\\xbc\\x0b\\xd5\\xf7|?6\\xc1\\xd7\\xc3\\xc9P\\x99?\\xda\\x87\\xa2x\\x01\\xe2\\x84\\xbf\\x00A\\x12O\\xb1\\xc6x\\xbf\\xa1z\\\\t^\\xe4\\x91?\\xcc\\xcd \\x95[\\x83\\xa7?\\x10\\xe3\\rO\\xb1Q\\xac?\\xb4\\xf5\\xea\\x9a;N\\x9d?\\xae\\xb3\\xa5\\x85\\xd64\\x94\\xbf\\xaa\\x95u\\x9d\\xb9\\xd6\\xa7\\xbf\\xd4\\xc3H\\x1a\\x1d{\\x84\\xbfb\\x80\\x0f\\x80p\\xa1\\xbd?\\xf7>\\xddwU\\x02\\xc2\\xbf\\xb5K\\xd1\\xacvr\\x83?<\\x136\\xd9\\xa7\\xbd\\xbf\\xbfW\\xd4GQ\\xeb\\x01\\xc2?\\x8c30\\xec\\xa1\\x9f\\xaa\\xbf\\x12]\\n\\xc4\\x0b\\xa4\\x86\\xbfXfv\\xee9\\xb6\\x8c\\xbf\\xfcT\\xc9\\xf3@\\x97\\xa5\\xbf\\x80\\x08\\x93\\x1b\\x08\\\\p?\\xda\\\\\\xcd1\\xa7\\xb0\\x85?\\xf8\\xca\\x08\\x8a\\x10\\x03\\x96?|\\x9dA\\r`[\\x8e?x\\x90\\xbc\\x0f\\x11\\xf1\\x9b?\\xa8\\xc6\\xb8)\\x1e\\xb8\\x98?b\\xf6\\x89\\x9d\\xd3\\xb5\\x8e\\xbf\\xc4\\xf7\\x16\\x04\\xb8-\\xa2\\xbf\\xa6\\xb0\\xfbOPS\\x8c?Z\\xae\\xcc\\xd8<\\x0c}?H\\xc2\\xfa$\\xb39P\\xbf\\x90{Rk\\xcbWv\\xbfX\\x875\\x1c\\x1a\\t[\\xbf|\\xca\\x88+\\xd9\\xdc{\\xbf\\x16\\xef;\\xd0%:\\x8f\\xbf\\xaa\\x96\\x8ca{\\x17\\x87\\xbf\\x886^9\\xb1.k?hI\\x18\\x17\\xf2\\xe7\\x84?\\xd8&\\xbd\\x0c\\x9cQS\\xbf\\xf4CZ\\xc0\\xfb\\x94v\\xbf\\x00\\xd9\\xbak/.\\x8a?\\xe7=opt\\xd5h?\\x00\\x95\\xca\\x95\\xb4\\xb14\\xbf\\xe0\\xba;\\xcb\\xd57\\x8f?oP\\xb5\\x1d\\xca\\xf5\\x98\\xbf\\x10\\xa6s\\xec:N\\x82\\xbf\\xb83\\xec\\xd2\\xc23\\x8a\\xbf\\x19\\x02\\xc2N\\xfe)\\x83\\xbf]\\xb85Y\\xe9\\xccx?\\'0\\xbb\\xe8\\x1e:\\x86\\xbfF\\xce\\xcf\\x9f\\xd0<\\x8a?Z\\x13\\x1a\\xe2q\\xa1}\\xbf\\xa6H\\xf5~4\\xb7\\x93\\xbfJ\\x9c\\x17\\x8a5\\x03\\x87\\xbf\\xf1\\x94\\xa2\\x8f\\x8d\\x16d?\\xfc\\xbf\\xc3U/\\xc5\\x7f?\\x95I\\xce\\x0c.\\x04\\x99?:\\xff\\xa0\\xe0%\\xb4\\x94\\xbf(\\xefo\\xe2Y\\xecF\\xbf\\xea\\x8c\\xa5{\\xc8!\\x9e\\xbf\\xa0\\xf0\\xd2\\x8f\\xec\\xa3@?[\\xabY\\x08\\xad\\r\\x87?\\xefM=\\x7f\\xeaJ\\x9c?\\xd8\\x94\\x0e\\x18Y\\xb8\\xa5\\xbf\\xd7S\\x0f\\xa5\\xfem\\x80\\xbf-H]\\x00\\xb5\\xf4\\xc3\\xbf1a*\\xa7\\xb8e\\x9f\\xbf;\\xc5\\x80\\x86\\xeai\\x82\\xbfY~\\'3W9\\xae?%\\x81\\xdc[V\\xbd~\\xbf\\xe12\\xfd\\\\\\xd5\\xa6\\x9a\\xbf\\xcfo\\xe6<\\xa7Z\\xa1?`\\xef\\xc4\\xd3D5P?\\x996\\x8eYk\\xae\\x9d\\xbf\\x08E\\x0b\\x9e\\x87#\\xb7\\xbf\\xc8\\xee\\x8bG\\x8a~\\x8c?\\x10\\xd4yB\\x89\\x8a\\x92\\xbf\\x02\\x9e\\xfe\\x0e8\\x97\\xa3\\xbf\\xe0\\x06\\xb6Ob\\xb4\\x8e?\\xcaKU\\xf7~D\\xac?L\\xf0\\xb0G<s\\xb8? \\xd1@\\xfaLz\\xa1?\\x81\\x8f\\xd93b9\\xa1?\\xfcT\\x89Ud\\x90\\xa9\\xbf\\x8c30\\xec\\xa1\\x9f\\xaa\\xbf9Z\\xf6\\xc9(B\\xc5?\\x17K\\\\\\x84\\x7fa\\x96?\\xb8\\x14\\'t\\x96\\xcd`?\\xad\\x0b\\xbc\\xf9d\\xa1\\xbe?\\xf1\\x8c5\\xf9\\xcb(\\x93\\xbf\\x10&\\xd5\\xeb8\\xf5\\x93?n/\\xfe\\xdd-B\\x9f\\xbfO\\xbd\\xf9\\x9d\\x94\\xc2\\x93\\xbfX\\xfcyD\\xc0\\xa0a\\xbf\\x02\\xb1u\\xfe*\\n\\xa7\\xbf\\xb4\\x1e\\xd6\\xbb\\xd3D\\x9a?E\\xcf\\xa4\\xbf\\x04\\\\\\xa4?@\\x87\\xa6\\xcc\\x05\\xd3\\x83?\\x80\\x18\\x0e\\xcb\\xe0\\xb1c?\\xdc\\xca\\xc9\\xe1\\xe7\\x0fx\\xbf@\\xb5\\x04Fl\\xb9t?\\x00\\x93\\xa6\\xc9A\\x8f\\\\\\xbf\\xae{\\x08/\\xdb\\x1cp?4T$_\\x94R\\x84\\xbf\\xcc\\x80\\xf03A\\xd9Z\\xbf\\xb0Q3r%a:\\xbf\\xa0\\xc3\\xafD\\xc8\\xe4t\\xbf$\\xb4^\\xc6Pk\\x81?\\x00\\xbct)\\xf5\\xef\\r\\xbf\\x80G\\x94P\\x1f}r\\xbfF\\x97K\\xcaq\\x11h\\xbf\\x80P\\xaf\\x83GR#\\xbfHvf\\xcd\\xad\\xe5c\\xbf(\\x97*\\xa0\\xf3\\x80j\\xbf`T\\x87\\xc2\\x8c9@?\\x80?`N\\x1a\\xdc\\\\?\\xd8\\x00\\x85\\x92^u|?\\xbcB\\xc0\\xc0O\\x93n?\\xf8\\xcd\\xf8Nj`n?\\x80\\xa5|,\\xe6\\xeaw\\xbf(\\xb1\\xf2p\\x0f\\xf0d\\xbf0\\x08\\x92\\x1f\\xd7\\xb7H\\xbf\\x80\\xad2%\\xc1yV\\xbf\\xb8-\\xf3\\x8fX\\xdcD\\xbf\\x00\\t\\x8a\\x054\\xc0R?\\x98=w4w^D?\\xf0\\x95&\\xf7\\xf0:U\\xbf\"\\xc3U[\\x8a\\x86a?`\\xa4cN\\'\\x02@\\xbf\\xc0\\xbb\\xd4\\x97u\\x04@\\xbf\\xb8\\xf8i\\xfb\\xf2\\xe1F?\\xf2N{\\xdc\\xb9\\xbe|\\xbf@s\\x87\\x04Q\\xb69?h\\xc4\\xe6j]\\xf7W\\xbf\\x85\\x94\\x01\\xd0\\xe0%\\x80\\xbfPzM\\\\\\xdb\\xf4R\\xbfO\\xae\\xae\\xe5\\xd69t\\xbf\\xc0(\\x93\\xe7\\xbbmJ?\\xb8\\xb6\\x9e|,cS?\\xf0#\\xe3\\xfa\\xa9s\\x8e?\\x97\\xb6\\xd8A\\xc5\\xaak?0d\\xe9U\\xbb\\xd7X\\xbf\\x03\\x93\\xd6\\xed\\x8ah\\x83\\xbf\\x95\\xf7\\xa9[\\xbb{\\x91\\xbfX5\\xc7\\x92mb\\x85\\xbf@\\xb5\\xd1C\"\\x07z\\xbf\\x06\\xb6\\x03\\xc7\\x0c\\x17\\x88?\\x80\\x17\\x0b\\x8d$\\x10~?\\x00\\xfe\\xcd\\x83\\xb9?\\x83\\xbf<\\\\\\xdb\\x16q\\xb8\\x9d?V\\x1d\\xa6\\x9e\\xbd9\\x81?\\x8a\\xf2\\xae-\\x0f\\xef\\x83\\xbflx3\\xfb^\\x88\\x9f\\xbf\\x12]\\n\\xc4\\x0b\\xa4\\x86\\xbf\\x17K\\\\\\x84\\x7fa\\x96?q\"$Y\"\\xee\\x9b?0T\\xad\\xef\\xb1x\\x91\\xbf\\xfa\\xda\\xbddZ\\xa0\\x95?\\x06\\xd5\\rN\\x89\\xa9\\x96\\xbf\\xfcR\\xda!`\\x86\\x8f?x\\x90\\x80\\x0b4\\xcb|\\xbf\\xccw\\xff(\\xb8\\xc4v\\xbf \\xff!H\\xc9\\xf1W\\xbf:\\xc18U/\\xa2\\x85\\xbf\\xa8\\xeb\\xce\\x87$f|?(\\xf7\\xff\\xe2\\xcf:x?B\\xe4\\xc7a/5\\x98\\xbf\\x83S\\x0e\\xb5F\\xdcG?\\x90\\x10\\xd9X[\\x8f\\x8c?|\\xea\\xaa}oJ\\x99\\xbf\\x90g\\x8c\\xe0&37\\xbf\\xe8k\\xeb\\x86%\\xa0\\x82\\xbfL\\xdb\\xc5\\'\\x10\\xa5\\x97?\\xf8,\\x9a&\\xa1\\rO\\xbf\\xa0\\xf4|/\\xf5\\xba.\\xbf\\xe0\\x14\\x9a+\\xe1\\x1a\\x89?\\xa6\\x8c\\x9b\\x8dE\\xb7y\\xbf\\xa0~\\xabsv\\xa3L\\xbf\\xc8l^\\xb4eQ\\x8c?F5\\xd4\\x8bn\\xccE?\\x80\\xdd\\x95\\xe7wS@?0q\\xf3C\\x0b\\x18Z\\xbfl\\t\\xc7\\xfc\\x0e\\xf8O?\\xc81\\x8f\\xed\\x10\\xc7Q\\xbf\\xf0\\x1e\\xfd\\xd2\\x0c\\xfc@\\xbf\\xa0\\xd1\\xd3\\x85\\xc9Nu\\xbf\\xd4\\x9c\\xec\\xdbh\\x8es\\xbf\\xbe\\xe1\\xd7\\x9d\\x8d\\xb8s\\xbf\\x88./\\n\\xddyu?,\\xfd\\x8c\\xf8W\\tq?x6\\xdb\\xecT\\t0?\\xa0\\xc8\\xc8[\\xc7N9?B\\xdel\\xc1,\\xad]?@k\\x7f\\x95VaU\\xbf\\x80[k :=>\\xbf\\x10C\"|\\\\\\x02\\\\?`a\\xae\\xbe\\x0f\\xfcz\\xbf\\x80\\x8d\\xf6P\\xc6PO\\xbf\\xa4j\\xa1\\x1e{\\x10\\x80\\xbf\\x8a\\x121;T\\xac\\x8c\\xbf\\'\\xd8f\\xd5f\\xa1b?\\xd0?\\xdeKy\\x89n\\xbf\\xc0\\x12\\xd6|\\xa8m0?\\x89\\x00\\xa1\\xe6S\\x80\\x80\\xbf\\x1a\\xcb\\xd7&=\\x95v\\xbf%\\xed\\xa5{\\x07\\\\a?xV\\xc4\\'>\\x8d{?\\x84\\x92\\xf0\\xe0yKv? \\xads\\x14\\xdd\\x82\\x87\\xbf8\\xd6\\xadd\\xe1\\xbeg\\xbf\\xf8\\xc3T\\x00\\x14\\x8ch?\\x97\\xbc\\x05\\x8d\\xf2\\x18q\\xbf\\x80\\x9a\\xb1\\x1b\\x93\\x99k?\\x88\\xe6\\x9e\\xa9K\\x83\\x90?,,\\x0cfK\\x9e\\x83\\xbf\\xd0\\x8d\\x1d\\xd2\\xf4\\x04n\\xbf\\x80\\xde\\x7f\\x83\\x94\\xe4\\x7f\\xbf\\xde\\xf4-\\x8d\\xd2\\x7fx?\\xd0\\xf2\\x82\\xa1ge\\xa2\\xbf\\xb7\\x9b\\xc0\\x89\\x84\\x9d\\x97?\\x19\\x03j\\x93\\xf0\\'o?\\x1aO\\x9eAN\\xca\\xa2?Xfv\\xee9\\xb6\\x8c\\xbf\\xc0\\x14\\'t\\x96\\xcd`?0T\\xad\\xef\\xb1x\\x91\\xbf\\xce4\\xb8B\\xe4U\\xb4?\\xba\\xefR\\x03\\xe9\\xe8u?\\x028d\\xe3\\xe1E\\x93?e\\x88\\xed=H\\xcc\\xb1\\xbf\\xab8{R\\xc6\\xa6\\x90?\\xf8Q\\xf3\\xd6\\xb0\\xf8l?\\x88mm)\\x92\\x8d|?\\x1f*\\xe2\\xf8I\\xc6\\x89?\\xc0\\xf0Kk\\x1e\\xc3l\\xbf\\xb0\\xb9\\xe8\\x87\\x12`w\\xbf\\x1fb\\x0cFJ\\xbb\\x92?\\t\\x97N\\xb64T\\x7f?\\x00\\xb1\\xd3\\xc3\\x1c\\x0b\\x16?p~f;\\x7fcR\\xbf\\x84U\\xc1\\xdc\\x0e\\xd3x\\xbf\\xcf[\\xbd\\xf7\\xe5\\x97\\x80\\xbfHG\\n\\xb3\\x7fR\\x8f\\xbf\\xb8\\x96\\x98%G\\xf5{\\xbf\\x11\\xfc\\xb4\\xc8}\\x04m?\\x8ej<\\xb8^\\xf7{\\xbf\\x902\\x01*\\x8aF6?\\\\\\x89\\xe3;\\xd8\\x02U?A\\x96\\x1cvK\\xb5\\x80\\xbfY\\xc6\\x17A>-\\\\?\\xa3pC\\x93\\x8f\\tp\\xbfpL\\xf9j\\x1d\\x01K?\\xbb\\xfda\\x8dK\\xc3\\x81\\xbfTN\\x03\\xa1\\xc9\\x8ds\\xbf`\\x8b\\xa6\\xe1\\x8b\\x81\\x1a\\xbf\\x00ukt@\\x90\\x0c?\\x00\\xdd\\xcfTI|\\x13\\xbf\\xa03\\x87\\xccDq\\x81?O\\xe5\\x92?\\x8f\\xceu?j\\xaa\\xfaD\\x1d\\xd0U\\xbf_\\x88\\x93\\x8f.d\\x85\\xbf\\xee/\\x9f)\\xd0\\x00d\\xbfH]\\xe4jj\\xdfJ\\xbf\\xe8\\xad\\xbb\\x89\\xddzv?\\xae\\xe4`\\xba\\x08\\x9e~?\\xe8\\x03\\x01\\x02\\xb1,\\x83\\xbf\\x06\\xd9\\xa3\\x0c\\x8b\\xb1q\\xbf|\\xadT!\\x182\\x8e\\xbf*\\x03\\x97\\xd0\\x99pw?\\xb3\\x81>\\x1e\\xeb\\x92u?c\\xa5s\\xaa\\xf1JJ?\\xa3Y\\xdb\\xab\\x875\\x88\\xbf\\x84\\xbb\\x87\\xaf\\x06W\\x82\\xbf\\xcf\\xdf\\xdf\\xa1_\\x95\\xaf\\xbfE\\x88\\x10\\x80^\\xea}\\xbfB\\xd80\\x10(\\x18w\\xbf\"Lt\\xa3<\\xd0\\x96?\\xba\\xc3\\x1a:\\xfb\\xf6\\x84\\xbf\\xb4Pi\\x98r\\xf6k\\xbf\\xdcj^\\xe2N?\\x8a?X\\xbes\\x08\\x1c\\xc1b\\xbf\"&\\xcb\\x9d\\nJ\\x9b\\xbfr\\xaev\\x8d\\xc4\\x06\\xa5\\xbf:a\\x19V:[\\x98?\\xc5+}\\xd5\\xc6f\\xa2\\xbf\\x80`@B\\xdeMa?\\xb2\\x940p\\xaf(\\xa1\\xbf\\x92]#\\xb2\\xb5L\\xa1?\\x10\\xcd\\x9f\\x14\\xe4j\\xab?\\xdf\\xce\\x06nZ\\x18\\xa1?}\\xd0\\x8a[xg\\xa4? \\xfb\\xc8\\t\\x05\\x86\\xaf\\xbf\\xfcT\\xc9\\xf3@\\x97\\xa5\\xbf\\xad\\x0b\\xbc\\xf9d\\xa1\\xbe?\\xfa\\xda\\xbddZ\\xa0\\x95?\\xba\\xefR\\x03\\xe9\\xe8u?6V\\xe5d\\xb0\\x8c\\xc3?\\x9c5\\xeb\\xaf\\xd7\\x12\\x99\\xbf,\\x14\\x14\\x91JZ`?\\xd8@+,\\xa1Mr\\xbf&R\\xc2\\x00\\xbf\\x16\\x89\\xbf\\xadw\\xee\\xc1\\xc56\\x8a?]\\x93\\x1e\\x81:p\\x9e\\xbf\\xa4\\xdb\\xc3\\x91<\\r\\x92?G\\xdd\\xa3\\x0b\\x96\\x13~?hA\\x8f\\xce\\xaan\\x94\\xbf\\xab\\x00(\\xf9\\xbaQ{\\xbf\\x8c\\xd1\\xa4\\x88x\\x17y?`I\\xdb\\xd8\\x9f\\xd4\\x8a\\xbf\\x15_i\\x06\\x92Lq?(\\xec\\x83\\x82\\xce\\xbad\\xbf\\xfcRp\\xb6y\\x15\\x94?\\xe89\\x98\\xba9\\x01i?\\xa8n\\xf4\\x89gv3?HM7Q\\x9fZ\\x8e?\\x85\\xbd\\xcb\\xccO\\x95\\x86\\xbf\\x90.]\\x87\\x83\\xd9^\\xbf<\\x7fC\\xaa6\\t\\x91?\\x8b\\xbd\\xa7\\x88v\\x9dg?\\xe8/ \\x9c\\x03\\x90U?\\xee\\x04\\x8c\\x10\\xbf%p?\\x93\\xb75\"(\\xbcu?~\\xc9\\xa8\\xf5Z\\x0eW\\xbf\\x8f\\x1d\\x080\\x1f*s\\xbf\\xec\\xd1\\x80G\\xeb/\\x83\\xbf`\\x8f\\xc8\\xe3c\\xe5\\\\\\xbfJ\\xeek<5\\x95\\x89\\xbf`d,\\xac\\xc7\\x07|?\\xd8b\\x94\\xdc\\xbbdt?|\\x06|\\xbb\\x8e\\xc1[?<\\xb5\\xda\\xe3\\x98Wj?\\xb0Q\\x06\\xd4\\xb4\\xefP?\\x10U#\\n\\xee\\x1bh\\xbf\\xc82\\xb8e\\x9ccX?@\\x0c\\xd1\\xf2\\'\\xbb]?\\xc8R\\xfd\\xbbc\\xb3d\\xbf`\\xc92\\x17N\\xd3R?\\xfcOW\\x96\\xdc\\x19\\x81\\xbf\\x06\\xaf\\x83\\xb4|\\x89l\\xbfw\\xf7g\\x8f3\\x92f?\\x80\\x12\\xf4\\xf4\\xbf\\x887\\xbf\\x8c1\\x04M\\xb9\\x13e?Z\\xcb\\xcf&ZC\\x8a?\\x88\\x87\\xb7\\x00C\\xb0Q?\\x81m.\\x81\\xc0\\x0f}?h\\xc1\\xe4G.\\xbbs?p\\xec\\xe6n\\xc5\\xfbE?\\x18\\xa5\\xb6\\x95q\\xe6\\x92\\xbf\\x7f\\x82\\xef\\xa8f\\xf0|\\xbf\\x00\\xa2\\xb2\\xe8\\x14\\xbdm?\\n\\x08/\\tcW\\x89?\\x12\\xae^\\x13\\xf9I\\x9b?\\x80\\xc6\\xab\\xe6S\\x9cZ\\xbf\\xb0`\\xbe\\x1a\"\\xc8u?\\x80*\\xfdQ\\x90Xm\\xbf\\x80\\x13]\\xc4!CW\\xbfd3}\\x1bd\\xcc\\x88?\\xfc\\x1d\\x83\\x14\\xac&\\xa6\\xbfx\\xbf\\x96V\\xb6\\'j?9`K\\xb0\\xc5\\x88\\x87?\\xfa\\x18\\x8d\\xa8\\xd19\\xaa?\\x80\\x08\\x93\\x1b\\x08\\\\p?\\xf1\\x8c5\\xf9\\xcb(\\x93\\xbf\\x06\\xd5\\rN\\x89\\xa9\\x96\\xbf\\x028d\\xe3\\xe1E\\x93?\\x9c5\\xeb\\xaf\\xd7\\x12\\x99\\xbfbc\\x9f\\x868&\\x9c?,\\xbd\\xef\\x0b\\xcd\\x80\\x93\\xbf\\xa8F{<\\x15\\xf2j?n\\xbe\\x9dR\\xb4Ou?\\x00\\x16\\x89\\xa2\\xf3h:?.\\xc8T\\xef\\xdd\\t\\x89?vJ\\x1c\\xbf\\xc1Z\\x83\\xbf`\\x10l\\x89\\x85\\x04~\\xbfy\\xeb\\xf2\\x14\\xcb\\xee\\x9f?H\\x8f7;x\\xb0a?\\xec\\xaek\\xf5\\xcf\\xf0\\x89\\xbf\\x8ag\\x83\\xef\\xc1\\xc2\\x96?(\\xd8\\xd61\\xe7\\x84J\\xbf\\xf6Q\\xd4!\\x8a\\xbai?\\xc6\\xa5\\x1a\\xbar`\\x9a\\xbf\\xeb\\xda\\x08\\x9e\\x10{j\\xbf\\xdeS\\x94w\\xc0\\x15W?D^cA\\x93\\x14\\x8b\\xbf\\xa0-K\\xe7\\x85\\x06n?\\x00r\\xa1\\x84k\\xbc\\x1f\\xbf$\\xb0(\\xe0A\\xf7\\x82\\xbf=\\xd9\\x91LZ52\\xbf@\\x01\\x08]l\\xdc4\\xbf\\xcd\\xa2\\xb1\\x1b\\x06\\x0ey?1\\xfb]\\xe9\\x7f?\\x85\\xbfV\\xdf\\xe8\\x84\\x9a\\x81X\\xbfp\\xc5;\\xcf~\\xc1t?\\xa0S\\xe4\\xa9\\xda\\'P?\\xd4\\xdd\\xa2\\xb5c\\xc6`?\\x1aS\\x81\\xc1\\xd3,\\x86?@\\xee\\x12DN\\xdfB\\xbf\\x04\\x161\\x11\\x951`\\xbf/\\x81\\x84.\\xe7\\x89f\\xbf\\x8e\\xc5.E\\x1b\\xe8s\\xbf `\\x84\\x98\\xb5\\x003\\xbfP*c\\xe3\\xc3dV\\xbf\\x82\\x97P(\\xe5Tz?@\\x01\\x0bBM\\xb3n\\xbf\\xf0\\xb8\\xc7\\xa0\\x1c\\x87Z?`\\x03+\\x87\\xfd?v\\xbf \\xbe\\x19\\x05bFS?\\xa0\\xe1`\\x8a.X\\x94?\\xa0x.\\xc3\\xddi\\x84?8\\xf2\\xfb\\xde\\xc5q\\x8b\\xbf\\x0c\\xfa\\xd2\\xf5\\x17\\xaba\\xbfC\\xfd\\xffz\\x0c\\x8b\\xa8\\xbf:h7*\\xa1jv\\xbf\\xe7\\x92s\\xed\\xc6\\xf0v\\xbf2%r\\x86\\xc5}\\x89?5\\xf3\\x128g \\x82\\xbf\\xa8!\\xd9\\xad`\\x8bu?K\\xd3z\\xc7\\x8a[\\x94?\\xd0j,\\xdb|\\x9eP?g\\x1a\\xf7\\xd8(pt\\xbf(\\xba\\x9d6HY\\xa3\\xbf\\xb8\\x8e\\x0f\\xb2\\x14\\x93\\x80\\xbf\\\\\\\\\\xbaP\\xa3\\xfc\\x88?\\x9e\\xc3\\xdf!\\xb5\\xe1\\x91\\xbf\\xfei\\xdax\\x1a\\xd4\\x92?\\x90\\xdb\\xd6\\xd6D\\nG?\\xa9\\xedY\\x83U\\xe3\\xa5?,\\x99Q=N\\xf5\\x92\\xbf\\x13\\xe65\\xbb\\xae\\xcbf?\\xe2JR\\xdf\\xb9x\\x9b\\xbf\\xda\\\\\\xcd1\\xa7\\xb0\\x85?\\x10&\\xd5\\xeb8\\xf5\\x93?\\xfcR\\xda!`\\x86\\x8f?e\\x88\\xed=H\\xcc\\xb1\\xbf,\\x14\\x14\\x91JZ`?,\\xbd\\xef\\x0b\\xcd\\x80\\x93\\xbf\\xa7\\x9dh\\xc2\\x8e\\x04\\xb5?\\x992\\xc0Kf\\x9b\\x95\\xbf\\xb7q\\xbc\\nI\\x07\\x82\\xbf\\xa3\\xe1y\\x0bKm\\x90\\xbf\\xd8g\\xa1\\xd4Z\\xc4\\x97\\xbf|\\xc1\\xe4d\\xf7\\x89\\x88?\\xbe\\xaf.r\\xe4`\\x96?\\x80\\xf4\\xb0\\xd3Q\\xe5D\\xbfIb\\x9fTt\\xa8T\\xbf47\\xd7\\xddp\\x18n?\\x00SV*\\x82\\xd0c?\\xb0\\xfe)\\xebn\\xabM\\xbf zX\\xfd\\x8f\\x0eS?\\x00\\xa8:`\\xc9N>?\\xdcE\\xf2\\x19\\xf3rV?\\x081\\xe8\\xe8\\xc4\\x96a\\xbf\\xd0\\xac\\x0b\\xacL\\xbfy\\xbf^\\xa0\\x87\\x94g\\xe3\\x80\\xbfp\\xe5!WAkn?(\\xea\\n\\x1dL\\xdc\\x83\\xbf\\x8e\\x03\\xc7]\\xdcjt? \\x905X\\xf4\\x17P\\xbf\\xa2\\xd1w\\xf87\\x88\\x8f\\xbfT\\xe9\\xa5H\\xfb\\xd2\\x82?\\xd9\\xbc\\xe8\\xba\\x0c\\xe2a?\\xf35n\\xa0<\\x95\\x87?\\x14\\xc7R\\x1b\\x1c\\xc3\\x81?\\xa4\\x02Ul\\xa6P\\x7f\\xbf\\xa9\\xbd\\xbb\\x92\\xb1\\x0c\\x87?\\xb0\\xf3\\xc2\\x986\\xb4}\\xbf\\x00\\x9f\\xa3\\xb3\\xe4\\xeaK\\xbf2f\\xa3\\t\\xe2mw?@\\xfe\\xe6_ySh?z\\x92=\\x02\\xae\\x9ad\\xbf@6J\\xb3\\xb8}R?\\x87\\xee*/\\xac\\xed\\x90\\xbf3,R\\xa0\\xfc>\\x87?*\\x8f\\xa2R\\xb0Fy\\xbf\\x8d&\\x8b\\xd4^\\x93\\x81?\\x84\\x8e\\xda\\x9d)\\xb2\\x80?$Ju\\x11Ytw\\xbf\\xf0\\x94\\x97w\\x9b.\\x89\\xbfFOV\\xe60\\xe9\\x91?tH\\xb4\\x14|\\x9bi\\xbf\\xb3\\xa1\\xeez3\\x94\\xb1?\\xc9\\x13L\\xb0\\xa0\\x1b\\x93?\\xbc\\xbd3\\xcd#\\x00k\\xbf&?\\xa7\\x05\\xd18\\xa3\\xbf\\xf8\\xea`\\xc6D^s\\xbf\\x04X\\xb4\\xe7\\x178\\x8b?\\x81\\r4\\xe8\\xda4\\x87\\xbf\\x80\\xde\\xcf\\x88<\\x17Z\\xbf\\xdf\\xf1\\x14\\x99\\xc8\\xdco\\xbf\\xfe^\\xf7?\\xbf\\x9b\\xa0?,\\xa4Zp\\x16\\x02\\x9e?\\x8en\\r.\\xdc\\x02\\x86\\xbf`\"\\x0eM\\x153\\x8f?|\\x19\\xd6\\x82@\\x11\\xa4\\xbf\\x1c\\x88\\xe9\\x9c\\xdbV\\x94\\xbfLf\\xb4\"\\xbaU\\x93?\\xab\\xbd \\xa4\\xccY\\x91\\xbf\\xc7\\x16I\\xf3\\x1b\\xce\\x85\\xbf\\x94\\xa3\\xa8\\x95\\xb0F\\xa1\\xbf\\xf8\\xca\\x08\\x8a\\x10\\x03\\x96?n/\\xfe\\xdd-B\\x9f\\xbfx\\x90\\x80\\x0b4\\xcb|\\xbf\\xab8{R\\xc6\\xa6\\x90?\\xd8@+,\\xa1Mr\\xbf\\xa8F{<\\x15\\xf2j?\\x992\\xc0Kf\\x9b\\x95\\xbf\\xbc\\x02\\xf4$Z/\\xa1?\\x1aB\\x11\\xbe5\\xd9\\x87?\\'d\\x1f}A\\xf0\\x98?\\x90\\xf0\\xaf\\xab\\x99\\x88\\x99?,\\x83~\\xf4#?\\x86\\xbf|U\\x06\\x17P \\x9e\\xbf\\xc0\\xf2\\xc7,J!P\\xbf\\xd7\\xad\\xdc\\xfe\\tYR\\xbf\\xac\\xe3j\\xbey\\xacc?\\x80NoX\\xa7\\xd1T\\xbf\\x00\\xfe\\xa2a\\xe3\\xb8F\\xbf\\x90\\x84\\x01\\xb1\\xdci0\\xbf(\\xbaj\\xdb\\xfa\\xeep?G\\x119\\xe6`\\xae\\\\?\\xe4\\xd2\\xc7I\\x86\\x0ea\\xbf@L*\\x9c}F`\\xbf\\xdb\\x14\\xdb\\xe6\\xd9\\x19t\\xbf\\x08\\x03\\xa6R\\xa7@P?\\xb0\\xb9\\xa9H\\xd1\\x88d\\xbf\\xde\"\\xca\\xf7\\x7f\\xc72?\\x18m\\x91\\xf4\\x9d\\xdfQ?8\\x83\\xb1\\x85\\x0e\\xf7l\\xbf\\x90h\\xbf(i\\xeb|?\\x18\\xa8\\xfc\\x00\\x85\\xe4^?\\x96\\xa4\\xc8Em\\x83w\\xbf\\x80T\\xf3\\xe6\\xa1\\x9fo?\\x98\\xb5\\xb2\\xd8W4W?&M\\xe5\\x13M\\xdeh?\\xc0\\xb9\\xb5T\\xd17R\\xbf\\xa8\\xba\\x95\\x86\\xe9\\xd9S?^\\xc0\\xfe\\xf0\\xd32s?j \\xa6\\xf4\"\\xe7c? \\xd5\\xf7N\\xbcUQ\\xbf\\xf8\\x80?\\x97\\xe8\\x97s?r\\xfdX\\x82\"K{\\xbf@\\xc7*G\\xdc\\xc3G?0_K\\xbda\\xd4[\\xbf\\xd0\\xf3\\x94\\xfd\\x05\\x94l?H\\xa9\\xd7^4\\x1bx?\\xb8R>V\\x8bnQ?\\xcd\\x05\\x06F\\x8adp\\xbfJ*\\xbb\\x1a`\\xba\\x85?\\x80~\\xf1\\xc4\\xa8\\x021?\\t\\x8e\\xb1\\x15\\xca~\\xa5?-p\\xec\\x9et\\xcc\\x8c?\\x9b\\xcc9\\x157k`?M\\xfa\\xb3\\xaa\\x10\\xd8\\x92\\xbf\\xd4bT\\xcf\\x18Cm\\xbf\\xf0\\x12\\xf3t#vP\\xbfZ\\x19\\xf5N\\x99\\xb1\\x86\\xbf\\x80V48\\xf2\\xc2Y\\xbf\\xb1|\\x02\\x96\\xf9\\xa0Y?\\x97k\\xeb%5g\\x9a?\\x00\\xc9]\\x8ash\\x82?`\\xb8W:,ec\\xbf\\xfeO\\x14z\\xc9X|?\\xa8\\x10\\xd0\\xd2\\xc8\\x9c\\x8c\\xbfJ\\xcc\\x10\\xc0\\x01$\\x81\\xbf\\xe0\\x12q;\\xfd5s?V\\x85,6:X\\x88\\xbf\\xb0\\x90}I\\xb19[\\xbf\\xa8\\x96\\x99[\\x06\\xf0\\x88\\xbf|\\x9dA\\r`[\\x8e?O\\xbd\\xf9\\x9d\\x94\\xc2\\x93\\xbf\\xccw\\xff(\\xb8\\xc4v\\xbf\\xf8Q\\xf3\\xd6\\xb0\\xf8l?&R\\xc2\\x00\\xbf\\x16\\x89\\xbfn\\xbe\\x9dR\\xb4Ou?\\xb7q\\xbc\\nI\\x07\\x82\\xbf\\x1aB\\x11\\xbe5\\xd9\\x87?\\xc8\\xf5+!%T\\x85?\\xbcX\\x10.\\xc14\\x8d?\\x8d\\xd6V\\x9b\\x0b\\x91\\x8e?P\\x8a\\xa3\\x86 \\xe7\\x84\\xbf\\x8c9\\xc5\\xab\\x87\\xea\\x92\\xbf\\xc0\\xf3U\\xa6 \\x1ak\\xbf\\xd6 \\xf6b\\xad.X?\\xb8\\n\\xd9h\\xdcrm?\\xf8\\x8c\\xaa\\x86G\\xcd\\x82\\xbfH\\xf7\\xbc\\xf0\\x85\\x05k\\xbfh\\xc95z\\xed\\x06f\\xbf\\x10\\xa3\\xac\\xa2\\x12U\\x7f?\\xd0\\xcctL:\\xeb??#\\xb3*9{@b\\xbf  7\\xf9\\t<g\\xbf\\x0e\\xf2=I\\x15`\\x7f\\xbf\\xe0\\x17\\xe1\\xbf\\xb91G?`m\\x99\\x01\\xfc_r\\xbf\\xf1\\xd7\\xb2\\x87\\xe4\\xe0n?((~\\x0e\\x9cP]?\\xe3Yk\\xf2EK\\x87\\xbf\\x84\\xc57H\\xdbE\\x85?\\xbc\\xa12P\\x99/^?v\\xe7yy\\xc8\\x11\\x82\\xbfn&.\\xd8S\\x0b\\x89?\\x00X\\xf4-\\x80\\x9d=?\\xd2\\x12\\x9c8\\xccs\\x81?\\xd8\\xde\\x0ek\"wv\\xbf\\xc0KG\\x9fB\\x81:\\xbf\\x10\\x18\\xf0\\xfc\\x84[u?\\x84\\x9f\\x98\\xe3Q\\x1fk?8\\xd7\\x0c\\xb0\\xedF`\\xbf\\xcc\\n\\xe1tp\\xce\\x8a?S\\x7f\\xe11\\x9a\\xc9\\x90\\xbf\\xb0V=\\x1c\\xb5\\xe4b?\\xaf\\xa5<i\\xc6\\xf3y\\xbf(\\xc9\\n\\xb0\\xbd\\xe1w?\\xc0\\xc6\\xd0\\xeeg3\\x8d?4\\x08\\x1c\\xe1\\xc6Dc\\xbf\\xbc\\xfc*\\xf4\\xd4\\xc8\\x84\\xbf\\x94s\\'\\xc4+\\x18\\x8f?(\\xbb\\xb0\\xd6*\\x90h\\xbf.\\xf4\\xfax\\'p\\xb0?Y&\\xd5\\x04)\\x83\\x9c?8X\\xac~\\xf5\\x962?\\xc5\\xe0\\xe8\\xcbM\\xda\\xa0\\xbfLBzTB\\xaf\\x8a\\xbf`R9\\xde\\xe5\\x12\\\\\\xbf\\xc8\\x1e\\xd0\\xf0`\\xe9\\x90\\xbf\\xa0\\x81U\\x0f\\xae\\x8ec\\xbf\\x80\\xa6+\\x02I\\xfe\\x84\\xbf\\x16\\xa3\\x84\\x82:\\xd7\\xa2?~\\x98h\\xd8\\x86\\x0f\\xa5?\\x9f\\xd5\\xe4\\x02\\x9fJ\\x95\\xbf2\\x01r\\x84\\xbd\\x86\\x86?`Nx_\\x10\\x15\\xaa\\xbf\\x8cZ\\xd3\\xf2\\xfa\\xaf\\x88\\xbf\\x88\\xd3\\x87\\xf2\\x9az\\xab?\\x0c\\x1b4\\x7f\\xcf\\xf5\\x9a\\xbf\\xea~\\x08 B\\xa7q\\xbf`}*\\xcc;\\x11\\xb1\\xbfx\\x90\\xbc\\x0f\\x11\\xf1\\x9b?X\\xfcyD\\xc0\\xa0a\\xbf \\xff!H\\xc9\\xf1W\\xbf\\x80mm)\\x92\\x8d|?\\xadw\\xee\\xc1\\xc56\\x8a?\\x00\\x16\\x89\\xa2\\xf3h:?\\xa3\\xe1y\\x0bKm\\x90\\xbf\\'d\\x1f}A\\xf0\\x98?\\xbcX\\x10.\\xc14\\x8d?@\\xe4\\x03\\x13W\\xcc\\xa3?\\xb8\\xbc,[\\xf7\\xde\\x95?8\\xf4<\\xb14T\\x8d\\xbf\\xd2\\x82j\\x0b)\\x1e\\xa3\\xbf4\\xf8\\x95\\x11/\\xd3~\\xbf\\xaci\\xe9\\xe5 \\'y\\xbfl#\\x17\\x8c\"Sl?@\\xb0\\xcc}e\\xc0i?\\x90l0F\\xdfMR?-\\xa3\\xcf\\x9e\\xd7\\x82z?\\x928-#\\\\]\\x83?*%R\\x93\\xff\\x90x?\\xad\\x96hFwdu\\xbf \\x08r\\xbb\\xfe|n\\xbf\\t\\x83\\x1cR\\xdbr\\x87\\xbf\\xd0%\\xd0\\xb0\\xe5[e? {\\x01\\xe0s\\xd2^\\xbf\\x16~\\xaa\\x83<\\xc9e?\\x00\\xf0\\xa7\\x03C\\xbaN?R*\\x7fD4m\\x81\\xbf\\x88\\x972B]\\x14\\x91?\\x92\\x034\\x99\\xa0\\xceg?.*\\x01q\\xa8;r\\xbf:o\\x9e\\xa3]\\xc4\\x82?\\xaaP*W<\\x02f\\xbf\\xa0\\x93\\x9bZ\\t\\xc3)?$\\xc1vkz\\xb8\\x7f\\xbf\\x00\\xe0V\\xde\\x13\\xa4\\xfb\\xbe\\xf1[[w\\xd5I\\x81?\\xa4N\\x0f\\x11a\\xb6{?\\xe8f\\xaam\\x84ol\\xbf\\x04O\\\\\\x0b.\\x94p?l\\xb6\\xae\\x9d\\x7f\\xaf\\x92\\xbf\\xbd\\x8f\\xb7\\x92\\xc1\\xd3\\x8c?\\xacn6W\\xc2\\xc2d\\xbf\\x02\\xc8\\x1c\\x04(\\xe8\\x8c?\\x10\\'\\x17r\\xe6\\xe6\\x81?4\\xe3\\xb3\\xeb\\xf6\\xaa{\\xbfc\\x00v:\\xe8J\\x91\\xbfl\\xa3M\\x04zM\\x9d?(\\x9f\\x16R\\x9c\\xacS?\\xae\\xdd\\x1f\\xfb+\\x8a\\xba?\\xad\\xe5<h\\xed\\x1e\\x97?gh]\\xe3\\xc4Hv?\\xbaY0\\x95\\xe9O\\xa5\\xbfl\\xcc\\x9fkm\\xf7[?\\xa6\\xfe\\x93);\\x16\\x84?\"\\xbc?\\xac\\x9e\\xa1\\x9a\\xbf\\xe8\\xd1\\xb5\\xec2pa\\xbf\\xbd\\x10\\xe1&[\\xa2u?f\\x86\\xb2\\xd2\\'\\x16\\xad?\\\\\\x19\\x05\\xf4:\\x85\\x8d?\\xd0\\xd1\\xa8\\xb7\\xda;k\\xbf\\xda\\xab\\xbe\\x10k\\xf6\\x9b?\\x18\\xf7S*\\x020\\x9f\\xbf&\\x83\\xf5 _\\\\\\x99\\xbfz\\xcb\\xbc\\xe3\\x0ea\\x93\\xbf\\x1e \\x96\\xfc\\xf1\\xdb\\x89\\xbfaj\\xcd# _|\\xbf@~\\xa5\\\\O\\xa8\\x83\\xbf\\xa8\\xc6\\xb8)\\x1e\\xb8\\x98?\\x02\\xb1u\\xfe*\\n\\xa7\\xbf:\\xc18U/\\xa2\\x85\\xbf\\x1f*\\xe2\\xf8I\\xc6\\x89?]\\x93\\x1e\\x81:p\\x9e\\xbf.\\xc8T\\xef\\xdd\\t\\x89?\\xd8g\\xa1\\xd4Z\\xc4\\x97\\xbf\\x90\\xf0\\xaf\\xab\\x99\\x88\\x99?\\x8d\\xd6V\\x9b\\x0b\\x91\\x8e?\\xb8\\xbc,[\\xf7\\xde\\x95?\\x10\\xaa\\x06\\x10\\xe6\\r\\xa3?\\xe6\\xa7\\xcd\\xff\\x9cE\\x92\\xbff\\xd4\"\\xf5N\\xf0\\xa3\\xbf\\x08\\xfc\\xcf\\x9e*Sz?\\xc0\\x05f\\xe0-9d?\\xb4{O\\xf7\\xd5\\xf5m\\xbf\\xd8\\xae\\x86l0ku?\\xa0\\x89\\xd9E\\xf6\\xc2?\\xbf\\x905\\xec%h\\n8?\\xe0$X\\x9a\\xf9\\xcb\\x86\\xbf\\x8b\\x8f\\t9u\\xd2i\\xbf\\x10\\xd5\\xe4\\x01O8Y?\\x00\\x1e\\xe8h26[\\xbf\\xe8g2Y,\\x04z?\\x80V Mh\\xeeF\\xbf\\xb0\\x8a\\xc2N*\\x1dd\\xbf\\xae\\xca\\x1d\\xe0\\x8f_[\\xbf\\xe05WCj\\x9cY\\xbfn\\xdf\\xc2\\xa4T\\x81h?\\xf1\\xc5\\x9a%\\x81\\x94\\x84\\xbf\\xd3x\\x00Z3(b\\xbf\\xf6\\x13\\x8f\\xe2\\x90}}?8~4\\xb7\\xf6-j\\xbfH\\t@\\x9a\\xf9\\xbcW\\xbfd\\xe4\\x11\\xe3\\xa7\\x80U?\\x80\\'\\xe86l\\xfd2?4\\x9b\\x8b\\xd4\\r\\xd9m\\xbf\\x05\\xb8\\xf4A\\x85\\xa7z\\xbf\\xff\\xb4@\\x00\\x10\\xd4r\\xbf\\x808\"\\x86\\xfa\\xe7F?p\\x0e\\xf0\\xc2\\xab+p\\xbf\\x18\\xe9c3\\xf4_\\x7f?\\xe0\\x94\\xed\\xbb\\x9b\\xc0b\\xbfFvhPwZa?\\xfc\\x87g\\x9eXtw\\xbf@h\\x86\\x83zI`\\xbfp\\xec\\xbbK*\\rG?\\xe2\\x9ejRZ\\xb1\\x81?VU\\x92\\xe46\\xe2\\x8b\\xbf\\xf0\\xbc\\x91\\x03\\x0c\\x02]\\xbf/\\xe3\\xa9$c~\\xab\\xbf\\xea\\x1f\\x7f\\x9b.j\\x91\\xbf\\xd6\\x90\\xc2Q\\xf0\\x9dr\\xbf_\\x11z\\xc8\\x11Z\\x91?\\xa4\\x9e\\x03\\x1f\\xa1\\xf2k?T\\xf0\\xd6\\x9c\\xea\\xebp?\\xda\\xe45\\xac\\xcb\\x11\\x91?\\x00\\x82\\x1466\\xcc9?\\x1a\\xf1\\x03\\xf2\\xa9Oq\\xbf.\\xcf\\xf2\\xa4\\x880\\xa4\\xbf\\xa0\\x98%\\xc43Rz\\xbf n \\xf8+\\xa7w?,_\\x04\\xe4m\\x13\\x8d\\xbf\\xd6@l\\xe3\\xf3_\\x93?\\xf4G\\x00\\xb0\\xd8\\x17~?\\xf8\\xb8.\\xdb\\xee\\x96\\x80?\\x08\\xb6\\x06;\\xc6\\xf8\\x84?(\\x87H\\x88\\xdd\\xfch?\\x00\\x0e_=L\\x84P?^\\xf6\\x89\\x9d\\xd3\\xb5\\x8e\\xbf\\xb4\\x1e\\xd6\\xbb\\xd3D\\x9a?\\xa8\\xeb\\xce\\x87$f|?\\xc0\\xf0Kk\\x1e\\xc3l\\xbf\\xa4\\xdb\\xc3\\x91<\\r\\x92?vJ\\x1c\\xbf\\xc1Z\\x83\\xbf|\\xc1\\xe4d\\xf7\\x89\\x88?,\\x83~\\xf4#?\\x86\\xbfP\\x8a\\xa3\\x86 \\xe7\\x84\\xbf8\\xf4<\\xb14T\\x8d\\xbf\\xe6\\xa7\\xcd\\xff\\x9cE\\x92\\xbf\\x1a\\x96\\xac\\x97a\\xb2\\x8e?t\\xe6l\\xa2\\xc6\\x84\\x97?01\\xa3\\xbf\\xf4l\\x83?\\xdf\\xdb\\xc5\\xc3\\xc2,h?p\\xd4\\x00\\x88\\xd8\\x8dr\\xbf\\x00\\x1a\\xbeK\\x0b\\xf6H?\\x9b)a\\xde\\x88-u?`@\\xb2{\\x8cc8\\xbf\\xf8W\\x80\\x8f\\xd9h\\x92\\xbf\\xe0\\x96\\xb9\\xc3\\x82\\xf9\\x81\\xbf\\x9cI\\x17\\x1e\\x00\\xa2p?\\x00gs\"\\xde\\x1e\\x8b?(co\\x01\\xe1O\\x89?\\xb8(`2\\xdc\\x0bl\\xbf\\x18\\xe0\\xf7\\x85o3\\x83?\\xb2\\xaa\\x0e\\x15t\\r[\\xbf@\\xcdk9\\xbb\\xce%\\xbf\\xa3\\x03\\x81\\xb1G>\\x8c?A\"\\x94\\n\\x9c{\\x99\\xbf\\xb4\\x00\\x05\\xe6\\xe2Bp\\xbf\\xb0k\\x91 \\x99\\xdbu?J\\xd1\\xad\\x16\\xa8V\\x90\\xbf\\xd4\\xfd\\xdc\\xec\\xa4\\xa3t?\\x9a\\xa6\\xad\\x8d0)~\\xbf\\xcc\\xbe\\xda\\x7f\\xa2S\\x8b?\\xe0\\xadS\\xc8\\x93\\xd2t\\xbf\\x136\\x15\\xc6\\xa9\\xf2\\x8b\\xbf\\xa6\\xdc\\x95T\\xd4\\xe7\\x88\\xbf\\x92\\xd7u\\xa4\\x8f\\x80m?\\xec62k\\xfa\\xe2\\x84\\xbf\\xd1\\xddPX\\x00\\xce\\x9d?\\x8c[\\xaa\\x12\\xf2\\x7f\\x92\\xbf\\xef\\x11;\\xf0\\x17\\x04~?\\xe4\\x9e\\xd9O#\\xcf\\x95\\xbf\\x10\\xaa\\xed\\xa6\\x94A\\x84\\xbf\\x1a\\xe0\\xbd\\xeb\\xa2W}?\\xf8\\xd2\\xbbR\\xea\\xb8\\x9e?.[d\\xde\\xe6\\xd1\\xa4\\xbf\\x80\\x05f\\xbf\\xa9|[?-\\x1f9\\x0f\\x9c>\\xc2\\xbf\\xbfQ#\\xb2\\xd8\\x14\\xa8\\xbf:\\xef\\xe0t\\xc2m\\x7f\\xbfh\\x18\\xc1\\xd4\\x05i\\xaa?M\\x8a[\\x7fBW\\x88?P\\xa4\\x98\\x08)W}\\xbf\\xb5\\xb4){\\xa9\\x8e\\xa5?\\x80\\xc1,\\x07\\xe9\\xb7]?C8Ff\\xf6\\xe9x?G6/+\\xd4\\x08\\xb4\\xbf\\xf8\\x84T\\xbc{C\\xa4\\xbf\\x80\\xb2b?\\xf8O\\x9a?\\x86\\xc4\\x05\\x89\\x95\\xeb\\xa7\\xbf\\xd2\\x8f\\xd8\\xde\\xaeX\\xb2?\\x1dH\\r\\xc6\\xbf\\xa6\\x9f?\\xe0M}1r\\xee\\x82?&\\x95EsW\\xb3\\x95?V\\xdb\\xe2\\xf3\\xd0\\x88~?\\xb8\\x0e\\xf5\\xee\\x82\\xfa\\xa5?\\xc4\\xf7\\x16\\x04\\xb8-\\xa2\\xbfE\\xcf\\xa4\\xbf\\x04\\\\\\xa4?(\\xf7\\xff\\xe2\\xcf:x?\\xb0\\xb9\\xe8\\x87\\x12`w\\xbfG\\xdd\\xa3\\x0b\\x96\\x13~?`\\x10l\\x89\\x85\\x04~\\xbf\\xbe\\xaf.r\\xe4`\\x96?|U\\x06\\x17P \\x9e\\xbf\\x8c9\\xc5\\xab\\x87\\xea\\x92\\xbf\\xd2\\x82j\\x0b)\\x1e\\xa3\\xbff\\xd4\"\\xf5N\\xf0\\xa3\\xbfx\\xe6l\\xa2\\xc6\\x84\\x97?\\xbc\\xd2P\\x7fD(\\xb0?E\\xbe\\x91\\xa9\\xbdE\\x97?\\xcc_\\xe5\\x86\\x88{|? \\x15\\xbd\\x0f\\xec\\xf4h?\\xc2\\x8f\\xdd\\xbc\\xd6\\xca_?\\x9e\\xd6\\tBc\\xe4Z\\xbf^W\\xd0\\r\\xedDi\\xbf\\xb4\\xaa\\xf2x\\xd9}d\\xbf\\xf7\\x12\\x14\\xde\\xcb\\x92t\\xbf\\x05\\xa6I\\xa9\\xef\\x1eN?@\\xf9\"\\xe0\\x9b\\xab\\x93\\xbf\\xdb\\x83E\\xbc\\n\\xaf:?eSb$PqV?&\\x0c\\x8a\\x04\\x11\\xf2o\\xbf|\\xed\\xe5a\\x07jh\\xbf*h\\x03UX\\x19a?\\xc9@\\xeb\\xa5\\xd7,x\\xbf\\x01x\\xfc\\xe3\\xb6\\xb2R?\\x00\\xbeB+\\xda^S\\xbf\\xd5\\xda\\xfd\\xda>!;\\xbff\\xfe\\xc9\\x96\\xd7}^?\\x13\\xea\\x04\\x96\\xb0GY\\xbfH\\xf1H]\\x8e\\xd7b?\\x1d:\\xc2M52^?\\x01\\xe2J;o\\xb9l?\\tS\\x01\\xf0f5k?X\\x14s\\xf7j\\xefb\\xbf\\xda\\x1b\\xc8!\\xf3\\xfc/?\\x80K\\xaa\\xd4a\\xd3O?\\xcc\\xe1U\\xe8/\\xc3S\\xbf\\xa2\\x97\\xee\\xb9W\\x8fA\\xbf\\xe0\\x14\\x99_\\xd5\\re\\xbf\\x92|\\xbc\\x03\\xc5gm\\xbf\\x08\\xc0\\xf1\\x044\\nY\\xbfiAeG\\xf3\\xc7d\\xbff\\xe3\\x14R\\xc1]U\\xbf0\\xae\\xe1\\xbcM\\x97f?\\xc1\\x11_\\x9e\\xf3\\xc4q?\\x8e\\x7f\\xc6\\xb7R\\x9di?h0g\\xb5\\xc0G^\\xbf\\xd9\\x91\\xdb\\xfd\\xd5qZ?\\xf4\\xc3ntn\\xd9v\\xbf\\xec\\x96\\xf3\"\\x82#T\\xbf\\xaa\\xac\\xa1\\xdc\\xbf\\x10A\\xbf\\x8c\\x0b+kz\\xa0I?\\x84\\xf1\\xc0\\xb0,\\xdaO\\xbf\\\\\\xbe\\x06\\xf4r\\xb5Q\\xbf\\x12l\\xf7\\xf2\\x04\\xb4m?\\x0c\\xb2\\x06x\\t\\x13S\\xbf\\xa6^\\x1e\\x92@\\xe2a?\\x12o\\x85\\xee\\x0cFf\\xbf\\xdb\\xb4\\x13\\x86q!q?\\xf0\\x8ew\\x84<\\x04\\x86?\\x16\\x1e\\x95\\xafD%w\\xbf\\x12\\x0f\\x17e\\x84\\xedZ?\\xa7\\x91\\xbb\\xe9\\x8b\\x9e\\x81?\\x7f\\x15Z\\xe8b6a\\xbf9a\\xe3|\\xdda\\\\?t7#\\xb70\\x15c\\xbf\\xb4\\xee\\xcfW\\x18\\x17T\\xbf\\xf0r\\xd0Z\\x19\\xbak?\\xf9x^D\\xd7\\xcdn\\xbf\\xd0\\xf3K\\x8d\\x92\\xbdl\\xbf\\xacr\\xfd2\\x1a,L\\xbf\\x14>&\\xbb\\'\"s\\xbf\\xb9,\\xf3\\xbf\\x87\\x14j?\\x1e\\x93\\\\\\x01&7g?H{(\\xa6\\xc0vN\\xbf\\xa5\\xb9\\xfd\\x82\\xa8\\xa5_\\xbfb6\\xd8\\x12\\xacjq\\xbf\\xcb_\\xe5\\x86\\x88{|?\\x83/WN\\xe6#y?\\xfa0\\x1fgt{k?\\x84\\xea\\x86\\xd3h\\xdbP?6\\x18\\x06\\x9c\\xa9\\x06[\\xbf\\xa8j\\xa6W]\\x9bZ\\xbf\\x80Z96\\x7f\"A\\xbf\\xbbi\\xcb\\xcc\\xeb\\xc5a\\xbf\\xc0 b*\\xd9\\xb9@?\\x98T\\x0bdl\\x9b\\x81\\xbft^\\xa9\\x95sZs?\\x9cB\\x89\\xcb\\xd9\\xaaK?\\xe0+\\xa7\\x8f\\xf5\\x11f\\xbfXhY\\x1b\\xd0\\x18b\\xbf\\xc2\\xf5\\xb9\\x19\\x8cZJ?\\x80<\\x9a\\xbc<\\nq\\xbf`\\x19*\\xb1\\x8fM\\x11?\\xc4\\xec\\xa9\\xf6\\xc4\\xe9?\\xbfp\\x17\\xac-\\xeb\\x91 ?d7\\xf7\\x8b\\x7f^a?\\x98I\\x13\\xef\\x06ZO\\xbf\\x90\\xf9\\xff\\xaf v=?\\xc0\\x1f\\xadU337?v\\xaeJ\\x97\"SZ?\\x84\\xf8\\xb3\\x03cvV?\\xa7Ma8\\x1b\\xe4Q\\xbf~Wt\\xdd\\xf4\\xed-?l\\xf6\\xbc\\xb8B\\xabS?\\x08\\xd0\\xc9\\xf5\\x1c\\x94N\\xbf\\x00\\x1e\\xef\\x14Yk\\xf3>\\xf0\\x16l\\x17\\xbe\\xa26\\xbf\\x92\\xf1\\x95vx\\\\W\\xbf\\xec\\xb5\"\\xa0\\x085L\\xbfs\\xbb\\x8f\\xc8\\xc5\\x94G\\xbf}%\\xe6V\\xe6\\xe8Z\\xbf\\xf8H\\xf0\\xd0/\\x8dY?(\\x00(\\x1b\\xbf]_?\"\\xe1\\xd2\\xf9\\xb9N\\x14?\\x80\\x90\\xf7\\xb3\\xa9\\xf36\\xbf\\xb8\\x07\\x03y\\xbf\\x12.?\\xb495N\\xd7#U\\xbfp\\xe0\\xbc7=mU\\xbf@\\x88\\xce\\x1e[\"<?K\\xbf6&\\x91}B\\xbf\\x00\\x87\\xa44E1I\\xbf\\x80P\\xe3R\\x8a<\\x1e?\\xc0c\\x81\\'\\x8bf6?`\\x90PJu\\x08Z\\xbf`k\\xbc\\xa4\\xbd\\x951?@V7\\x93\\xde\\xa6L?\\xd0\\xa0\\x96\\xac\\x12>d?\\xdc\\x82?H\\x9f6p? \\x16\\xc9\\xaai\\x06U?\\x00\\xce\\x89\\xeb\\xbb\\x91?\\xbf\\xe9\\x90\\xe9\\xb1c\\xb1`?\\xf86\\xa2\\xbd\\x1c\\xe7l\\xbf\\x88\\xe8\\ny\\xb3\\x15^?\\xdecJQ\\x1bza\\xbf\\xc8\\xa0\\x7fc\\xdc\\xc3[?`\\xe67=`\\xbci?\\x08\\xb8<\\xdeZ\\xeco\\xbf\\xd3{ad\\xe3\\xf3i\\xbf&\"\\xee\\x99\\x1f\\xa2U\\xbf\\xe8\\xa7\\x01\\x1aX\\x86h\\xbf\\x10Clq=+E?\\x00\\xa9+\\xd69i\"\\xbf\\xf4\\x8c\\xd89\\xbbU\\\\\\xbfp\\x14\\xe1\\x87\\xf3\\xf17\\xbf\\xc0c\\x92\\xaa\\xaf;J\\xbf \\x15\\xbd\\x0f\\xec\\xf4h?\\xfa0\\x1fgt{k?/\\x81>\\x1e\\xa0&\\x7f?\\x1e\\xfbdi\\xdb\\xe4\\\\?\\xd0\\xd5\\x93\\xc6\\x17\\xbfI\\xbfzw\\x86\\xd6\\xebZi\\xbf\\xc2\\xc93[\\x15hP?\\xc9\\xa7{\\'\\x10\\xd9_\\xbf}\\x08\\x81z\\x06T9?\\xf6m\\xd4Fc\\x99t\\xbf\\xc5\\xc6\\xf0\\xd7\\xbc\\xefi?P\\xcc\\x17\\xf3\\xa1\\xb8<\\xbfL\\xb1\\x16\\x17?\\xedg\\xbf\\x14\\x12\\xe2\\tQ\\x929?\\x1a\\x05\\xd3fpLX?\\xdfVy\\xe7T~v\\xbfpL\\x80r\\t\\x9e0?6\\x97\\xdf\\x86\\x95TS\\xbf\\xbb|Z\\x9dC\\x1eW?\\x00\\xd2\\xa3\\xb4$W(\\xbf|\\xcb\\xcd\\toe`\\xbf\\xa4\\xf4_\\x12\\x1e\\xdaE?\\xd0\\xa6\\xb2Y\\xfb\\xfdd?\\x8c\\xf9\\x97xr\\xaeR?\\xec\\x91>\\xfaZ\\x08d?s\\xb0a1\\xa7\\x91Y\\xbf\\xe0\\xe3Dk\\x8f\\x01\\xe0>\\x80\\xf3m(\\'\\x164\\xbf@\\xc3\\x05\\xb4P\\xe8)\\xbf\\xc8h\\xd3\\xab\\xd9\\x89Q?\\x90\\x81\\x1cO\\xe2]L\\xbf\\x13P\\xcc\\xb1eQi\\xbf\\x80\\xdd\\xd0\\'\\x1dY\\x13\\xbf\\xde\\xafPh\\x91\\xf3[\\xbf\\x927\\x1a\\xac(\\xcck\\xbf\\xe6&n\\x0c\\x03\\xd4l?\\xd1c\\x00\\x8fR\\xc2f?0\\xbd\\xad\\x87\\xd3\\xfeR?P\\xac\"@=|b\\xbf\\x14O_\\xa3\\xfa\\x1fC? ,0\\xcd\\xba\\xbad\\xbf\\x00\\xc8\\xf4\\xb3m_:\\xbfR\\x93\\xca\\x00o7t?\\xc3\\x0e\\xa0\\x03m\\x0eY\\xbfHC\\xf1\\r\\xabX=\\xbf\\xe0R\\xb6\\xee\\x02[I\\xbf\\xc0\\xd3A\\x95\\x1588\\xbf\\x00<\"\\xafQ\\xf6L\\xbf\\x80\\x80\\xea\\xab-\\xd4 ?\\xd8\\x05\\xf8h\\xdc\\x95i?\\xc0\\xc5\\xb5\\x00g\\x88S?\\xfa\\xca\\xccq\\xb98{?\\x98\\xf7x\\xaa2io\\xbf\\\\\\x14\\x936\\xda\\x85a?\\x03!\\x03\\xc0\\xe9+v?\\x90\\x9d\\x0c\\x99\\xc8\\xb8\\\\?\\x00PW\\xddY\\x15R?\\xddB\\xe9\\xf9\\xf6Er\\xbf\\xc0#\\xdb\\r\\xb9\\xd4<?7!t\\x08r\\x97x?q\\x99\\x90)\\xfd\\xe3s\\xbf(\\xb3\\x11\\x94-\\xa0k\\xbf6|&\\xdb\\xc8\\xc2j\\xbf\\x00\\x95\\xa9$\\xee\\xa0#\\xbf\\x14\\xb4\\x18\\xe2\\t\\x0ca?\\xd8\\\\b\\x9f\\xff}`?\\xe0\\xae!\\xf7x\\xbc?\\xbfp|\\x19\\xddW\\x96L\\xbf\\xacHUg!\\xcfj\\xbf\\xc2\\x8f\\xdd\\xbc\\xd6\\xca_?\\x84\\xea\\x86\\xd3h\\xdbP?\\x1e\\xfbdi\\xdb\\xe4\\\\?\\x9d<@\\xc5\\xa5\\x10\\x92?\\x90\\x92\\xab\\x1e\\x9f\\na\\xbf}\\x84\\x17J\\xab\\xa5V?A\\x95\\xfb{v\\x8c]\\xbf@x\\xbb\\xb7\\xc8jX?\\xfe\\x04d\\xd0\\x0fM,?\\xf8\\xad\\x1b\\xfe_\\xf3^\\xbf\\xcf\\x1f\\xd2J\\xeb\\x9ft?B\\xbco\\x9b\\xaeqW\\xbfCX\\xeb\\xfe;\\xb5\\x84\\xbfV4\\xb1\\x07\\x0b\\xbcI?V^\\xe6\\xb3\\xe0\\xb93?\\xbd\\x16\\xd6Q[$`\\xbf\\\\\\xc1\\x98cc\\xe61\\xbf_\\xc6 \\xe6\\xd2\\x03]\\xbf\\xbeVkmg\\xdb^?\\xc8}\\x08\\xbe2\\xd2B?\\x98\\x88\\xfaweY\\\\\\xbf\\n!tf\\xc4)K\\xbf\\xaca\\x8d\\xe5>\\xc7Q?\\xe2\\xcc\\x05\\xdf*\\xcaQ?2)\\x84\\x0fv\\x00g?\\xc0 \\xc8\\x83\\xd5+6\\xbf\\xd27\\xb2\\xbd\\x13^=?\\x80\\xc3\\xc0\\xf2\\xaa\\xd9L?\\xec\\xab\\x17\\xc0\\xd4\\xd5L\\xbf\\xac\\xeb\\x08\\xfd\\xc3\\xe8E?@\\x8f\\xeeHVH9\\xbf\\t_B`\\x18|`\\xbf\\x88\\x05\\r\\xfb\\xe5\\x17X\\xbfJ\\x80\\xb9ma;^\\xbf\\xaa\\x00\\xf3x\\xc9\\xdeb?\\x9e.\\xa8A\\xa6JP?\\xed\\xc7L\\xec)\\x1fm?gu\\x82D<F\\\\?\\xa8\\xc7c2\\x96\\x10R\\xbf\\x1eo\\xf1@\\xfa\\x0b`?(\\x89y\\xeb\\xb2\\xe1K\\xbf\\xd0\\xdb\\xd4\\xdb\\rMX\\xbf\\x0cA\\x8b\\x94\\xed\\xdeq\\xbf\\x86\\x9a\\xc7\\xd0\\xc8R_?\\xe8s`\\xdd\\x8f\\x83 \\xbf\\x98\\x16\\x13]\\x8f\\x0ec\\xbf\\xf4\\xc1\\x8e\\xf1\\x005\\x7f?\\xb0E\\xf30\\x94\\xbaP\\xbf@\\xdf\\xad\\x08\\xfd\\x8bC\\xbf\\xf8tW\\x88Q\\x1fW\\xbf\\xf0o5\\x04\\x9c4[?\\xce\\xde\\xe6\\xe7\\x94Oz?\\xe4\\x085t\\xee;f\\xbf\\xa2+3\\\\\\xbb Y?\\xb4\\xd53mX\\xf9v?R\\x96!\\xb7\\xd4~g?\\x84\\x7f8\\xc7D!@\\xbf\\x10L\\xef\\xe0Q\\xbef\\xbf8\\xa9\\x88\\x18[(S\\xbf\\x12\\xcc\\x1eA\\xdb\\x16e\\xbf4\\xda\\xe2R\\xd2\\xd77\\xbf \"\\xd4\\xbfq\\r\\x14\\xbfH\\t:\\xe6\\xb6\\xe5:\\xbf\\xc2P\\x98\\x86\\xf9_i\\xbf\\xf6_\\xa7J\\x11\\x03f?\\x04\\xe7.\\xcd\\x06\\xa3`?P)\\x98wXq$\\xbfj+\\x1a\\xf1\\x14ea\\xbfD!2\\x0e\\x90-i\\xbf\\x9e\\xd6\\tBc\\xe4Z\\xbf6\\x18\\x06\\x9c\\xa9\\x06[\\xbf\\xd0\\xd5\\x93\\xc6\\x17\\xbfI\\xbf\\x90\\x92\\xab\\x1e\\x9f\\na\\xbf\\xfcp\\xcf\\x0eE\\xcch?\\xec\\xe0\\xdf\\x81\\xbb\\x9fQ?tx\\x9d\\n\\xef\\x04J\\xbf\\x00\\x13\\\\\\xfaM\\xcb\\x1c?\\x91\\x8fQ\\x1e_x,\\xbf\\xf4n\\x85C\\x1b\\xa5U?\\xafP\\x08\\r\\x8c\\x94g\\xbfHH\\x98\\xe5\\x9aEI?\\xd0\\x81\\xdb\\xb3\\x0c\\x8b4\\xbf\\xe5\\xedW_\\x81\\xebh?J\\x02\\xa0\\xfd\\x13\\xa6E\\xbf\\xd2Rv\\x18\\xf0\\x0bP?`i\\xb9\\xbbBC\\x11\\xbf\\xb4y\\x84\\xda\\x0c\\xfbA?\\x0c\\x12\\xc9TLE0?\\xc0\\xed\\xd6P\\xefH;\\xbf\\x90`\\xdf\\r~UB?\\xe0\\r\\xdd\\x96m\\x9b\\x10?h@l\\xce\\x96RK?\\xc2\\x1f._#qW\\xbf\\x01\\xb1q\\xfd\\xa6\\x11Y\\xbf\\xd0H\\xecB\\xc5\\xb95?9\\x00QJ\\x02\\x0b:\\xbf\\x90p\\xe3\\x9b\\x9b\\xecK\\xbf\\xc0\\x9e<\\r=\\xa07?(\\x9dD9\\xdf\\x8cA\\xbf\\x06\\x8d\\xa0\\x00R\\\\T?\\\\1\\xbb\\x9a\\x16-A\\xbf&?\\x16M\\x16!b?#\\x85\\xf0\\xbf\\x08}@?\\xb0\\xddF\\xa7J\\xaaf\\xbfH\\x03\\x93\\xb5\\xa4\\xb36\\xbf\\x81\\xfa\\x835P$Z\\xbf\\xda\\x85\\xc2p\\x8e\\xa1d?\\x80\\xee\\xedPt\\xe28\\xbf\\xd0F1\\xc1\\x93`Q\\xbf\\xa0Vo[\\x89<`\\xbf\\xa0\\x0c\\xa1#\\x19-U?\\xa0N\\xb8\\x08@\\xe58?\\x8e\\xfdr\\x1d\\xac\\xd8V\\xbf&2\\xc0X\\xed0C?\\x18\\xa6\\x98\\xd2\\xf1\\te?\\x00;\\xacK\\xb3\\xdd+\\xbf\\x80\\x19\\xe0L{fO?@\\r\\xa2\\xca\\xde\\xfe]?0\"\\x8a\"22Y\\xbf\\x00E\\xbc&\\x8e\\x0cZ\\xbf\\xc0b\\xff\\xa0LG \\xbf\\xe0\\xfb\\xf6\\xdf\\x87\\xefN\\xbf\\xf0\\x1f\\xf5b\\xe9[T?\\x1b\\xf2=\\xd4\\xe6\\x86S?\\xe8\\xb1\\xe3\\xae\\xdd [?\\x80re\\xf7\\x80\\xb9\\x12\\xbf\\xe3\\x188\\xb8\\x9d3i?\\x14P\\x8fA\\xfe\\xe7U\\xbf\\xa8\\xeb\\x82#q]Q\\xbf\\x98\\x82\\x03h,\\xb1b?\\xaa1\\xd1B\\xaecY?\\xd4`,\\x88t\\x16K?@\\x0532J\\xa9`?\\x8c\\x8a\\x7f\\x8a\\x1d\\xceL\\xbf@\\xf2@\\xe2\\xed\\x87\\'\\xbf\\x9c\\xa8\\x99\\xcc\\xba\\xcaR?\\x08\\xae\\x03)\\xa6 E?`\\x03\\xdc\\xbb!\\x80I?^W\\xd0\\r\\xedDi\\xbf\\xa8j\\xa6W]\\x9bZ\\xbf~w\\x86\\xd6\\xebZi\\xbf}\\x84\\x17J\\xab\\xa5V?\\xec\\xe0\\xdf\\x81\\xbb\\x9fQ?\\x93c\\xe0)SOy?\\x1at\\x81\\x8dnEU\\xbf\\xee\\xd0\\x7fc!\\x90V?\\xa4\\x99U\\xd77SF\\xbf\\xb7\\xff\\xe1SZ\\x99v?^yCN\\xdb\\tP\\xbf\\\\%T\\x8d\\xa9cI?\\xe0\\x03\\xbf\\xc4\\xafHg\\xbf\\xe8eQ\\xcd\\x078X?K<%\\x85\\x8b\\x02V\\xbf\\x86\\x94\\x04\\xae\\x19\\x0bb?}\\x8f\\x99\\xce\\x12\\xdbE\\xbf\\x9e\\x96\\xd5\\xe3\\xff\\x93P?H\\xe0.\\xdd\\xc7x-\\xbfD32\\x99\\x8c\\xbdR?(\\xebl{\\xcd\\xceD?|\\xb7\\x8dI\\x9b\\xe1`\\xbf\\x96\\xe5\\xe9\\x16\\xd8bb\\xbf\\xf2=f\\x0b~jg\\xbf\\x1b`vA\\xc8\\xdee\\xbf\\xb1s\"l\\xc3\\x97M?&$1\\xf11{\\x1a\\xbf\\x00v\\x86\\xf5\\x18I\\xe4>\\x80\\x07\\xba\\xf6\\xec\\xa5B\\xbf\\xe8\\x05\\xcb\\x13\\t\\xbbA\\xbf)\\x83\\xf7}X\\x83g?b\\x11\\xa1\\xe9\\xe3\\xc5Z?\\xd3\\xcdJ~J\\xcfV?$g\\xa2GWy5\\xbf\\x0b.\\x05D\\xbe\\xfeZ\\xbfL\\xc6_q-\\x84Y\\xbf\\x96\\xfab\\x9a\\xec\\x8ed\\xbf<<U\\xf4\\xad\\x8a`?\\xa0\\xea\\xb7F4\\xdbD?;\\x13\\xd8\\xaa\\xbb\\xc0_\\xbf\\x98t}\\xd2w\\xffC\\xbf\\x00=\\x98~\\xd1VT?Zj4\\xcc\\xe8\\x16q\\xbfr \\xfa\\xbd\\xcb\\xbaV\\xbf\\x80\\x015YV\\xa7P?d\\xde\\xbc\\x9ds\\xcfi?d\\xd4h\\xa06\\x18g?\\xc0 Vu\\x80t\\\\?\\x80\\x17\\x01c\\xad\\xea_?.\\xdalr2\\xebr\\xbf\\x10V\\xd4\\xc0\\xbd\\x1a`\\xbf\\x8ay\\xe3\\xebn\\x7fl\\xbf\\xc8\\x86%\\xa3\\xd0pc?\\xc8\\xb8\\xc4&\\xc6$D\\xbf\\x84\\xcd\\x90\\xdc\\x97UM\\xbf\\x00\\xcf\\xb8]\\x0bV\\x07\\xbf\\x98\"I\\x83g?3\\xbf\\x8eCi\\x9d\\xe4\\xa3t?8\\xe7Q\\x19\\x13\\xb8A?3\\x08\\xe8\\xa8\\x03\"p\\xbf\\x8c\\xce\\x84&BXt?\\xf0<\\xeb\\x040\\xfab?E\\x19\\x93R\\xcaOb? \\n\\xbd\\xa3\\x06\\xb1<?\\x10\\xd8\\x95l\\xbe\\x92c\\xbf\\x94K\\xea\\xcc\\xc6Ad\\xbfTaF\\xb7\\x95\\x1cQ?\\x945@b\\r\\x18T?\\x86\\xf7>g\\x8bsj?\\xb2\\xaa\\xf2x\\xd9}d\\xbf\\x80Z96\\x7f\"A\\xbf\\xc6\\xc93[\\x15hP?A\\x95\\xfb{v\\x8c]\\xbfpx\\x9d\\n\\xef\\x04J\\xbf\\x1at\\x81\\x8dnEU\\xbfL/\\x8b\\xd9u!}?\\xc0\\xc9\\xa3t\\xbf:\"\\xbf\\xe0.*B\\x18\\x8a1?@n\\x92\\xacE\\xf7p?\\x96\\n\\x00e&\\xc9D?\\xce\\xa2\\xdb\\xd4}\\xeb`\\xbf\\x9c\\xff\\xc9\\x7f\\x07xp?\\xabk\\xa9\\x19\\xda\\xd6`\\xbf\\x98\\xb5\\xc1)5\\xbbP?\\xec\\xc1\\xc9\\x0f}=T\\xbf\\xb8\\x07\\xa4\\xec\\xcb\\xf69\\xbf\\xa0 o,\\xc9\\xdbE\\xbf\\x8b\\x80\\xbe\\xd6\\x1d\\x04U\\xbf|u\\x19\\x865\\x13W\\xbf\\xcc2\\xec\\x80z\\x054?nH\\xf2/\\xb6*T\\xbf\\x00A\\x14H\\xd1\\xe5\\xf7\\xbe4\\xcdm\\x93;sI?\\xf1cWR\\x16\\xa1a?u\\xa7?\\x91\\xcb\\xdfF\\xbf\\xc7p\\x1c\\xf0\\x9e\\x07G?P\\x9c\\xb8\\xcf\\x94j>?\\x10\\x01\\xce\\xf2\\xfa\\x939?0%\\x136\\x13\\t;?f\\x1dPS7\\xc6X\\xbf\\xfc\\xd7\\x87\\xfb0\\x015?c\\x15\\x14\\xce!Gj\\xbfbq]JM\\x06D\\xbf\\xd8\\x8b\\x17\\xcb\\xd0\\xe8Z?\\x10\\xcd?\\xf0b\\xc0 ?\\xd4\\xd4Q\\x9fl\\xe0\\\\?r{\\xa7\\x9c\\x01uz\\xbf\\x00PzF\\x08\\xdf\\xdd\\xbe\\xd3\\xf8\\xff\\x91\\xa5\\xe2N?\\xcdl\\xaa4\\xf34s?\\xa0\\xeb\\xda\\x01vG]\\xbfd\\xd5hp\\xe07]?\\x8ax\\xa1\\xf4XqP?\\x0b\\xe0A\\xd4B\\x9cD?\\xa6d\\x1c\\xb3\\x8b%u\\xbf\\xbch\\xcbN\\xbb\\xabd\\xbf\\x00\\xcc\\xc0s\\xff\\x9a.\\xbfD\\x88x\\xf43\\x85l\\xbfh\\xb6uv\\x04\\xbfm?@s\\xa5\\xb2A\\x86V?\\\\\\xfb>\\x828\\xbek\\xbf\\xb0\\xfa\\xa5Q2\\xe8e\\xbf (\\xa4A!p\\x10?}\\x00o\\x93\\xc5~m\\xbf@|z\\xb8\\'Lf?\\x9a9h\\xe5\\xa5Xb\\xbf\\x12`\\x0b^\\x98\\xa3{\\xbf\\xfdV#\\x8d\\xce\\xa2`?\\xbe\\x9b\\x10\\x9f\\xb1Pl?vzv\\xa2\\xf5\\xaeu\\xbf\\xfa\\xe5~\\x18[\\xf4T\\xbf\\xd4l\\x85\\xa0\\xd3\\xa8S\\xbf\\x00\\xe6+\\x1a\\x00T%\\xbf\\xe4\\x83FZ!gV?\\x00\\x92\\x81\\xe2\\xf9y\\'?\\xe0\\xc0\\x85\\xb1Z\\x813\\xbfx,\\xbe\\xf1[\\x02I\\xbf\\xa8CUc\\xb6\\xf4Y\\xbf\\xf7\\x12\\x14\\xde\\xcb\\x92t\\xbf\\xbbi\\xcb\\xcc\\xeb\\xc5a\\xbf\\xc9\\xa7{\\'\\x10\\xd9_\\xbf@x\\xbb\\xb7\\xc8jX?\\xf0\\x12\\\\\\xfaM\\xcb\\x1c?\\xee\\xd0\\x7fc!\\x90V?\\xc0\\xc9\\xa3t\\xbf:\"\\xbf\\xc3\\x8d\\x85\\x0f\\xf5\\xb7h?2K\\xee\\x88;\\xa06\\xbf\\x9d\\x92\\xd4\\xd9\\xa7\\x1ds?\\xec5\\xbc\\x9e\\x19\\xec:\\xbf\\x1c\\xda\\xc6\\xe2\\xe7\\xfb&\\xbfR\\x16Y\\xa8g\\x9cH\\xbf#\\xd6]F\\x9dA1?^.c5\\xbe\\xffN\\xbf\\x105\\'\\xf9;\\x15h?\\xbcN\\x93v*\\x84&\\xbf\\xc4\\x1d[\\xae\\x0bQ,?`Z\\x99W\\xb7\\xaa\\xf8>\\xb0\\xbd[\\xb7\\xfaw>\\xbf\\x14\\xa3\\x1d\\x95\\n\\x04G?\\nX@N\\x1fxA\\xbfp\\xe8\\xb3#\\xc2\\xf5H\\xbf\\xe9\\x020\\xad\\xfb<P\\xbf1\\xca\\x96e->R\\xbf\\x12Nhy\\x06MQ?\\x90+\\xb6\\xe1Fl\\xe9\\xbe0N{_A\\xd8$?\\x90e\\xae\\n1\\x9d4?\\xe0C\\x06\\xa9\\x03\\xb5?\\xbfpu\\xe5J\\xb7\\xc0L?(\\xa8!\\xc3\\xc9\\xc0N?\\xd2\\x0c\\xa2\\xef\\xc6uE?\\xcd\\xd2\\xc1\\xac\\x9e;S?V\\xcf\\x0ck\\x88\\xbc_?\\x14\\xd8\\\\\\xd8\\x11\\x87Z\\xbf\\x948\\x8b\\x8a\\x01\\xdfS\\xbf\\x10\\xa4\\x8f\\xea\\xc5\\xddP\\xbf\\x90\\x06bw\\xd9\\xc6N?\\xb8\\x14\\xc9d\\x89\\xd4\\x17?\\x97\\xa4.K\\x02\\x98c?@\\n\\xa0@\\xae\\x12!?[&\\x11\\t\\x0c\\x82c\\xbf\\x12D\\x07\\xae\\xc0\\xba;?\\xac\\x86\\xb6\\x03k{2?@\\xbb\\xe7m4\\xef\\x10? \\x81\\xe0\\x8c\\x12\\xbe+?\\xc0-\\xfc\"\\xa4\\x830?8\\xeb\\x0e\\x1a\\x82\\xa3K\\xbf k}\\xf7\\xac\\xa4,\\xbf\\x80O\\x85\\x7f1\\x9eJ\\xbfy6E\\xe8G\\xeel\\xbfD\\xa4*\\xb0\\x13\\x90a?v\\xfa\\xfa\\x8d\\x18\\xfcC\\xbf\\xa2\\xce\\xaa\\xbf)\\xedf\\xbf\\x10\\x15-\\xa2\\xccm0?t\\x99\\xe4\\xac:\\xf0J\\xbf\\x10\\x7f^\\xac\\xb7\\xacU?\\xb8\\x13$^\\xe9\\xe98\\xbf\\x99\\xd2\\xab\\xd20\\xd4h\\xbf\\xf2\\xb9\\xb7\\xd6p\\x82\\\\?\\x18\\x84\\x0c\\xe6mg_?\\xecM\"\\xdb\\xca\\xcfR?0\\x82E\\xe2\\xc6\\xd3C?\\xcc0\\x849\\xc2\\x11H\\xbf\\xb0$N\\xef\\xa8\\x94G\\xbf\\xd80\\xbeR\\xf1>6?\\xc0)\\x95\\x8b\\x90\\xf7.?\\xfcU0\\xadL$U?\\x05\\xa6I\\xa9\\xef\\x1eN?\\xc0 b*\\xd9\\xb9@?\\x7f\\x08\\x81z\\x06T9?\\xfb\\x04d\\xd0\\x0fM,?\\x91\\x8fQ\\x1e_x,\\xbf\\xa3\\x99U\\xd77SF\\xbf\\xe0.*B\\x18\\x8a1?2K\\xee\\x88;\\xa06\\xbf!j\\x10\\x97\\x07\\xd2Y?*\\xaf\\xb7u\\xcb\\xdbL\\xbf\\xbcY\\xdcrh\\xcd=?\\x0bEA\\xd4\\xc7\\xd7\\x1b\\xbfV\\xb6\\xea\\x1f3I\\x1a\\xbf\\xb6\\x13:f9\\xac2\\xbfz,!L\\xc8\\xa8,?--\\xfb\\x83\\x95\\x9aN\\xbf\\x9d\\xb3dQP\\xd0!?;^\\xe4p\\x8c\\xfd1\\xbf\\x1f\\x83\\xa2\\x90l\\xf9!?\\x08\\x01\\xc7h\\xe6\\xb3\\x19?\\xe6ew\\xcc%J3\\xbf$\\\\\\xa9\\x1eb\\x1c\\x1d?\\xf6>\\xc7kts;?\\x14\\'&\\xa0\\x0f\\x0f5?\\xa1\\xfa\\xed\\x8f.\\'D?\\x81\\xc4\\x8aY\\x19\\x02\\x1b\\xbf\\xed\\x93/\\xb8\\x96\\xaa ?f\\xf5\"YE\\xee1\\xbf\\r\\x8b\\x88\\'\\x04\\x19)\\xbf\\x14nb\\\\\\xc1\\x017?=\\xff\\x8a\\xf8\\xf7?2\\xbf\\x87\\xe0\\xa6\\xf5\\x12\\x98B\\xbfwza\\xc7\\xb8\\xa5\\x1c\\xbf\\xad\\xebs\\xc5Q\\xd11?\\xee\\xab\\x7f\\x0c\\x87\\x96T? \\xd5(\\xbdj\\x9a\\xfa\\xbe;\\xecM}\\x10\\xe2>?R]\\xba\\xda\\x8d0\\x1d\\xbf\\x00\\x1b\\x0e\\xea\\x8c\\x9c\\xd0>\\xa4\\x8a \\xb0\\x98\\xa8=?;\\x7f\\xe9\\xd7_r&\\xbf/\\xa5\\x18\\xfc]\\xd6F\\xbf\\x90b\\xb9\\xfa\\xce\\xc6D?\\xbd0\\xb9\\xbfiO^?L\\x87y\\x0f\\xec\\xb0B\\xbf\\xfa\\x92\\xa0\\xc2<\\x931\\xbf\\xb0x)6\\xed\\x87\\x1d\\xbf@\\xd9gR9\\xd6L\\xbf\\xad\\x03\\x9a4r3:\\xbf\\xdb\\x9crl\\xd5-G?\\x98\\xd8\\xf1\\x82=\\xc0A?\\x06\\xb9\\xf1\\x1f\\x90\\x00S?%yK-\\xa4\\x8eF\\xbf\\xafm&\\xfe\\xe7v1?$yf\\xb7,\\xd0 ?\\xc0\\xfdP\\xd9\\xc3\\x9a\\x18\\xbf\\xc3\\xea\\xc9r\\xc0\\xe8+?\\x96\\x17{\\xf7:aU\\xbf\\xd8\\xde\\x83fJ\\xe5\\x0b\\xbf\\xa8\\x03\\xdc\\x9f\\x10\\xa8G?\\xc8\\xa4TR\\xbe\\xd7X\\xbfh\\xb4\\x97\\xd0n\\xd09\\xbf\\xdc\\xaa\\xf0\\xd6q\\xc3,\\xbfHN\\xf9\\xffm\\xe59\\xbfcf\\x1e\\xd7$\\xb06?\\xc0\\xfa\\xdb\\xa7}k\\x18?b\\xe7K>\\xcc\\xee5\\xbfv\\xe7\\x1b\\xb4\\xfcm*\\xbf\\xe1y\\xff[\\xa5\\x91:\\xbf@\\xf9\"\\xe0\\x9b\\xab\\x93\\xbf\\x98T\\x0bdl\\x9b\\x81\\xbf\\xf6m\\xd4Fc\\x99t\\xbf\\xf8\\xad\\x1b\\xfe_\\xf3^\\xbf\\xf5n\\x85C\\x1b\\xa5U?\\xb8\\xff\\xe1SZ\\x99v?@n\\x92\\xacE\\xf7p?\\x9d\\x92\\xd4\\xd9\\xa7\\x1ds?*\\xaf\\xb7u\\xcb\\xdbL\\xbf\\xde\\x11\\xe1Vc\\xce\\xa9?\\xa67O9*1D\\xbf\\x88\\x19\\x91\\xb2A\\x8d\\x7f\\xbf\\xee\\x0e\\x0e\\xf2_\\xd1p?\\xc8\\x01\\xac\\xcdL\\xa3H\\xbf\\x0c\\'4\\x13\\xfa&)\\xbfl:\\xbb\\x85\\x84\\xb8\\x83?X\\xd0\\xf6Vm\\x82P\\xbfH\\xab]?y*O?C\\x9aaM=\\xc2A\\xbf\\xc1>3\\xe4\\x19\\xf3m\\xbfP\\x987\\x1d\\xe1Sh\\xbf\\x9e\\xb3jf\\xe1\\xf8l\\xbf\\x15p\\xd7]fit\\xbf\\xad\\x0c\\xaa\\x98\\xae\\x16r\\xbf\\xd0\\xd4\\x8bUb\\xdf*?\\xa1<\\xfa\\xeaE\\xf1U?t%\\xcd@\\xbb\\xa0B?}\\x99\\x19\\xad\\xf0\\xd0}\\xbfp\\x8b`\\x89\\xd3\\x86Z?\\xb1i/iQ\\xbat?\\x08\\xaez\\x06\\xfe\\x80_\\xbfN\\x83\\xf3\\xb5\\x1f\\xb2y?[y\\xd4MX\\x07t\\xbfDm\\x82\\xfe\\xaf\\xafX?\\x85:>6\\x80\\xeb\\x82?\\xbe\\x84\\x92\\x92d\\xa9i\\xbf\\x81\\x91\\xdag\\x99HC\\xbf\\xc2(&J5\\x9c\\x7f\\xbfP\\xf3aY\\xcf6l?\\xae\\xf9{/g\\x84<?\\xdf\\xc8\\x8c\\xb6\\xd4\\x87\\x83?\\x80\\x80\\x8bC:l@\\xbf\\x19J\\\\\\xff[\\x92r\\xbf\\x8e\\xff\\x1a&\\xaa\\xb6Q?\\xd6\\x9fA\\xa5|zP?\\x86\\xc4N\\xe2<\\xf6~\\xbf\\x0c\\xda\\xdc\\xa9\\xb3\\x7fV\\xbfP\\xcf\\xbd,\\xa2\\xb3`?\\xca&\\xc8\\x14\\x96\\x99v\\xbfhN\\xe6c\\x80\\xccF\\xbf\\xf8K\\xf2\\x18\\xe0Of\\xbf7X\\xac\\x1f\\\\q\\x88\\xbfT\\xcb\\x80\\xd3\\xca}P\\xbfz\\xc6-\\x19?\\xb6b\\xbf\\x861\\xfc\\x15\\x8d~\\x7f\\xbfE\\x90g\\x92\\xb4\\xee}?\\xdc\\xcf\"\\xb1v\\xa4q\\xbf`[\\xa5F\\xf0\\xf87?@\\xdbZ\\x13\\xa0GP\\xbf`*\\x06>V\\xe9\\x80\\xbf\\xf0\\xf5\\xad\\xabV\\xc6}?\\xd8\\x96\\xdcn\\x88*u?<z\\xb9<MXa?\\xb0\\x1d\\xae\\x90\\xdc\\x13f? G\\xe0\\x8f\\xd7\\xa3\\x18\\xbf\\xe8=\\x9f\\x9c\\xdb{F\\xbf\\xe2\\xec@F\\xdffc?\\\\\\xee\\xeb\\x97\\x1a\\xb4C\\xbfPy\\x972\\n\\x98d?\\xdb\\x83E\\xbc\\n\\xaf:?t^\\xa9\\x95sZs?\\xc5\\xc6\\xf0\\xd7\\xbc\\xefi?\\xce\\x1f\\xd2J\\xeb\\x9ft?\\xafP\\x08\\r\\x8c\\x94g\\xbf^yCN\\xdb\\tP\\xbf\\x96\\n\\x00e&\\xc9D?\\xf45\\xbc\\x9e\\x19\\xec:\\xbf\\xbcY\\xdcrh\\xcd=?\\xa07O9*1D\\xbf\\x98\\xd5\\xda\\x83q\\x18\\x8b?\\x85\\x86\\r\\xc7\\x0f6U\\xbf`\\xfe\\xf7p\\xc68a\\xbfF\\xf3\\xcd?\\xbd\\x85s\\xbf\\x05H\\x84\\xee\\x84\\xf1S?p\\xf5\\x11i\\xcb\\xabe\\xbf\\xd4\\x91;\\xc5\\xd9\\x005\\xbf\\xf6\\xbdv\\x98\\x96\\xacN\\xbf\\x8c\\xd1P\\x0cK\\xbb5?)w;\\x93\\x03\\xcdg?n\\x00\\xd0\\x18\\xf6lR\\xbf\\x00\\x1a\\x11\\xda?&&\\xbf`j,\\xf5H,\"\\xbf\\x9c\\xac\\xa0\\x05\\xe7\\x8c[?J,\\x05~\\x93\\x82g?t\\xbc\\xcf%o\\xf6L\\xbf\\xbcE\\x05\\xfc\\x8a\\x83H?\\xbc\\x9abRq\\xa6^?\\x18;\\x8c\\xbb\\xc6\\tC\\xbf\\x94\\xc9\\xedb\\x18\\x0cV?d&\\x9a\\xa31\\xeaO\\xbf\\xb0\\x1f3\\xe5\\x8dwL\\xbf\\x03\\x00s\\xa2\\xd4\\x0cb\\xbf\\x93\\x1e\\x9b\\xa5D\\xaaV?nYl\\xe6\\x06\\xafe?&\\x12\\xeb\\x8e\\\\\\x99X?\\x1fP\\xc8y\\xbd\\xd0k?\\xf0%\\x1c\\xba\\xe4\\xe4p\\xbf \\xad\\x1f^\\xc8\\xddY?\\xe8\\xcc_$\\xc4\\x12[?Q\\x8c|N*\\xadn?@&zv\\\\Jn\\xbf\\xa4L\\x9a-,\\x02V\\xbf\\xb0 \\x00\\xf1\\xa0!!?8\\x1d\\xd5\\x84\\xa4$P\\xbf(\\xc1\\xf7\\r\\xb6-n\\xbf\\x00\\x0c\\xc80N)\\'\\xbf@22j\\xd5\\x12m\\xbfL\\tIn\\xfd\\xb6g\\xbf9@sD\\xb9Hr?X\\x9bATz\\xeap?,\\x17\\xfb\\x06E\\xd1W?\\xf09\\x7f\\xedL\\x8d_?\\x00+\\x17\\xef\\xc7\\xf2W\\xbf\\'vH\\xad\\xe2\\xabH\\xbf(\\xcd9\\xbe\\xf2\\xa3b\\xbf|\\'\\x9f\\xc2\\xe5\\xcdN?\\n\\x03\\x10B\\x87\\xddw\\xbf\\xa0\\x90\\xe0\\x9dv%]?\\xc4\\x1f\\xbe;\\xfd\\xf4F?+\\xb0\\x12\\x12a0y\\xbf\\xbd\\xc0\\xe7\\xe5\\x80pe\\xbfL}$sb\\xdeW\\xbf.\\x1c\\x00\\x0b\\xac\\xecs\\xbf\\xa6\\xcd\\x03q\\x15K`?\\x00\"!c\\xcf\\xf0\\x1d?\\xe2jJ\\xac\\xd0\\xc2e\\xbf\\xf0\\xdb\\x89\\x93s\\x1a^\\xbf\\x90!:e\\xd6\\xd8Y\\xbfdSb$PqV?\\xa0B\\x89\\xcb\\xd9\\xaaK?`\\xcc\\x17\\xf3\\xa1\\xb8<\\xbfA\\xbco\\x9b\\xaeqW\\xbfDH\\x98\\xe5\\x9aEI?d%T\\x8d\\xa9cI?\\xce\\xa2\\xdb\\xd4}\\xeb`\\xbf\\x1c\\xda\\xc6\\xe2\\xe7\\xfb&\\xbf\\x11EA\\xd4\\xc7\\xd7\\x1b\\xbf\\x88\\x19\\x91\\xb2A\\x8d\\x7f\\xbf\\x83\\x86\\r\\xc7\\x0f6U\\xbfY\\x8a\\x8dc6\\x03q?<M92\\x02}h\\xbfp2\\xcc\\xae\\n\\x97S?l,G\\xecjkW\\xbf\\x00\\xfa\\x8b\\x87e\\xb9\\xd3\\xbe\\x00\\xc7+\\x0b\\xb6\\xe8\\xe8\\xbe6\\xd5\\xbb\\xe3\\xc0*E?\\x16;\\xf7u\\xfa\\xf94?\\xa8\\xcf\\x83\\xac\\x8b\\xe4Q?\\xea\\x1c\\x0c\\xear\\x7fU?\\xecd\\xd0A\\xfa\\xc7@?\\xa0\\xe5N\\xc1{V4?\\xb4\\x84]\\xab\\xaf)T\\xbf\\xf0\\x07\\xc0\\x8e\\xe17d\\xbf\\x9e\\xbf\\x8e\\xd0\\xb3\\xabC?l\\xe5<k\\xf7\\xbd:\\xbf\\x98\\xb7\\t0\\x08\\xdfS?\\x80\\x06\\xfb\\x14\\x15)\\x16\\xbfe\\x87\\xa7\\xa9\\xdf\\xa2b\\xbf_6%\\x13\\x87\\xc6e?Ip\\x8bo\\xb6\\xc2T\\xbf@\\xe4X\\xb5U\\x85n?8\\xaa\\x8a\\x14~?T?c\\x196\\xca\\xd5\\x15p\\xbf\\x80\\x85hu\\x05NP\\xbfw\\x1b\\x13\\xed\\xf4/c\\xbf\\x94\\x9a]\\x86vRi?\\xc0\\xb6\\xfa*\\xdc\\xc9!?$A\\x06\\xb4VWX\\xbfuSSu\\xca\\xd4b\\xbf\\xf0:\\xaf\\xd5}\\xffJ?\\x846V\\xd5y\\x8d^\\xbf\\xdd4\\x02\\xd8\\x85r`\\xbf:\\xcdO\\xcb\\\\M.?\\x18q\\x96\\x7f*~s?\\x00y\\xfa\\xd9\\x85\\xaa\\x0e\\xbf\\x00 \\xc4\\xfe\\\\\\xe4\\xe4\\xbe\\xc2&F\\xa6\\xcf\\x8dd?\\x927\\x14\\x82\\x1b\\xb0a\\xbf\\xa0\\x8dS\\xe2\\xcc\\xc7A\\xbf\\x10c\\x97Z\\xeb\\x98>\\xbf8\\xa2\\xa9{}\\x8fj?P\\xdcD\\x925>8?\\xb0\\x83/\\xcf\\xb6_\\x04?0\\xf0\\xa8\\xb5u\\xebc\\xbf\\xe4\\x8e\\xa4\\x17\\x9a@O?\\x8f\\xd1\\xa0\\x9a&#p?@\\xa16\\xd8\\x82C2\\xbfo\\xcb\\x13\\x80\\xe2\\xa4S\\xbf\\x88\\xc82\\x0c=\\x06M?\\x82[\\xbc\\xe5\\xd4\\xa4L?\\xe5\\x8e2v#\\xc6T?hs\\x1a\\x0bd\\x94F?\\x9b5\\xec\\xd2.P_\\xbf\\x18\\xc4\\xf7\\xee\\xf5^Y\\xbf\\xd0\\xea\\xcf2\\x8b\\x12$?\\xec\\x113\\xad/\\xf0S?\\\\\\x96\\xc8\\xaf\\x88\\x90a?&\\x0c\\x8a\\x04\\x11\\xf2o\\xbf\\xe0+\\xa7\\x8f\\xf5\\x11f\\xbfL\\xb1\\x16\\x17?\\xedg\\xbfCX\\xeb\\xfe;\\xb5\\x84\\xbf\\xd0\\x81\\xdb\\xb3\\x0c\\x8b4\\xbf\\xe0\\x03\\xbf\\xc4\\xafHg\\xbf\\x9c\\xff\\xc9\\x7f\\x07xp?N\\x16Y\\xa8g\\x9cH\\xbf\\\\\\xb6\\xea\\x1f3I\\x1a\\xbf\\xee\\x0e\\x0e\\xf2_\\xd1p?`\\xfe\\xf7p\\xc68a\\xbf:M92\\x02}h\\xbf|\\x8d\\xa0\\xe3\\x9a\\x8b\\xa3?V\\xa9\\x1f\\xd8\\x9e\\xb6Y\\xbf:\\x01`ID\\xe7l?\\x08\\xf9OsX)N?P2\\\\\\xe5\\xadh5?\"s\\xf3\\x1en\\xd2P?\\x14>\\xd6\\xef\\xa6\\xd5g\\xbf\\xc0\\xd9\\xf4\\xbe\\xb5\\x03-\\xbf\\xe7\\x10n\\x83`ke?\\x88\\x8e\\t\\x80\\x06FK\\xbf =\\xf0\\x1e\\x99!D\\xbf\\xe4\\x81f\\n.\\xc5r?(\\'\\x9b\\xae9\\x90O?R\\xcd\\x1b\\xc9\\xcc\\xe2:\\xbf\\x80\\x1a\\xe5>7\\x8b\\x1a?\\xa0\\xc4\\xe2\\x85\\xfa4A\\xbf\\x80!\\xee\\xb0f\\xac\\x1c\\xbf,\\xaa\\x15b0rg?(\\xd8P\\xf7\\x9f\\xe2}\\xbf\\x10\\x0e\\xc7\\x93\\xc3\\xecx?\\xf6\\xb8\\xf5\\xde<\\x06~\\xbf\\xd5\\x0e\\xf9\\xf4\\xf3\\xbdk\\xbf\\x8e\\xe85\\xb5\\x94\\xadw?\\x90\\xd4M0x\\xbd^?~d\\x8d\\x10a\\x8a;\\xbfn\\xdd(\\x85\\xb0\\xcbp\\xbf\\xc0\\x01<\\x99]6B?\\x10\\xf7\\x84\\xe4\\xcf\\xda\\x13?\\xac\\xb5~t\\xd2\\'`?@\\x8a\\xcb\\x83\\x08\\x1aN?\\xd1\"\\xb1\\xfdM6\\x81?F\\xd4o\\x10J\\xecq?\\xba\\x8a\\xa7\\nmqS\\xbfL\\x1c\\xf4\\x02\\x80\\x00p\\xbf0{Ad\\xb1\\xeb\\\\\\xbf\\x80k9U|aU?`\\x9e\\xa6\\x16\\xd1\\xfc_\\xbf\\x18=\\xab\\xe8\\x10\\xbck?\\x00\\x17Y\\x94\\x14\\xf1X\\xbfx\\x1dk\\xd5\\xae\\xc0i\\xbf\\x10\\xa5t\\x89\\x82HQ\\xbf\\xe2\\xd1\\x0eg%\\x1ao\\xbfX\\xaa\\xb0\\x02\\'lu\\xbf\\xc0y\\xf5\\xd2\\x83sF\\xbf\\xa0\\xdfx\\xc4\\xd7\\xceA\\xbf\\x90?jx\\xa2\\xe8j\\xbf\\xb6cY.\\xe3\\xf4r?\\xaa\\x95\\xf2\\x84\\x03gr?\\x80{\\xd1N\\xc1\\xa0B?*\\xa2\\xb3\\xc8\\xde\\xe9e\\xbf\\xecF\\xbc\\x17\\x9d\\x8bV\\xbf\\x80LO\\x16\\xa7\\x97/?\\xf0GS(\\x13\\x89M\\xbf \\x16\\xaf@\\x0f\\x1aR\\xbf0\\xf8\\xec\\x92N\\xb1U\\xbf\\xa0\\xbb\\x87\\x81\\xef\\xc2D?\\x00L!6\\xda\\x85@?|\\xed\\xe5a\\x07jh\\xbfYhY\\x1b\\xd0\\x18b\\xbf\\x18\\x12\\xe2\\tQ\\x929?X4\\xb1\\x07\\x0b\\xbcI?\\xe5\\xedW_\\x81\\xebh?\\xe8eQ\\xcd\\x078X?\\xabk\\xa9\\x19\\xda\\xd6`\\xbf!\\xd6]F\\x9dA1?\\xb5\\x13:f9\\xac2\\xbf\\xc8\\x01\\xac\\xcdL\\xa3H\\xbfE\\xf3\\xcd?\\xbd\\x85s\\xbfp2\\xcc\\xae\\n\\x97S?V\\xa9\\x1f\\xd8\\x9e\\xb6Y\\xbfd\\x0b.\\xea\"b\\x86?cH\\xe6\\xff\\xe5\\xdaI\\xbf\\xa3/\\xe7>\\xab\\tQ\\xbfn\\xb4\\xadW1rB\\xbfs\\xaeZ\\xe0-\\xa1J?\\x00\\xact\\xb1\\xa4^R?t\\x14\\x08\\x00\\x89\\x1aD\\xbf\\x10\\xf9\\xbdHt,\\x13\\xbfB`\\rS\\x14Z:\\xbf\\xb8\\xcc\\xda\\xa3\\xbe\\xc8T?\\\\\\xdd\\x16=C\\x96Q?\\x10\\xecM\\xff\\x1f\\xdd]\\xbf\\x08}\\xcf\\x90\\x8a\\xcd+?\\x89\\xdb\\r\\x10\\xf1NM\\xbf?\\xd5\\xe1\\x03`[^\\xbf\\x18\\x9d\\x8f\\x86\\xf1K ?\\n\\xdas\\xaa\\xd4\\xfeD?\\x02fW\\xcd\\xe7\\xa9A?Th\\xd5\\xc7x\\xc7e?Pw\\xa4\\x948s[\\xbfw\\xa1\\xaa\\xb5=\\x7fq\\xbf*\\x95\\x96D\\xc8/w\\xbf$\\x99\\x11hW;Q?i\\xa1\\xda\\xaf\\xeb\\xe2f\\xbf\\x12\\xa4\\xa6\\xd1\\x18\\xc7y?,cT\\xb7t/d\\xbfvJ\\x15\\x08\\x12Vh\\xbf&\\x86|\\x13\\xee\\'z\\xbf\\nRe\\xaa\\xe0?p?.\\x05\\x1d\\x84@\\xbas?38\\x14}\\xba\\xc8`\\xbf\\x8e{\\t\\xbcu\\xd57?\"\\xfc#\\x0f\\xd5\\xc6u?0\\xed\\xa6\\xe9\\xb9\\xa9^?\\x08)\\xb7?k3h?)\\xcb\\xb4\\xea\\xb8\\x0eo?%\\x0cJ\\xd2n\\x13_\\xbf\\xba\\x11[\\xd0\\xe2\\xc5r\\xbf>\\x8f\\xcf\\xab~|n?\\xd0\\xc9\\xa3<_\\xfb:\\xbf\\x8c>\\xd6\\x19\\xb3\\xce1?\\xb2I\\x06!\\x7f(q?\\xd6_cM\\xbdbV?b\\\\\\xc8\\xb2`!Y?\\xe8y\\x95%\\xa1#z?K\\xf4G{\\xb7\\xf8Z?^\\x15FI\\x14I`?)\\xd7\\xdb\\xdeM\\x84\\x80?\\x14\\x00O@!\\x80U\\xbf\\x15>\\x8eQ\\x8cMC\\xbf5=\\xd0\\x922/l?f\\xc3\\xa5E3\\x18h\\xbfli\\xd0\\r\\xef\\xe4R\\xbf@\\xa5\\x02m\\xadR\\x01\\xbf\\xa6\\xd7\\xb76\\xd7\\xe8d?\\xc6n\\xbf\\xd3\\x0e-d?*h\\x03UX\\x19a?\\xc2\\xf5\\xb9\\x19\\x8cZJ?\\x1a\\x05\\xd3fpLX?V^\\xe6\\xb3\\xe0\\xb93?F\\x02\\xa0\\xfd\\x13\\xa6E\\xbfK<%\\x85\\x8b\\x02V\\xbf\\x98\\xb5\\xc1)5\\xbbP?^.c5\\xbe\\xffN\\xbfv,!L\\xc8\\xa8,?\\x0c\\'4\\x13\\xfa&)\\xbf\\x05H\\x84\\xee\\x84\\xf1S?l,G\\xecjkW\\xbf8\\x01`ID\\xe7l?cH\\xe6\\xff\\xe5\\xdaI\\xbfl\\x88e\\xea\\x01\\x07f?EI\\xe5\\xde5\\xc4Y\\xbf$\\xcc\\xde_\\x07F+?\\xa6m\\xde\\xfc\\x8bu@\\xbfT\\xa5\\x94{|\\xa0\\x1e\\xbf\\xe0\\x12\\x97\\xd7\\x81\\xc0\\'\\xbf\\xaag\\xb4T=\\xf4M\\xbf\\x80\\x8eB \\x9e\\x95\\xf9>\\xc0\\x16b\\xba\\x94~??\\x15\\x901\\\\*1[?*\\x8f\\x0b\\xec&\\xa1`?\\xd4\\xd4I\\x95\\x968M\\xbfV\\xc1Lp\\xdc/,?@\\xc9\\xfda\\x8a)7\\xbf@1mV\\xa7\\xaa\\x0f\\xbf@W\\x96i+6Z?\\xd8h\\xd7\\xb2\\x92\\x98a\\xbf\\xd4Z&\\x16\\xd9h;?g\\xca\\xf6\\xacC)e\\xbf\\x80A\\xe28\\xaa\\x12[\\xbf\\xee\\xa9\\xe4%\\xae\\xc9W?\\xe6H\"u\\x02\\xfb]?\\x85\\xac\\xf9ba\\x08`?\\xff\\x88\\xbe\\xf4x\\xa2Q\\xbf\\xd0\\x82\\x1b\\tE\\xddH\\xbf\\xd0s\\x92\\xbc\\x93ML?\\x808J\\x0ey\\r\\xf8>\\xc0j\\xf7\\x05\\xf4\\x864\\xbf:\\xed\\x15\\x88{.f?\\x14A?S<4K?\\x8bt \\x03\\x12\\xba=\\xbf\\x9c,\\xda\\xd3h\\xc2e\\xbf \\xe7;1\\xfc\\xaa0?\\x00\\x863b\\x8b\\x17\\r\\xbf\\xc0`\\x1b\\x9d\\xe3\\xfbN\\xbf\\xac=\\xe9\\x13R\\x9f]?\\xe0\\x9d\\x8a\\x96\\xa46B?T\\xcd\\xa79\\x0eJd?\\x80\\x86\\xb2\\x87\\x8f\\xa0g\\xbf\\xc0k\\xd4\\x8br\\xbb\\x12\\xbf\\xa6H\\x00\\xb2\\xba\\x19\\\\?\\x80&K\\x12\\xe6\\x8bR?\\x80\\x18\\xd3\\xed\\x17\\xc5\\x13?\\xf4^\\xbc\\xc5\\xd8\\xe2g\\xbfL\\xf6OG\\x8dYI?\\x90, m\\x19ue?\\xa0\\xccvO\\xb6\\xa2S\\xbf\\xeeW\\xa3\\x8a\\xbb\\n`\\xbf:\\x04\\x02M\\x91-[\\xbf\\xf8D\\xa9\\xb7\\x15SP\\xbf\\xe2\\x00\\x02Y qW?\\xd06\\xb8P\\x99\\xb9T?\\x94D\\xeak\\xf7\\x80C\\xbf\\x14\\x7f\\x86\\x03\\xdf}J\\xbf\\x84\\x9f\\x10\\xbbD\\x06_\\xbf\\xc9@\\xeb\\xa5\\xd7,x\\xbf\\x80<\\x9a\\xbc<\\nq\\xbf\\xdfVy\\xe7T~v\\xbf\\xbd\\x16\\xd6Q[$`\\xbf\\xd2Rv\\x18\\xf0\\x0bP?\\x86\\x94\\x04\\xae\\x19\\x0bb?\\xea\\xc1\\xc9\\x0f}=T\\xbf\\x105\\'\\xf9;\\x15h?+-\\xfb\\x83\\x95\\x9aN\\xbfl:\\xbb\\x85\\x84\\xb8\\x83?p\\xf5\\x11i\\xcb\\xabe\\xbf\\x00\\xfa\\x8b\\x87e\\xb9\\xd3\\xbe\\x08\\xf9OsX)N?\\xa4/\\xe7>\\xab\\tQ\\xbfEI\\xe5\\xde5\\xc4Y\\xbfx\\x8bls\\x85\\xc5\\x87?@\\x1eJ\\x18\\xf2E6\\xbf=by\\xac\\x82\\x17V?\\x0cg\\xeddX;N\\xbf\\xa0p\\t\\xea\\x1cF^\\xbf\\xb65\\xddG\\x95\\x17Y?@\\x8fkZ\\x93\\x1c\\x04\\xbf\\xb0\\xd5\\x8f\\xff6\"W\\xbf\\x95Y\\xeb\\x0b\\xb2\\t`\\xbfTJ\\t\\xbb}wf\\xbf\\x9d\\xed\\xdcDNB\\\\?\\x90\\x0fA\\xfc\\xee\\xde\\xfe>\\x00vQ\\xd8\\xadi ?\\xe8\\xc02!\\x94\\xb6d?8\\xb5D\\x1b\\x1d\\x06Y\\xbf \\xc9\\xc6\\xfc\\xe1kP?\\xf9Y\\xd6\\x7f\\xa6\\xa1a?R^c\\x95\\xeb&Y?\\xe5x\\xdb\\xa8\\xf6\\xadt?\\xe3\\xdf\\x9f\\xe7\\xc6\\xa0q?z\\x94\\xf5\\x0b\\xda\\xe2o\\xbf\\xe0\\x99\\xb3\\xd9\\xb0]`\\xbf\\x93\\xef~\\x9b\\xbd u\\xbf\\xe0vyv&kg?4\\xc8NzR\\xd6I?\\xeb\\x1e\\x8d3\\xcd\\x9e}?\\x00\\xf2\\xc5W\\xc7\\xe9\\x13?\\x88\\xa78\\'@\\xf6\\x81\\xbfqz\\x07\\xd8\\x9d\\x9c`\\xbf\\xfe\\x05\\xd8\\xe7b\\xa1H?\\x10z\\xac:\\xee\\xa6\\\\\\xbfP\\xebuy\\x15\\xaa_\\xbf@\\xaa_^\\x1e1H?\\xa4\\x93\\x94\\xa2\\x9eHa\\xbf8\\xaf.E\\xf2\\xfdV\\xbf@\\x9ff\\x0c^gN\\xbfL\\x87\\xedrP\\xe2\\x82\\xbfH\\xa2b\\xf8\\xb6\\x97d?z\\x92\\x06\\x12\\xab7Z\\xbf\\xef\\xd8g\\xf9\\xea\\x89y\\xbf\\x00\\xab\\x81\\x84\\x1b\\x02[?<k\\x17\\xcb \\x94c\\xbf^\\x95\\x01?_[t?\\xf0j~\\x04y\\xe1]\\xbf\\x99n\\xbd\\xbe\\xa6\\xa9\\x81\\xbf+\\xdb\\xf6(Yvu?\\x1b_>%~\\x9ar?\\xf8\\xa6Z\\xcaI6m?`G_\\xffH\\xa86\\xbf\\xf80\\xcexR|T\\xbf \\x15\\xabm\\\\0V\\xbf\\x00\\x82\\xd1@$\\x01%?\\x00\\xf8ah/\\xd1\\xd7> \\x04/\\xe9\\xd5\\xc5k?\\x01x\\xfc\\xe3\\xb6\\xb2R?`\\x19*\\xb1\\x8fM\\x11?pL\\x80r\\t\\x9e0?Z\\xc1\\x98cc\\xe61\\xbfpi\\xb9\\xbbBC\\x11\\xbf}\\x8f\\x99\\xce\\x12\\xdbE\\xbf\\xb8\\x07\\xa4\\xec\\xcb\\xf69\\xbf\\xbcN\\x93v*\\x84&\\xbf\\x9d\\xb3dQP\\xd0!?Z\\xd0\\xf6Vm\\x82P\\xbf\\xd4\\x91;\\xc5\\xd9\\x005\\xbf\\x00\\xc7+\\x0b\\xb6\\xe8\\xe8\\xbeP2\\\\\\xe5\\xadh5?n\\xb4\\xadW1rB\\xbf$\\xcc\\xde_\\x07F+?@\\x1eJ\\x18\\xf2E6\\xbf-(&\\x03\\x8d9[?n\\x1f\\xf2\\r\\x9aR:\\xbf*\\x8b\\x07_\\xeer#?\\x80<\\xdc\\xb1\\xdd\\x06\\x15?@JO\\xee\\x97\\xb4\\x1a\\xbf\\x9e|<\\x10w\\xfeC?\\x00n\\xcb\\x07\\x97\\xa9;?\\x80\\xd4\\x0eq\\x14j*\\xbfH\\xbfr\\xc2\\xae\\xb74?X\\xf1\\xa7\\x00\\x99\\x96\\x18?\\xd5\\x0f\\xf6%\\xe4\\xe9 \\xbf\\xb0\\x12\\xda\\x90\\x1c@4\\xbf\\xb06\\xe9\\x98&?$\\xbf\\x10@\\xfb\\x7f\\xd4j\"?0\\\\\\x91\\xff\\x15@6\\xbf\\x1c\\x1e\\xa0\\x9f\\x97\\x97O\\xbf\\x19\\x84\\xf8J\\x89\\xc4S?\\xe0[\\xa4\\xf6\\xad\\x190?\\xcd\\x1c\\x9e\\xdf\\xf3YN?\\x84\\xf6p\\xe3fT8?g\\x0f\\x89,7\\x8c1?d\\xac\\xd5\\xbd\\xeb\\xd6Y?\\x80\\x90\\xb6\\xb4\\r!-\\xbfYb\\xd1\\xdf\\xe9\\xccD?0\\xdb\\xeb\\xff\\xce\\xc6O\\xbf\\x00\\x9c\\x96\\xaa\\xab-\\xfd>\\xa0\\xfb\\xb0\\xbe\\x9c\\xa4N?\\x9d\\x85\\xa93\\n\\nR?\\xfcck^J\\xbf<\\xbf\\x80e4\\xf6\\xe15#?\\xa0N\\xbd{\\x0cA<?\\x00\\x80~^\\xaa\\xc7+\\xbf\\x00\\x8f\\xe2\\x1c\\xbc~-?\\x80A\\xad\\x11$\\xbd\\x1a?\\x00aU\\xd9;\\xa9\\x1a?F\\xc1\\xa2\\xeb\\xc6\\xc8X?\\xb0\\xc00\\x9c\\x97\\xf0V\\xbf\\xd0\\x92n\\xb7jrM?f%\\xf9\\xd2\\xc3\\x80S?@s\\x92\\x91\\x8b\\x947?\\xe0\\xc5E\\xc0)\\xa3/?@\\x19\\xd4\\xf8\\xd4\\xd9=\\xbf\\xb0\\xa4\\xcd\\xf9r\\xffW\\xbf\\x80\\xd9\\x8a\\xbc\\x16\\xf4\\r?x$\\xb7\\x13\\xf1CG\\xbf\\xbc\\x8bN\\n\\x92A@?@a\\xd1\\xb3\\x83\\x0e1\\xbf02\\xe0f\\x85\\xfb:?\\x84{\\x9a\\xb4\\xde\\x89H?\\xf80\\xbd{%\\x8cR?\\xe4\\xb7CJ\\xe1\\x9cB?\\x104Ap\\r\\x1f?\\xbf\\xac\\xdcD\\xc5{\\x1dS\\xbf\\x00\\xbeB+\\xda^S\\xbf\\xc4\\xec\\xa9\\xf6\\xc4\\xe9?\\xbf6\\x97\\xdf\\x86\\x95TS\\xbf]\\xc6 \\xe6\\xd2\\x03]\\xbf\\xb4y\\x84\\xda\\x0c\\xfbA?\\x9e\\x96\\xd5\\xe3\\xff\\x93P?\\x9f o,\\xc9\\xdbE\\xbf\\xc4\\x1d[\\xae\\x0bQ,?;^\\xe4p\\x8c\\xfd1\\xbfH\\xab]?y*O?\\xf6\\xbdv\\x98\\x96\\xacN\\xbf6\\xd5\\xbb\\xe3\\xc0*E?\"s\\xf3\\x1en\\xd2P?u\\xaeZ\\xe0-\\xa1J?\\xa6m\\xde\\xfc\\x8bu@\\xbfAby\\xac\\x82\\x17V?n\\x1f\\xf2\\r\\x9aR:\\xbf`V0\\x16\\x94-a?\\t=\\xe08\\x8bz@\\xbf@\\'\\x0c\\xab\\x00\\xef ?\"\\xc2\\x13\\xd7\\x0c\\x06B?P0k\\x11\\xf0!6\\xbf\\xb0\\xf40i\\x02=E\\xbfH#\\xe6\\xd9\\xbc\\x81<\\xbfC0\\xeb\\x7f\\xe0\\xdeW\\xbfZ];\\xd4\\xe3\\xb6/?\\xc0I\\xac\\xd0r\\x8f\\xf7\\xbex@\\x83\\xadbn2?\\x90{\\xb1\\x97%\\xa1%?@WS\\x85\\xbe\\xdb4\\xbf\\xccN1\\xf2\\xaewH?\\'\\xd4\\xee\\t\\xcc+T?|\\t<^!\\xc2#? \\x83\\xcf\\xe2\\xa7O\\x07?\\xe8.\\xcaT\\xcd\\xa1V\\xbf\\xc0\\x04\\xce\\xef\\xdd\\xad1\\xbff\\x91\\x8a9\\x0c|W\\xbfP\\x84\\x87}_\\x95*? T\\xa5\\xc2\\x9f\\xed6?\\xde\\x1db\\x0f\\x96kT\\xbf\\x90\\xdfc\\xdd\\xee\\xc6(\\xbfP\\xf0/\\xf9\\x91\\xa9P?\\xccw\\x10\\\\p\\xb3J\\xbf%\\xb6D\\xd7F\\xc1X\\xbf\\xc3m\\xc8\\xf9Q\\xfc1?,\\xcb\\xb0\\xd9FEZ?@\\xf4\\xe9\\xf3\\xc6\\xb59\\xbf\\x80\\xcfQ\\xd0\\x82\\xf5H?h\\x81%@_\\xbfD?\\x8c$\\x8b\\xf8\\x1a9Q\\xbf@\\xa8\\x01\\xfcS\\x7fV\\xbf\\xf0\\xf0Q\\'\\x8a\\xa0]\\xbfP`\\xa8\\x06\\x8b2Z?\\xaa\\xe0\\xa2\\x06~\\x00S\\xbf>\\xa74\\xacN\\x98Y\\xbf \\xc4R\\x85\\xceNN\\xbf\\xa8\\x87m\\xb8\\xf1\\x15 ?\\xe3\\xca\\xf7$\\xefGe?\\x0e3\\xed\\x0e\\xa1\\xffP?\\xe47\\x12W\\xadzA\\xbf\\x04\\xee\\x9f\\x96\\xbd^e?\\xe0\\xf0\\xf9H\\xcb\\xa6\\'?\\xf6@\\xce\\xb5,\\x1aE?0\\xe5\\xa0V\\xc6f8?\\xc6h\\x99\\xc5\\xce;X\\xbf|`\\x8b\\x7f\\xdb\\xaaV\\xbf\\xd0\\xb8[\\xec\\xbc\\xa2-\\xbfd\\x81\\x97\\xef\\x1d\\xd6M?@\\x84%1e\\xe9^?\\xd5\\xda\\xfd\\xda>!;\\xbfx\\x17\\xac-\\xeb\\x91 ?\\xbb|Z\\x9dC\\x1eW?\\xbeVkmg\\xdb^?\\x0c\\x12\\xc9TLE0?H\\xe0.\\xdd\\xc7x-\\xbf\\x8b\\x80\\xbe\\xd6\\x1d\\x04U\\xbf`Z\\x99W\\xb7\\xaa\\xf8>\\x1f\\x83\\xa2\\x90l\\xf9!?C\\x9aaM=\\xc2A\\xbf\\x8d\\xd1P\\x0cK\\xbb5?\\x18;\\xf7u\\xfa\\xf94?\\x16>\\xd6\\xef\\xa6\\xd5g\\xbf\\xff\\xabt\\xb1\\xa4^R?T\\xa5\\x94{|\\xa0\\x1e\\xbf\\x0bg\\xeddX;N\\xbf,\\x8b\\x07_\\xeer#?\\n=\\xe08\\x8bz@\\xbf.\\xb7\\xd8\\x91\\x9dqt?t\\xe3\\xc2\\xfaF\\xc5B\\xbfj}w\\x9a`$Y\\xbf\\xe6 #=\\xffpY?\\xfc\\xb4\\x8b\\xc8\\xa3^K?%h5\\xbaa\\xc7G\\xbf`BW\\xef\\xb6\\x13\\x13?\\x8af[J\\x8el\\x0c\\xbf\\x8dE\\x90\\xcek79\\xbf`\\x9bx\\x06\\x8bv\\\\\\xbf\\x00:\\xb9N\\xfc\\xa0\\xd9\\xbeH \\xb7\\xfc\\r\\xc6\"?p\\x86\\xba\\xda]\\xd3,?#!\\x85rHPV\\xbf\\xdb\\xfe\\x98\\x0e\\xba`Z?J\\xca\\x9f\\x8a\\xaaU%\\xbf\\x03\\x10\\xfe)\\xbf\\xbca\\xbfB\"HJ\\x1a\\x801?\\x8b\\xe2\\x02\\x99B\\x87\\x1d?\\xff\\xe1\\xe7q\\x85ff?\\xe0\\xa0\\\\\\xed,\\x9aN\\xbf\\xd0\\xa9\\xd7\\x84T\\xaf\\x12\\xbf;F\\xf4\\x00\\xa8\\x01c\\xbf\\xf0\\xce\\xe5\\xf9\\xc2\\xbaB?x}\\xbc@\\x18w<?\\x94?k\\x8e\\x9d\\xc6Q\\xbf\\xb01\\xb0im\\xbd\\xf1>h\\xe3\\x12#s\\x89Q?\\x80\\xa6\\x93.\\x11@E?\\x00G1\\x8fO\\xd4\\x16\\xbf\\x94\\xeek\\x04\\xf3\\xa1R?\\x8c\\x86\\x05B6&L\\xbf\\xc0\\xea\\xe2\\x02W\\xce7\\xbf\\x0f}\\x11(\\xb6\\na?\\x88\\x08\\xa8\\xa7=2I?2\"\\xe7\\xd4\\xc0\\xebX?\\xdf\\xbc\\xce(\\x81\\xbac?\\xb0|\\xf8\\x92\\x97C0?\\xc8\\xd2\\x97-\\x96\\xac\"?\\xfc\\x8fg\\xbd\\xd6\\x1cR?\\xd4\\xeb\\x14\\x87OnW\\xbf\\xfa\\x01\\xf9\\xedV<L\\xbf\\xb4\\x0b\\xf9\\xa8slM?h\\xbeE&\\xbc\\xa24?\\xd2\\x9a\\xe7T\\xd7\\x959\\xbft\\xd6\\x1eUR\\xfdQ?\\xf0\\xd2F\\x01\\xfe_ ?\\xe0\\x07\\xa3^\\x7f=L?\\xf4q7@H\\x16??\\xc0>\\x07\\x0eC;\\x16?(\\xf8\\xe2\\x1e.7:\\xbfc\\xfe\\xc9\\x96\\xd7}^?d7\\xf7\\x8b\\x7f^a?@\\xd2\\xa3\\xb4$W(\\xbf\\xc8}\\x08\\xbe2\\xd2B?\\xe0\\xed\\xd6P\\xefH;\\xbfD32\\x99\\x8c\\xbdR?|u\\x19\\x865\\x13W\\xbf\\xc0\\xbd[\\xb7\\xfaw>\\xbf\\x00\\x01\\xc7h\\xe6\\xb3\\x19?\\xc3>3\\xe4\\x19\\xf3m\\xbf)w;\\x93\\x03\\xcdg?\\xa8\\xcf\\x83\\xac\\x8b\\xe4Q?\\xc0\\xd9\\xf4\\xbe\\xb5\\x03-\\xbfn\\x14\\x08\\x00\\x89\\x1aD\\xbf\\xe0\\x12\\x97\\xd7\\x81\\xc0\\'\\xbf\\xa0p\\t\\xea\\x1cF^\\xbf\\x80<\\xdc\\xb1\\xdd\\x06\\x15?@\\'\\x0c\\xab\\x00\\xef ?p\\xe3\\xc2\\xfaF\\xc5B\\xbf[\\xc9\\x13\\xe68Vr?`[\\xc5\\xa9&\\xf9>?\\xe0\\\\0\\x81T\\xac;\\xbf`\\xdf\\xe8\\xec[nQ\\xbf\\xe0\\x01\\xad\\xc4E\\x82?\\xbfP\\xa2\\x87^T\\xe2I\\xbf\\xd0\\xbb\\x82U\\xb0\\xda\\'?\\xa0\\xea\\x085\\xb8\\xb0\\x15\\xbf\\xc0\\x03\\xe5jj\\xbaP? \\\\\\xa6\\x12\\'\\xa7`\\xbf\\x00\\xe7*:\\xbbB)?\\xc0U\\x18\\xd5\\x94\\x0cQ?\\x00rHh\\x93\\xd5\\x12\\xbf\\xfcs\\x92\\xec\\x0c\\x87U?P\\xd4t\\x0e\\x99DF\\xbf\\xbc\\xa8\\xa0\\xb4(\\xa6P\\xbf\\x80\\xb0\\x91\\xa4\\xf5U)? *\\x9c\\x9f\\x8b\\xf5=\\xbf\\x0c*\\xaf\\xd1\\xae\\xaag?\\x00\\xb6\\xed;\\xec\\xad\"?xr\\x7f\\x8a\\x91$C\\xbf\\x0c\\xf9/\\xf8\\x08\\xf4b\\xbf\\x00\\x80\\x0b\\x04\\xf8\\xbd\\x1b? +\\n\\xdb\\x0f\\x9bH?\\xb4\\xeb\\xa9\\xf4\\xec\\x04T?\\x10\\x9f\\x0f\\x95\\n%2\\xbf\\x00\\x9e\\xf9?xYf? \\x8e\\xa6\\x1a\\x8ag]?\\x00\\x10m\\x81\\x1b\\x81!\\xbf \\x04,g\\x84\\x85Y?\\x00\\xc1?u\\xfa\\x8bY\\xbf\\x00\\x00\\x0b\\x07\\x07\\x8b\\xc2>\\x90K?\\x87\\x05\\xe9S?\\xa0\\xf7\\xca\\xf5\\x17kk?\\xf0\\xe7\\x0e\\xa2\\xbcAK\\xbf\\xf4\\xf0\\xe3R\\xe2\\x9d@?P\\xc4&\\x90`\\x85q\\xbf\\x00pF\\x10\\xe6\\x04`?\\xf0$\\xbf}~3R?\\x00=Fp\\x882:?\\xc0\\xa9`\\xe0\\xbfX$?\\x90W\\x97\\xbdU\\xaf;\\xbf`\\xa4\\xad8\\xe3j3\\xbf\\x80\\x1d\\x15\\xf6\\x80\\xb5\\x16?@\\x19\\xec\\xd1u\\x80K\\xbf`o\\x89\\x833>J\\xbf\\x00\\x80\\xbd\\xd8\\xf3\\xf1I\\xbf\\x00\\xb0F\\x08#g\\xf3\\xbe\\xc0\\xe40\\x7f\\xc9j=?\\x80\\x17\\x00\\xfdT\\x19B?\\x15\\xea\\x04\\x96\\xb0GY\\xbf\\x98I\\x13\\xef\\x06ZO\\xbf|\\xcb\\xcd\\toe`\\xbf\\x97\\x88\\xfaweY\\\\\\xbf\\x90`\\xdf\\r~UB?0\\xebl{\\xcd\\xceD?\\xd42\\xec\\x80z\\x054?\\x16\\xa3\\x1d\\x95\\n\\x04G?\\xe6ew\\xcc%J3\\xbfP\\x987\\x1d\\xe1Sh\\xbfn\\x00\\xd0\\x18\\xf6lR\\xbf\\xec\\x1c\\x0c\\xear\\x7fU?\\xe9\\x10n\\x83`ke?\\xf8\\xf8\\xbdHt,\\x13\\xbf\\xaag\\xb4T=\\xf4M\\xbf\\xb65\\xddG\\x95\\x17Y?@JO\\xee\\x97\\xb4\\x1a\\xbf$\\xc2\\x13\\xd7\\x0c\\x06B?h}w\\x9a`$Y\\xbf`[\\xc5\\xa9&\\xf9>?\\xd4\\xd1\\x94^\\xf0\\x7fq?Pv\\xd5\\xcc\\xe3\\xf7+\\xbf\\x80\\xf8F\\xdcn\\xff@?d\\x16\\xf6\\x95\\n\\xaaV\\xbf\\x0eR\\xc5!\\xca\\xaf`\\xbf\\x1fl\\xc4\\xa6\\x1f\\xc6H?]\\xbdw\\xf7\\xbch \\xbfd&^\\xfb\\xfe\\xe4a?\\x80sX\\xd0\\xc7p*?\\xaeZ|O\\xfaCj\\xbf\\x0c[\\x1b\\xb7\\xc4I\\\\?L\\xed\\'\\xeeH\\x98P\\xbf\\n\\x8f\\xa9\\xe80\\xf2j?R\\x0f\\x15oHLa?\\xa0\\xcf\\x85\\xdd\\x16\\x97O\\xbf\\xa6q\\xe9^\\tzV\\xbfRj\\x9a\\x03\\x80\\xe3\\\\\\xbf\\x88U\\xe1l\\xbf\\x81\\x1f\\xbf\\xc0\\xf6\\x13\\xe6\\x0bD:?<\\x86\\xc2s\\xb1a<\\xbf\\x98\\xa8\\xe7\\x1d\\x13\\xe6E?\\x00\\xea\\xd4\\xd1\\x88\\xf93?\\x80;\\xcf\\xaal\\xf6X\\xbf\\xe8z\\x02\\xd2U\\xdb\\x1b?d3\\xba\\xd9\\x8c\\xc3>?`A\\xe9\\x8d\\x9b\\xaf^?\\xc0\\x96<\\xea\\x8a\\xdaC\\xbf\\x00\\xbcW\\x9c\\xf7D,?P\\x10\\xd3\\xa9\\xcf\\xc7C?@g\\xbf\\xf5|\\x17L\\xbf\\x80\\x0bm\\xf6\\xfe03\\xbfr:\\x85\\x92\\xf1\\xb0k\\xbf(\\xbb\\xff \\xd7\\x90`? \\xfa\\xe03.\\xa7,?d\\xd2*\\xc5z\\x05g\\xbfP\\xbcK\\x98|\\x11M\\xbf`p^\\xbf#\\xc3H\\xbf\\xb4l\\x93\\xffs\\xe4T?`\\xf1$\\x83Ux \\xbfj#ow\\x9d\\xf9Y\\xbf\\xb8\\xc1nV4ZE\\xbfX\\xef\\x82\\xc8\\xbeK\\\\?\"\\xfb\\xd0\\xec\\x00\\x12[?pu\\xd2\\xe4:\\xd1E?H#\\x99\\xa1\"}Q\\xbf(\\x1c\\x83.\\x97\\x13S\\xbfh\\xdc\\x81s\\x05\\x8cA?\\x88\\xf6H\\x8b\\xe3\\x0bB?H\\xbe\\x11\\xdc\\xdc\\x92U?J\\xf1H]\\x8e\\xd7b?\\x90\\xf9\\xff\\xaf v=?\\xa4\\xf4_\\x12\\x1e\\xdaE?\\x08!tf\\xc4)K\\xbf \\x0e\\xdd\\x96m\\x9b\\x10?{\\xb7\\x8dI\\x9b\\xe1`\\xbfnH\\xf2/\\xb6*T\\xbf\\nX@N\\x1fxA\\xbf#\\\\\\xa9\\x1eb\\x1c\\x1d?\\x9c\\xb3jf\\xe1\\xf8l\\xbf\\x00\\x1a\\x11\\xda?&&\\xbf\\xecd\\xd0A\\xfa\\xc7@?\\x88\\x8e\\t\\x80\\x06FK\\xbfB`\\rS\\x14Z:\\xbf\\x80\\x8eB \\x9e\\x95\\xf9>@\\x8fkZ\\x93\\x1c\\x04\\xbf\\x9e|<\\x10w\\xfeC?P0k\\x11\\xf0!6\\xbf\\xe5 #=\\xffpY?\\xc0\\\\0\\x81T\\xac;\\xbfPv\\xd5\\xcc\\xe3\\xf7+\\xbf\\x95\\xb7\\x9b1\\x8f\\x98v?\\x90\\x80;\\xee$\\xc8^?`\\x08)\\xd7\\\\pL?\\x00c\\xeb\\x9cuH4?\\xd2\\x1c\\x8f\\xd7\\xcf\\xb5\\x0e\\xbfj7P\\xc0\\xb5\\x823\\xbf\\xb8O\\xa4\\xfa\\xbdj@\\xbf\\x80\\xf6\\x10\\xdfl()?\\xa0\\x9d\\xdb\\xc6l\\xf2C\\xbf\\x00\\xab\\xf5)b\\xc7U\\xbf\\x8a\\x85t\\xc52\\x14a\\xbfn\\xe59\\xb9\\xe0\\xa1]?6\\x8f2\\x9c\\x01\\x1fS?$\\xb9\\xcc\\xee\\xefwN\\xbf\\x00\\xb0\\xd5X\\xdd\\xca\\xbf\\xbeK\\t\\xe0.\\xc2OC?\\xed\\x0ev\\xa8n\\xcbX?\\x80Y\\x7f\\xbc\\xad\\xe5*\\xbf\\x14c\\xf3\\xdbB\\xb2I?\\xa8\\xcd\\xad\\xa6NTV\\xbf\\x80\\xc3\\xa0Zs?#\\xbf\\xa0\\x07\\xe9\\xa7\\xcb\\x935?a\\xf2w\\xb6\\x08z8\\xbfx#\\xdf\\x98F\\xef+\\xbf\\x80Q\\xb0\\xd60\\x8b\\x18?P\\x95mh:<R\\xbf\\xc0\\xc6D\\x0b\\xa7)H\\xbf\\x80\\xdcAg\\x9dR+?\\x00?d\\x92\\x9f\\xf0>?\\x009y\\xa4S\\xb5F?p\\xcd\\x86\\xb7A\\x99_?\\x00<~f6w\\'\\xbf\\x18\\xe5\\xe3\\xc8\\x00\\x9fT?\\xac/\\xf9\\xa3\\xa1fS?\\xc0HU\\x8dt\\xb8A\\xbf\\x80\\xb0*+7\\xbb-?\\x80\\xce\\xcc\\x1cg\\xbe\\x10?\\x804\\x94\\xe7\\xfd>d\\xbf\\xccE\\xac8]\\x9cE\\xbf\\x04\\xfff/\\xfc)Q\\xbf\\xb0\\xc1R8\\x9bR<?\\x804\\xcb\\xd7\\x91\\x80\\x16\\xbf`\\xcd(e}lC?\\xe0\\xd8\\xac\\xc6Q\\xc9N?(\\x14M\\xd1\\xcej[?\\x00.\\xdbK\\xbe\\x172?X\\xb1\"\\x8dK\\xcf@\\xbf \\xc2o\\xabn[T\\xbf\\x1b:\\xc2M52^?\\xc0\\x1f\\xadU337?\\xcc\\xa6\\xb2Y\\xfb\\xfdd?\\xa4a\\x8d\\xe5>\\xc7Q?h@l\\xce\\x96RK?\\x96\\xe5\\xe9\\x16\\xd8bb\\xbf\\x00A\\x14H\\xd1\\xe5\\xf7\\xbep\\xe8\\xb3#\\xc2\\xf5H\\xbf\\xf7>\\xc7kts;?\\x15p\\xd7]fit\\xbf`j,\\xf5H,\"\\xbf\\xa0\\xe5N\\xc1{V4? =\\xf0\\x1e\\x99!D\\xbf\\xba\\xcc\\xda\\xa3\\xbe\\xc8T?\\xc0\\x16b\\xba\\x94~??\\xb0\\xd5\\x8f\\xff6\"W\\xbf\\x00n\\xcb\\x07\\x97\\xa9;?\\xb0\\xf40i\\x02=E\\xbf\\x00\\xb5\\x8b\\xc8\\xa3^K?`\\xdf\\xe8\\xec[nQ\\xbf\\x80\\xf8F\\xdcn\\xff@?\\x80\\x80;\\xee$\\xc8^?C;v\\x02$\\xf9x?\\xe04\\xc4,6\\xa6>\\xbf\\xc0M\\x03\\x14Y\\xb1;?x\\xe92 zY9\\xbfx\\xd3!\\x92u\\x12\\x12\\xbf\\xc0ew\\x01\\xdcN8?\\x00v\\xd9T\\xe0\\xce1?\\x80\\x835a\\xbf\\x05X\\xbf\\x00\\xb4j\\xa8\\xfcJ\\t\\xbfj<\\xf20\\xa8\\x90w\\xbfA\\x8e\\xa4nf\\xc9q?Z\\xc4\\xa7\\xe5m\\x94a?\\x8d\\x88_\\xe7\\x1d\\'a\\xbf\\x80\\x0c\\xb99[QJ?\\x94\\x0c*\\x0f\\xb5IS?\\x8b\\x98hlcO]?@\\xf2[JxUR\\xbfR\\xecAu6\\xdeR?\\xf0\\x12h\\x0e\\xb36^\\xbf\\x00\\x9a\\xc9/\\xdeBE\\xbf\\xc0\\x14\\xfc\\xe33\\xdfE?P\\x7f\\xb7\\x0cK\\xd6-?\\xc0\\x85\\xea\\xfejO\\x1d?\\x00\\x98\\xeb\\x1dp4D?\\x00\\xae\\xf0\\x95\\x03/\\x10?\\x00d\\x05\\'\\xb5OS\\xbf\\x80@,^TG5?\\xc0\\xfc\\x8e\\xe22\\x13T?\\x00\\xc0f\\x85\\x97\\x18L?8\\xe4\\x81\\x98\\x82$r?\\x98\\xafjU\\r<u\\xbf0z\\xf6\"}\\x1al?F\\xec\\x14\\xc1\\xdb&o?\\x80\\xf7\\xb68\\xb4\\x17m?\\x00\\xee?Y\\x99\\x8e2\\xbfx\\x8cUtdea\\xbf\\xe0\\xa9=\\xb0[\\x99k\\xbfH\\xf8\\xb6u(\\x16T?\\xec\\r\\x95\\xe9\\xe0\\xb4n\\xbf\\x08\\xf0?\\xca\\xfc\\xb9S?\\xe0x\\xcb\\xa9\\xb1\\xe63\\xbf@\\xf8\\xa7\\xc0\\x16\\x92P?\\xd8\\x90\\xe7\\x89\\x1e\\xfdb?\\x00bO\\xcb0\\xf1d?p\\x18\\xc1\\xf0\\xe7\\x14S?\\xf0\\xcc\\xeby\"\\x93X\\xbf`\\xb7\\x13\\xde\\xc2\\'l\\xbf\\x02\\xe2J;o\\xb9l?v\\xaeJ\\x97\"SZ?\\x8c\\xf9\\x97xr\\xaeR?\\xe2\\xcc\\x05\\xdf*\\xcaQ?\\xc2\\x1f._#qW\\xbf\\xf2=f\\x0b~jg\\xbf8\\xcdm\\x93;sI?\\xe9\\x020\\xad\\xfb<P\\xbf\\x14\\'&\\xa0\\x0f\\x0f5?\\xad\\x0c\\xaa\\x98\\xae\\x16r\\xbf\\x9a\\xac\\xa0\\x05\\xe7\\x8c[?\\xb6\\x84]\\xab\\xaf)T\\xbf\\xe4\\x81f\\n.\\xc5r?\\\\\\xdd\\x16=C\\x96Q?\\x15\\x901\\\\*1[?\\x95Y\\xeb\\x0b\\xb2\\t`\\xbf\\x80\\xd4\\x0eq\\x14j*\\xbfH#\\xe6\\xd9\\xbc\\x81<\\xbf$h5\\xbaa\\xc7G\\xbf\\x00\\x02\\xad\\xc4E\\x82?\\xbfh\\x16\\xf6\\x95\\n\\xaaV\\xbf`\\x08)\\xd7\\\\pL?\\xe04\\xc4,6\\xa6>\\xbf\\x82y\\x1a7\\xf0B\\x83?\\x1eV\\xc6]!?o?GF\\xe7\\x1b\\x02\\xa6O\\xbf$\\x0fZ]\\x17?=?\\xd0b\\x190\\xed\\x8e:\\xbfH9\\t\\xbd\\xc9oI?\\xde\\xac\\x93%\\xb9Pf?\\xc9\\xe8C\\xfe\\x9d\\xa5v\\xbf\\xe0\\x19k^`9w?L\\xa6\\xbe\\x00\\xeaR\\x89\\xbf \\xdaER]0p\\xbf\\x99\\xd8\\xe830pt?\\x02[\\x9d\\xb2\\xcazS?\\x1e\\xce\\x0bn\\xa9\\xb9`?\\xd7W\\x14\\xcf\\xb1\\xd1q\\xbfP\\xb9\\xde\\x98!\\x88Q?\\x94g\\x0e\\x03\\x9f4F?h\\n\\xd3\\x93E\\xa0_?\\x90o\\xf4[\\x80\\xe4[\\xbf\\xecUH\\xd0\\x1f\\xeec?\\xf8\\xcf\\x86\\xf6\\xcb%[?\\xdb\\xe6|\\xf7\\xdb\\xdfQ\\xbf\\xe4\\xa5\\xb2\\x17\\x95\\x86s\\xbf\\xc0\\x02\\xbe\\x16\\x85E5\\xbf@\\xb7\\xcd\\xd4\\x030V\\xbf\\xb0W,\\xe2\\xd7\\xf8e\\xbf:\\xf97\\x7f7\\xb3q?\\xa0_\\xc6o\\xa6wb?\\xfc\\xb8\\xc0\\xfd\\x9b\\x89h?\\xa0j\\xa1\\xee\\x81gM\\xbf\\xa0hm\\xf1\\xc7\\xc3k\\xbfP\\x1aj\\x90\\xd0\\xfe\\x16\\xbf\\x80\\xda\\x81|\\xe6\\xb3J\\xbf\\xf0/\\xe28F\\xa4E?,\\x11\\x8f\\xff\\xa6\\xbeh\\xbf:H\\x9dCK\\xf2s?\\x92\\xe0\\x1d%9\\xccm?\\x96\\xa8\\xa3\\xf2N\\xb5P?\\xa0><\\x00\\xd1\\xa2v\\xbfn\\xabTC\\xa1\\xba^\\xbf4Vk3\\xd6\\xe7l\\xbf\\xb0\\x1b\\xda\\x9c\\xdb.0? \\xae\\xdf\\x87\\xc4P@\\xbf\\xf9\\xe7\\x1d\\xe94\\x89q\\xbf\\x00\\x01l\\x8bd\\x91\\x19\\xbf\\x00\\x9b\\x9e\\xf3\\x0eg7?\\tS\\x01\\xf0f5k?\\x84\\xf8\\xb3\\x03cvV?\\xec\\x91>\\xfaZ\\x08d?0)\\x84\\x0fv\\x00g?\\x01\\xb1q\\xfd\\xa6\\x11Y\\xbf\\x1b`vA\\xc8\\xdee\\xbf\\xf1cWR\\x16\\xa1a?1\\xca\\x96e->R\\xbf\\xa1\\xfa\\xed\\x8f.\\'D?\\xb8\\xd4\\x8bUb\\xdf*?J,\\x05~\\x93\\x82g?\\xf0\\x07\\xc0\\x8e\\xe17d\\xbf(\\'\\x9b\\xae9\\x90O?\\x10\\xecM\\xff\\x1f\\xdd]\\xbf*\\x8f\\x0b\\xec&\\xa1`?XJ\\t\\xbb}wf\\xbfH\\xbfr\\xc2\\xae\\xb74?C0\\xeb\\x7f\\xe0\\xdeW\\xbf`BW\\xef\\xb6\\x13\\x13?P\\xa2\\x87^T\\xe2I\\xbf\\x0eR\\xc5!\\xca\\xaf`\\xbf\\xf8b\\xeb\\x9cuH4?\\xc0M\\x03\\x14Y\\xb1;?\\x1eV\\xc6]!?o?\\x1b\\x89<\\xd9\\xaa\\xefx?<\\xaecX\\x10VV\\xbf\\xc4X\\xcf\\xb8 \\xcdD?t\\xc7\\xd4\\x93cYQ\\xbf\\xd8\\xfc\\x87\\xd1\\xc7\\xe4D?\\x0b\\xf5\\xf3\\xba\\x88{d?\\x1a\\xb7\\x12J\\xf2\\xc7o\\xbf\\xf0\\xabl\\xaa(\\xc1??h\\x89\\x1c\\xcak\\xaex\\xbf\\x1e@\\x99D\\xd2(Q\\xbf\\xe9\\xb8\\xe8~\\x8d\\x05t?I\\x14\\xeb\\x9c\\x7f>_?\\x17\\xb0\\xec\\xbc\\xfb4p?w\\x9b\\x8a\\x92\\x99\\nk\\xbf@iCx\\\\:A?\\xf0W\\x80p\\x8d\\x1eb?\\xd8\\xe6S\\xc0\\xc4\\x0c[?\\x98M\\xd2H-\\x8fh\\xbf0\\x96\\xf7\\'\\xf7f[?\\xb4/mZ\\xf6\\x84c?\\xfd \\xfb\\xa2\\x14%H\\xbf.y5V\\x02\\x8dz\\xbf\\x00\\xac\\x00\\xaf\\xef\\t\\x04\\xbf\\x00d\\xb4+U\\x84b\\xbf\\xe4N\\x0c\\xaeG;i\\xbf\\xfep>\\x19\\xa9\\x13p?@\\xb3\\x91\\x1b\\xeeKl?\\x0c8M\\x92A\\xd4n?\\x00\\xe2_\\x8d\\x04[s\\xbf \\xa4\\x1aCyP4?v*\\xc4\\xaa\\x10\\xe9a?HT\\xd5\\x1a\\xf2\\xd9e?\\xe4\\xd3\\xa8\\x82\\xe0\\x13J\\xbf8\\x83\\xea`=l|\\xbf0\\xbb\\x00\\xddQ\\xa5>?\\x18t\\xdf(\\xdb\\x18c?\\xb9]\\xc8\\xdc\\xcdiq\\xbf\\xfa\\xf2y|\\xab\\x11g\\xbf(\\xad\\xe0\\x8b?\\xfb_\\xbf\\x18\\xbdL\\x98*\\x10d\\xbf*\\x9c\\x0eA\\x1b\\xb1j?\\x18\\xd1\\x12&\\x96\\xf7b?\\x14*{:+\\xfcU\\xbf\\xc4\\xd3l:p\\x8ba\\xbf\\xa8\\xb6\\'o\\x8ehl\\xbfX\\x14s\\xf7j\\xefb\\xbf\\xa7Ma8\\x1b\\xe4Q\\xbfs\\xb0a1\\xa7\\x91Y\\xbf\\xc0 \\xc8\\x83\\xd5+6\\xbf\\xd2H\\xecB\\xc5\\xb95?\\xb1s\"l\\xc3\\x97M?u\\xa7?\\x91\\xcb\\xdfF\\xbf\\x12Nhy\\x06MQ?\\x83\\xc4\\x8aY\\x19\\x02\\x1b\\xbf\\xa3<\\xfa\\xeaE\\xf1U?t\\xbc\\xcf%o\\xf6L\\xbf\\xa0\\xbf\\x8e\\xd0\\xb3\\xabC?P\\xcd\\x1b\\xc9\\xcc\\xe2:\\xbf\\x05}\\xcf\\x90\\x8a\\xcd+?\\xd4\\xd4I\\x95\\x968M\\xbf\\x9d\\xed\\xdcDNB\\\\?V\\xf1\\xa7\\x00\\x99\\x96\\x18?Z];\\xd4\\xe3\\xb6/?|f[J\\x8el\\x0c\\xbf\\xd4\\xbb\\x82U\\xb0\\xda\\'?\\x1fl\\xc4\\xa6\\x1f\\xc6H?\\xd8\\x1c\\x8f\\xd7\\xcf\\xb5\\x0e\\xbfx\\xe92 zY9\\xbfGF\\xe7\\x1b\\x02\\xa6O\\xbf<\\xaecX\\x10VV\\xbfM\\xa3Nl\\xcf\\x05`?\\xa1n\\x1f2+\\x12 \\xbf\\xc0\\xb0nz\\x9c\\x17\\x10? \\x91\\xbc\\xc1\\xba%\\x15\\xbf[\\n\\xec\\x0c\\xd0\\x92G\\xbf\\xe3\\xd5\\x8a\\xe12\\nQ?(-9\\x14\\xdf\\xf3\\x1d?\\xc0\\xc2E\\xc01\\x00Y?\\x919a\\x94\\x7f\\xaaU?\\xc2\\x9c\\xd4`\\xd3\\xa1N?G\\x95@\\x1d\\x16=X\\xbfp\\x071%\\xd4\\x87W\\xbf\\x1au\\xae\\xad\\x83>9?Ju\\xa3\\x01\\xd0\\x19L? m\\xad\\rU\\x90\\x1f\\xbfp\\x15\\xd4\\xff\\x80\\'K?\\xe0e\\xe1s\\xa1\\xc2\\x12?\\xea0\\xeb\\xb4\\x86\\xb4Y\\xbf\\xcctb\\xdf\\xd7.L?I\\x1fMc\\x17;\\x10?#\\xf6[}h\\xcfX?\\x80\\x89\\xdbx\\xba\\x86\\xd0\\xbe\\xb8\\x07=\\xf3u$\\x1a\\xbf\\x98${\\xf5g\\x82\\x18?\\xb6G\\xae\\xa6o\\xa3C\\xbf\\xe1%\\x9an\\x99\\xf7>\\xbf9\\xcb\\xa9\\xb1\\xcc\\xbc`\\xbfV\\xdbU\\xce\\x99\\x82a?\\x87%ch\\x00I5\\xbf\\x84\\x0bm\\x16\\x90\\xc5]\\xbf\\xb8\\x0e\\xa2.\\x08\\xe0P\\xbfD\\xb8\\x19:\\x12\\xb7\\x12?\\xd8\\x98\\x98\\x82TS]?\\xd0\\xb8\\xc2\\x15\\x02\\x0eE\\xbf~\\xc7c\\tnua\\xbfj\\xc7e\\\\i\\xfdN?\\x8d\\\\w\\x86H\\x81Z?\\x83yj\\xb5\\x1e\\xbbR?\\xb2\\xd6\\xa4\\xcbI\\xc4B?f8\\xa1\\x01\\xb3\\xe1M\\xbf\\x80\\xa1\\x0b-\\x1b\\x96J\\xbf\\xf6\\r\\x1aFz\\x7f7?\\x0e\\xce\\xbe\\xb1\\xf7r;?V\\xf1WG\\xba\\xe4T?\\xdc\\x1b\\xc8!\\xf3\\xfc/?}Wt\\xdd\\xf4\\xed-?@\\xe4Dk\\x8f\\x01\\xe0>\\xce7\\xb2\\xbd\\x13^=?:\\x00QJ\\x02\\x0b:\\xbf($1\\xf11{\\x1a\\xbf\\xc7p\\x1c\\xf0\\x9e\\x07G?\\x90+\\xb6\\xe1Fl\\xe9\\xbe\\xee\\x93/\\xb8\\x96\\xaa ?t%\\xcd@\\xbb\\xa0B?\\xbcE\\x05\\xfc\\x8a\\x83H?l\\xe5<k\\xf7\\xbd:\\xbf\\x80\\x1a\\xe5>7\\x8b\\x1a?\\x89\\xdb\\r\\x10\\xf1NM\\xbfU\\xc1Lp\\xdc/,?\\x90\\x0fA\\xfc\\xee\\xde\\xfe>\\xd5\\x0f\\xf6%\\xe4\\xe9 \\xbf\\xc0I\\xac\\xd0r\\x8f\\xf7\\xbe\\x8dE\\x90\\xcek79\\xbf\\xa0\\xea\\x085\\xb8\\xb0\\x15\\xbf^\\xbdw\\xf7\\xbch \\xbfk7P\\xc0\\xb5\\x823\\xbfx\\xd3!\\x92u\\x12\\x12\\xbf$\\x0fZ]\\x17?=?\\xc4X\\xcf\\xb8 \\xcdD?\\xa1n\\x1f2+\\x12 \\xbfJhlt\\x85\\xdbV?X\\xbb\\xff\\xf1\\xbeB&?\\x9c\\xbe\\x8a\\x18iz\\x1e?\\x16)\\x00NQ\\x010?\\xd6\\xef\\xe7\\xbc\\xe2\\xd0<\\xbf\\xe8c\\x963+\\xff\\xfb\\xbe\\x90\\x10\\x9d^\\xf4\\xbaP\\xbf\\xa2\\x8b:\\xff\\x00\\x14*?\\x08[&d5\\xb0Y?\\x806#0gl\\xdd\\xbe\\x0e]\\xa1\\xf2+\\xd3D?\\xac\\xd7\\x04h\\xa9>`\\xbf8#dv\\xb4\\x12E?\\xfcx\\xed=\\x1c&@?[+5\\xf2\\x10\\xc2Z?.\\xed\\x8b\\xa8\\xa5uQ\\xbf\\x8a01\\xbb4)S\\xbf\\xce\\xdfX\\x18O)O?\\x1e \\x88\\x92\\xdb\\xdf#?1\\xefz,\\xc4\\xb3V\\xbf\\xc4\\x9f\\xc4\\xcc\\x99\\x071\\xbf\\xb8K\\xbe\\x9a\\xfchH\\xbfE\\x03\\xac\\x06RvQ\\xbf\\xba\\x18i\\xb6\\x10cJ?\\xfcs\\xf8\\xfb\\xc1RO?\\xc6;\\xc5-\\x9e\\x06=\\xbf<\\xbf\\x92\\x194U8\\xbf\\x1dd\\x15*u\\xc7=\\xbf\\xaa\\x15\\xc1\\x82\\xddoO\\xbf\\x10\\x86*\\xf3\\xcd\\x1b\\x14?y\\xe9\\x95\\x9a,\\x1a6\\xbf\\xf0u\\x84\\xcbs\\x95Z\\xbf<\\xe2\\x12\\xeef\\x06:?P[>\\xad\\xd1\\xfc\\x06?\\t\\xad\\xb4\\xd0Y\\x1aY\\xbf\"s\\x83\\x02t9/\\xbfly%\\xfd]\\x12\\x13?\\x85_M\\xcdH\\xfdN\\xbf\\xa8\\xac\\x0f\\xad\\x96\\xf0=?\\xc0\\x03PDo\\xe8\\x1b\\xbfR\\x85\\xeePO\\xb79\\xbf\\xae\\x1er\\x83\\xc2,>\\xbf\\x80\\xab\\xde\\x8a\\x8c\\x9a2\\xbf\\x84K\\xaa\\xd4a\\xd3O?l\\xf6\\xbc\\xb8B\\xabS?\\x80\\xf3m(\\'\\x164\\xbf\\x80\\xc3\\xc0\\xf2\\xaa\\xd9L?\\x90p\\xe3\\x9b\\x9b\\xecK\\xbf\\x00t\\x86\\xf5\\x18I\\xe4>P\\x9c\\xb8\\xcf\\x94j>?0N{_A\\xd8$?f\\xf5\"YE\\xee1\\xbf}\\x99\\x19\\xad\\xf0\\xd0}\\xbf\\xbc\\x9abRq\\xa6^?\\x9c\\xb7\\t0\\x08\\xdfS?\\xb0\\xc4\\xe2\\x85\\xfa4A\\xbf?\\xd5\\xe1\\x03`[^\\xbf \\xc9\\xfda\\x8a)7\\xbf\\x00vQ\\xd8\\xadi ?\\xb0\\x12\\xda\\x90\\x1c@4\\xbfx@\\x83\\xadbn2?`\\x9bx\\x06\\x8bv\\\\\\xbf\\xc0\\x03\\xe5jj\\xbaP?`&^\\xfb\\xfe\\xe4a?\\xb0O\\xa4\\xfa\\xbdj@\\xbf\\x00fw\\x01\\xdcN8?\\xe0b\\x190\\xed\\x8e:\\xbft\\xc7\\xd4\\x93cYQ\\xbf\\xc2\\xb0nz\\x9c\\x17\\x10?T\\xbb\\xff\\xf1\\xbeB&?\\x83r\\xb81\\xa0[u?\\x80\\xe8\\x8eV\\xd1\\xf05\\xbf\\x04\\x13E]MSc\\xbf\\x90\\\\g\\xfc\\xa4[Z?\\x98>\\x8b\\xaa\\x90}R\\xbfd9\\x01\\x18\\x8ada?>\\x89\\x19\\xb7\\x12\\x18N?t\\x14+\\x1d\\xd9\\xb0W\\xbfP1c\\x02\\x1dM6\\xbf,AB\\xe7\\xfa\\xe9 \\xbf\\x88\\x16\\xab3\\xbf\\x0eZ\\xbf\\x00NDd\\xdb\\x92,\\xbf\\xc0\\'\\x02\\xc6\\xa1\\xdd\\x18\\xbf\\xd0\\x13-e\\x1fMY?\\x000f\\xd6t\\x97\\x13?\\x90E\\x18\\x15\\xe9-_\\xbf\\xfe\\xae\\xc6\\xdb\\x02\\xf1W\\xbf\\xe8\\x12r\\xfb\\xb5\\xbf(?\\x00\\xa4\\xa2\\xb2Q\\x91A?\\x00\\xf8\\x19\\xacPw\\xf7>\\x00t\\xfba\\x8el\\x1e?\\x00\\x93_\\x1fU\\x90:\\xbf\\x00;\\x1fV\\xdc\\xa1<?\\x00\\x90\\xc8\\xd7\\xbb\\xb5\\x19?\\xc0\\x08\\x8am\\x96\\x15c\\xbf@%\\xc1\\x97C\\xb7d?\\x80\\xa9\\xf9\\x13\\xcc%D\\xbf/X\\x1a\\x12\\xdawc\\xbf L\\xbd\\x10\\xe8;b\\xbf\\x00R\\xba+\\x02\\xde(\\xbf\\x80wUA\\x9feK\\xbf \\x134\\xa1}\\xcaS?p=+\\xd7l\"A?\\xc8p\\xd7\\x0f\\xe2\\x92^\\xbf\\x80\\xd3_)\\xa5X-\\xbf\\xe0%\\x91\\xf0\\x16\\t8?\\xc0\\xc7&h\\xf3cR\\xbf\\xc0\\xf0\\x83\\x81\\x80\\xf9#\\xbf \\x0e?\\xe4\\xc3TG\\xbf\\xf0/\\xb7+\\xb7\\x05A\\xbf\\x008\\xb1\\xa5g\\x8e\\xe4\\xbe\\x00\\x92\\x10\\x94\\xa6\\xf3#?\\xcc\\xe1U\\xe8/\\xc3S\\xbf\\x08\\xd0\\xc9\\xf5\\x1c\\x94N\\xbf@\\xc3\\x05\\xb4P\\xe8)\\xbf\\xec\\xab\\x17\\xc0\\xd4\\xd5L\\xbf\\xb0\\x9e<\\r=\\xa07?\\x80\\x07\\xba\\xf6\\xec\\xa5B\\xbf\\x00\\x01\\xce\\xf2\\xfa\\x939?\\x90e\\xae\\n1\\x9d4?\\r\\x8b\\x88\\'\\x04\\x19)\\xbfp\\x8b`\\x89\\xd3\\x86Z?\\x18;\\x8c\\xbb\\xc6\\tC\\xbf\\x80\\x06\\xfb\\x14\\x15)\\x16\\xbf\\x80!\\xee\\xb0f\\xac\\x1c\\xbf\\x10\\x9d\\x8f\\x86\\xf1K ?@1mV\\xa7\\xaa\\x0f\\xbf\\xe4\\xc02!\\x94\\xb6d?\\xb06\\xe9\\x98&?$\\xbf\\x90{\\xb1\\x97%\\xa1%?\\x00:\\xb9N\\xfc\\xa0\\xd9\\xbe\\x1c\\\\\\xa6\\x12\\'\\xa7`\\xbf\\x80sX\\xd0\\xc7p*?\\x80\\xf6\\x10\\xdfl()?\\x00v\\xd9T\\xe0\\xce1?P9\\t\\xbd\\xc9oI?\\xd8\\xfc\\x87\\xd1\\xc7\\xe4D? \\x91\\xbc\\xc1\\xba%\\x15\\xbf\\xa4\\xbe\\x8a\\x18iz\\x1e?\\x80\\xe8\\x8eV\\xd1\\xf05\\xbf\\xa5\\x1db\\xf2oZp?\\x805\\xc3^\\xe8\\x04G\\xbf #hy\\xc9\\xc7@\\xbf\\x80\\xfa\\xf7c\\x99\\xe5D?\\x16gk\\x99\\xfb\\xb8W\\xbf\\x8d3L\\xacU\\xcfb?\\xe4\\xaeu:!\\xdaQ?@D|\\xad\\xa3{\\'\\xbf@c\\xc4\\xdat\\xd6\\xfd>\\x80\\t\\x93\\x03V]i\\xbf`\\x91j\\x98\\xac0S?`3\\xfa\\x7f\\xd6t(?,\\x8e\\xd7\\xbe\\x06\\xc3g?\\xe0\\x06\\x8b\\xde\\xe9\\xd7R\\xbfX\\xd9=\\x85}Fm\\xbf\\x19\\x06\\x107]\\x86c\\xbf\\xb0\\x9b=ei\\x0b\"?\\x800\\x85\\xd9;\\x85a\\xbf\\xf0H\\xc5\\x8a\\x98Ka\\xbf\\x009\\xc2|\\x05DM\\xbf@p#`\\xe6\\xbdP\\xbf t\\xfe\\xfa\\xfb-Z?@\\x98\\xbe\\x95x\\xbdU?\\x10)\\xcaV\\x12R]\\xbf@\\'\\xd5(\\nGX\\xbf \\x18\\xca\\xc3\\x1c\\xc9-?:l\\xec\\xf9\\xa8}B\\xbfH L\\xe2V\\x02m? \\x8d\\xde\\xa9\\xf9\\xc1W\\xbf\\xc0v\\xa2\\xb5\\x83\\xcd3?@\\x1dj>\\xe2\\xcf=?\\x88CH\\x9bF\\xdca\\xbf P[\\xec\\xe2\\tB?@TtD\\x1f\\x95\\'\\xbf\\x90%\\xf1\\xe4TsC?@\\xa4w\\xe1\\xcdgO\\xbf\\x00\\x9cCrz\\xc7\\xf0>\\x80z\\xd3\\xcb&a>\\xbf\\xf0\\xf3\\xb2#\\x1d\\x87S\\xbf\\x00\\xcd\\xcd\\xea\\xcf\\x86/\\xbf`\\xcf%\\x82k\\xe2S?\\xa4\\x97\\xee\\xb9W\\x8fA\\xbf\\x00\\x1e\\xef\\x14Yk\\xf3>\\xc8h\\xd3\\xab\\xd9\\x89Q?\\xa8\\xeb\\x08\\xfd\\xc3\\xe8E? \\x9dD9\\xdf\\x8cA\\xbf\\xe0\\x05\\xcb\\x13\\t\\xbbA\\xbf0%\\x136\\x13\\t;?\\xe0C\\x06\\xa9\\x03\\xb5?\\xbf\\x14nb\\\\\\xc1\\x017?\\xb1i/iQ\\xbat?\\x94\\xc9\\xedb\\x18\\x0cV?e\\x87\\xa7\\xa9\\xdf\\xa2b\\xbf,\\xaa\\x15b0rg?\\x0e\\xdas\\xaa\\xd4\\xfeD?@W\\x96i+6Z?8\\xb5D\\x1b\\x1d\\x06Y\\xbf@@\\xfb\\x7f\\xd4j\"?@WS\\x85\\xbe\\xdb4\\xbfH \\xb7\\xfc\\r\\xc6\"?\\x00\\xe7*:\\xbbB)?\\xaeZ|O\\xfaCj\\xbf\\xa0\\x9d\\xdb\\xc6l\\xf2C\\xbfp\\x835a\\xbf\\x05X\\xbf\\xde\\xac\\x93%\\xb9Pf?\\t\\xf5\\xf3\\xba\\x88{d?]\\n\\xec\\x0c\\xd0\\x92G\\xbf\\x16)\\x00NQ\\x010?\\x04\\x13E]MSc\\xbf\\x805\\xc3^\\xe8\\x04G\\xbfs\\xab\\x96\\x8c\\x92\\xa3{?\\x1c\\x9dV\\x12\\x1eoj\\xbf\\x86L\\xbb\\xa7\\x7f\\x13n?L\\x7f\\x1a\\r\\xdfcy\\xbf\\x08\\xbb\\xe1\\xd5\\x10in\\xbf;f\\xfb\\xb6\\x14Rm?\\xf0d\\xe8@bLb?\\xaa\\xd9\\xe5\\x8c%\\x9dZ?\\x94\\x9da@\\xa9<;\\xbf\\x00|D\\x9b\\xb7T.\\xbfpZ\\xf5\\xd0\\x8b85? C\\xec\\xc9+D6\\xbf\\x008/\\xa9\\xc4g\\xfa>\\x94\\xf0eYd\\xe3u?\\xab\\\\\\xe1\\xca\\x8f\\xcfb?\\xb4YsF\\xfc\\x85P\\xbf\\x10\\xae\\x07\\xac\\xc8\\x98e\\xbf\\x00\\x87\\x82\\xa6\\xf0>2?\\x00\\xce\\x95\\xb7W!*?\\x00\\xf6\\xaa&{2U\\xbf\\xa8\\xe1\\xfb\\x08sWg?\\x00:8\\x15\\xa4[E\\xbf\\xd4-0#\\xfeOl?\\x801\\xdb\\x18\\x149k\\xbf\\x80\\xa4c@,\\x89\\\\\\xbf\\xd4\\x89\\x89\\x93XN\\\\?\\xa0\\xbaNc\\x83\\x9fT?\\x18\\xb3g\\x0e-\\xdaV?\\x14\\x83\\xe1X\\xcbFa\\xbfPI$\\xdd\\xa2\\xac[?\\xd0Qc[\\x93Bm?\\xdc\\x91}\\x88\\xdf\\xabW?6d\\xa8u)\\xabf\\xbf\\x92\\xfa\\xec\\xe0\\xe7\\xe3c\\xbf\\x80\\x1e\\\\=\\xe6>D\\xbf\\xf0\\xa8\\x87\\xda\\xb2\\xdeG?\\xc0\\x0f\\xea\\xef\\xe7XI?0\\xc2\\x11bM\\xceR\\xbf\\xa0\\x7f7i\\x14\\x872\\xbf\\xd0\\x8dx>\\xd5CT\\xbf\\xe2\\x14\\x99_\\xd5\\re\\xbf\\xf0\\x16l\\x17\\xbe\\xa26\\xbf\\x90\\x81\\x1cO\\xe2]L\\xbf8\\x8f\\xeeHVH9\\xbf\\x06\\x8d\\xa0\\x00R\\\\T?(\\x83\\xf7}X\\x83g?d\\x1dPS7\\xc6X\\xbfpu\\xe5J\\xb7\\xc0L?=\\xff\\x8a\\xf8\\xf7?2\\xbf\\x0e\\xaez\\x06\\xfe\\x80_\\xbfd&\\x9a\\xa31\\xeaO\\xbf_6%\\x13\\x87\\xc6e?(\\xd8P\\xf7\\x9f\\xe2}\\xbf\\x00fW\\xcd\\xe7\\xa9A?\\xd8h\\xd7\\xb2\\x92\\x98a\\xbf$\\xc9\\xc6\\xfc\\xe1kP?8\\\\\\x91\\xff\\x15@6\\xbf\\xccN1\\xf2\\xaewH?h\\x86\\xba\\xda]\\xd3,?\\xc0U\\x18\\xd5\\x94\\x0cQ?\\x0e[\\x1b\\xb7\\xc4I\\\\?\\x00\\xab\\xf5)b\\xc7U\\xbf\\x00\\xb4j\\xa8\\xfcJ\\t\\xbf\\xc9\\xe8C\\xfe\\x9d\\xa5v\\xbf\\x1a\\xb7\\x12J\\xf2\\xc7o\\xbf\\xe3\\xd5\\x8a\\xe12\\nQ?\\xd6\\xef\\xe7\\xbc\\xe2\\xd0<\\xbf\\x90\\\\g\\xfc\\xa4[Z? #hy\\xc9\\xc7@\\xbf\\x1c\\x9dV\\x12\\x1eoj\\xbf\\x1b\\x07E9\\xa3b}?e\\x96,\\x86\\xe2\\\\j\\xbf\\xee9\\x91f\\x82\\x82\\x81? \\xfe)\\x1a \\xb4l?\\x02\\x18jiR\\xa2v\\xbf\\xf4\\xc6\\x8aM%\\xe2\\\\\\xbf\\xb8\\xcc*?q\\x99g\\xbf\\xae{Tj\\xa9Vl?\\x00\\xaf\\x85\\x1di\\xe90\\xbf\\xf2_2\\xb90\\r[\\xbf M\\x90l\\x07\\xafZ\\xbf`.^\\xc5\\xdf~U?\\xac\\x14\\x8b\\x84\\xb9Ye\\xbf\\x0b\\xf6\\xfc5\\x16\\xfee\\xbf\\xaee?\\xf8\\xbc\\x87I?x\\xcc\\x81\\xb87cx?\\x00\\xba\\xe2\\xde\\x8b\\xc0\\x02?\\x80\\xd2\\xe4K\\x86/D?\\xd0\\x8d\\xac\\xa3\\x03%g?\\xe8\\x83\\x8e!^5l\\xbf\\xc0\\xe8\\xc9\\x81\\xa6G\\\\\\xbf\\xac\\xdd/\\xe9\\xd5kh\\xbf\\xa0\\xf7\\x9c\\x85\\xd2gi?\\x00\\xf3\\xcfjk\\xc4\\\\?\\xec9\\xbe\\x9cz:H\\xbf\\xc0\\x8f\\x08\\x9d\\x86\\x83Q\\xbf`\\x92\\x1e\\xb9S\\xc5\"?\\xd6C\\xa8\\xb0\\'\\xe4q?\\xf0\\xf7\\x84r9\\xdeZ\\xbf\\x8cF\\xdc\\x8a\\x1bUd\\xbf@^|hF+-?\\xaaw\\xc4\\xd5/\\xbaj?\\x94\\x91=A\\x80\\xc4]?8\\x0b\\xc1\\x17`\\x17]?H\\xe38\\x18|\\x06`\\xbf \\xa2\\n\\xa3\\x11\\xa9^\\xbf\\xe4\\xa4\\xa1\\xac\\xdc$^?p\\xac\\x92w\\x152T?\\xe01\\xc2&\\xfb\\xeda?\\x92|\\xbc\\x03\\xc5gm\\xbf\\x92\\xf1\\x95vx\\\\W\\xbf\\x12P\\xcc\\xb1eQi\\xbf\\t_B`\\x18|`\\xbf\\\\1\\xbb\\x9a\\x16-A\\xbfc\\x11\\xa1\\xe9\\xe3\\xc5Z?\\xfc\\xd7\\x87\\xfb0\\x015?(\\xa8!\\xc3\\xc9\\xc0N?\\x87\\xe0\\xa6\\xf5\\x12\\x98B\\xbfN\\x83\\xf3\\xb5\\x1f\\xb2y?\\xb0\\x1f3\\xe5\\x8dwL\\xbfKp\\x8bo\\xb6\\xc2T\\xbf\\x10\\x0e\\xc7\\x93\\xc3\\xecx?Vh\\xd5\\xc7x\\xc7e?\\xd4Z&\\x16\\xd9h;?\\xfbY\\xd6\\x7f\\xa6\\xa1a?\\x1c\\x1e\\xa0\\x9f\\x97\\x97O\\xbf\\'\\xd4\\xee\\t\\xcc+T?\"!\\x85rHPV\\xbf\\x80qHh\\x93\\xd5\\x12\\xbfJ\\xed\\'\\xeeH\\x98P\\xbf\\x8a\\x85t\\xc52\\x14a\\xbfj<\\xf20\\xa8\\x90w\\xbf\\xe0\\x19k^`9w?\\xe8\\xabl\\xaa(\\xc1??0-9\\x14\\xdf\\xf3\\x1d?\\xe8c\\x963+\\xff\\xfb\\xbe\\x98>\\x8b\\xaa\\x90}R\\xbf\\x80\\xfa\\xf7c\\x99\\xe5D?\\x86L\\xbb\\xa7\\x7f\\x13n?f\\x96,\\x86\\xe2\\\\j\\xbf\\x06wT\\x80\\x94\\xb7\\x8b?L\\x0f\\xc2\\x11\\x1c\\'\\x8b\\xbf\\xe0\\xe6\\xa3s\\x9b\\xa1y\\xbf\\x12\\x90]\\x1ad\\x8es?\\xa0Q\\xfe`\\xe2\\xf1\\x10\\xbf\\x87]yx\"\\x97\\\\\\xbf\\x13\\xc4>\\xefo\\x9bq\\xbf`T\\xcf\\xba\\x08\\xc3J?(\\x887\\x8f\\x8a\\x06a\\xbfZ\\xd1{\\xa0\\x81\\xedf?\\xd8\\xe9\\x88 \\xc8\\x98b?8\\x1f\\xe5\\xfe\\x18_k?\\x8et\\x00\\x06\\x8eD3\\xbf\\xfc)\\x03\\x0f\\x03\\x1aP\\xbf0\\x83\\xc6\\x10r\\x19e\\xbf\\xb0\\x1b\\'\\xb3J\\x84J\\xbf `\\x92\\x8b\\x99ae?\\x08\\x83N\\xf2\\x9e\\xb7X\\xbf\\x10Q\\xa1jr\\xeeX?\\xd0\\xb1t\\x9b\\xc2Af\\xbf\\x01%\\xd2w\\x95\\x84t\\xbff\\xb4\\x91o\\xfb\\xbbu?M\\xefF\\xc7\\xde\\xdc{\\xbf\\x99\\x01?\\x8f\\x8cAu\\xbf\\xea\\xee\\xb4\\xb6\\xedEn\\xbf|&\\x91q\\xcc[K?v\\x8a\\xc6|i\\xabj?\\x12\\xdeGX\\x9d\\xde\\x80?\\xb4.\\x0c@\\x17\\x99^?}k\\xad>p\\xe6\\x83?2\\xac\\xf9\\xf4\\xef\\xf4t\\xbf\\xe0bH\\xc1\\xf8\\x87R\\xbf\\x10w`\\xf1\\xd74V\\xbfU8\\xe9\\x1eV\\xadp\\xbf\\x98\\xc8\\xf8XK\\xa2p\\xbf\\xf9\\xbfUs\\x05\\xc6p\\xbf\\x1c\\xc2\\xab\\xbctMh?\\xd8|\\xaa\\x08\\xaf\\xddw?\\t\\xc0\\xf1\\x044\\nY\\xbf\\xe4\\xb5\"\\xa0\\x085L\\xbf@\\xdd\\xd0\\'\\x1dY\\x13\\xbf\\x84\\x05\\r\\xfb\\xe5\\x17X\\xbf(?\\x16M\\x16!b?\\xd3\\xcdJ~J\\xcfV?c\\x15\\x14\\xce!Gj\\xbf\\xd2\\x0c\\xa2\\xef\\xc6uE?wza\\xc7\\xb8\\xa5\\x1c\\xbf[y\\xd4MX\\x07t\\xbf\\x03\\x00s\\xa2\\xd4\\x0cb\\xbfB\\xe4X\\xb5U\\x85n?\\xf6\\xb8\\xf5\\xde<\\x06~\\xbfPw\\xa4\\x948s[\\xbfg\\xca\\xf6\\xacC)e\\xbfP^c\\x95\\xeb&Y?\\x17\\x84\\xf8J\\x89\\xc4S?l\\t<^!\\xc2#?\\xdc\\xfe\\x98\\x0e\\xba`Z?\\xfcs\\x92\\xec\\x0c\\x87U?\\n\\x8f\\xa9\\xe80\\xf2j?n\\xe59\\xb9\\xe0\\xa1]?A\\x8e\\xa4nf\\xc9q?L\\xa6\\xbe\\x00\\xeaR\\x89\\xbfh\\x89\\x1c\\xcak\\xaex\\xbf\\xc0\\xc2E\\xc01\\x00Y?\\x90\\x10\\x9d^\\xf4\\xbaP\\xbfd9\\x01\\x18\\x8ada?\\x16gk\\x99\\xfb\\xb8W\\xbfL\\x7f\\x1a\\r\\xdfcy\\xbf\\xee9\\x91f\\x82\\x82\\x81?L\\x0f\\xc2\\x11\\x1c\\'\\x8b\\xbf\\xc8s\"\\xf6\\xaa\\xb7\\x99?\\xf4\\xa0\\x12J\\xe5M\\x81?\\t\\xfd\\xd5\\xe8Hy\\x81\\xbf2\\x921\\x89\\xad\\x10U\\xbf\\x15\\xee\\xf5|\\t\\xf2e\\xbf\\xacX\\xb4NL\\xb0\\x84?\\xe0Oo\\'\\xd4)c\\xbf\\xf8\\x159>\\x0b\\xd6%?\\x08\\xdee\\x82\\xd0hx\\xbfhL(1^zc?\\x84\\\\\\x966\\xc2\\x96b\\xbf\\x9c\\xef\\xe5X\\n\\x07Q\\xbf\\xcbHx\\x86\\x13/M?M\\xcd\\xc4\\x8b\\x87\\xf9\\x83?\\x80,\\x84\\xdf\\x17}\"?\\xc0\\x0f\\xceE\\xaa\\x8cC?\\n,\\x07\\x0f\\xfb)v?0\\x8a\\x11dF\\x1bw\\xbf\\xd0\\xeb\\x8d\\xff\\xdd\\xe7e\\xbf@\\x08_\\x82@q??\\xc0\\x95)\\xeb\\x0ctA?\\x81\\xae.\\xbdH\\x1f}?\\xfa\\x05+\\xe67\\xaai?\\x001\\xc1\\xbc\\x12\\xf0\\x03?\\xf0`\\xac\"\\xda\\xa24?\\x91\\xaa\\x9b\\x03,2q?\\x99}\\x99`\\xea\\xd9\\x85\\xbf\\xaef\\xbc\\x9e({s\\xbf\\x8diR\\xcfWit\\xbft\\x92\\x85c\\xd2x\\x82?Rs\\x95\\xe5k\\xd8c?fBT\\x0b\\xbc\\x8ew?\\xfc\\xc5S\\xe8&\\xfeM?\\x86\\xea\\xe1!\\xd1\\\\g?v\\x0c!\\x97\\x1dD|?Xhq\\xac\\x14zC\\xbf\\x80T%\\x1e\\xeb\\x01g\\xbfhAeG\\xf3\\xc7d\\xbfs\\xbb\\x8f\\xc8\\xc5\\x94G\\xbf\\xdd\\xafPh\\x91\\xf3[\\xbfH\\x80\\xb9ma;^\\xbf%\\x85\\xf0\\xbf\\x08}@?$g\\xa2GWy5\\xbf`q]JM\\x06D\\xbf\\xcd\\xd2\\xc1\\xac\\x9e;S?\\xae\\xebs\\xc5Q\\xd11?Fm\\x82\\xfe\\xaf\\xafX?\\x93\\x1e\\x9b\\xa5D\\xaaV?8\\xaa\\x8a\\x14~?T?\\xd5\\x0e\\xf9\\xf4\\xf3\\xbdk\\xbfw\\xa1\\xaa\\xb5=\\x7fq\\xbf\\x80A\\xe28\\xaa\\x12[\\xbf\\xe5x\\xdb\\xa8\\xf6\\xadt?\\xe0[\\xa4\\xf6\\xad\\x190? \\x83\\xcf\\xe2\\xa7O\\x07?K\\xca\\x9f\\x8a\\xaaU%\\xbfP\\xd4t\\x0e\\x99DF\\xbfS\\x0f\\x15oHLa?6\\x8f2\\x9c\\x01\\x1fS?Z\\xc4\\xa7\\xe5m\\x94a? \\xdaER]0p\\xbf\\x1e@\\x99D\\xd2(Q\\xbf\\x919a\\x94\\x7f\\xaaU?\\xa2\\x8b:\\xff\\x00\\x14*?D\\x89\\x19\\xb7\\x12\\x18N?\\x8d3L\\xacU\\xcfb?\\x07\\xbb\\xe1\\xd5\\x10in\\xbf \\xfe)\\x1a \\xb4l?\\xe0\\xe6\\xa3s\\x9b\\xa1y\\xbf\\xf4\\xa0\\x12J\\xe5M\\x81?S\\xbaT\\xce;6\\x90?\\x12\\xe6C\\xf3\\xbcoa?+\\x85\\x9f\\xd5\\n\\xa5n\\xbf\\xec9\\\\C\\xea\\xb49\\xbf\\xdc\\x0c\\xf0\\\\\\x95{i\\xbf.\\x11\\x04H/\\xe5q?\\xa5\\xd1\\xb1\\xb6t]a?\\xc2Q\\x90V>\\xb5u?\\xbb\\xa1\\xbe\\xd0\\xab\\x15t\\xbf\\xee\\xb4!!!\\xeb|\\xbf:\\xa6\\xeaw\\x1f\\xbcH?\\x08\\xc0Kl\\x1e\\x030?\\x00\\x95\\xc9\\xc5\\x16\\n#\\xbf\\x0b\\x11\\x9fM\\x13=t\\xbfh\\xe1:\\x19<\\x81s\\xbf\\xe2n\\xed\\xff\\xfbo[\\xbf\\x94\\xf3i0\\x97\\x9b^?\\xdc\\xacB\\x1c\\xd0!t?\\xac+\\x17a\\x0c\\xfdu\\xbfdW\\xa1\\xd7\\x13\\x14]?Op\\xe3\\xcbe\\xcd^?p\\xf2\\xaf\\xe8\\x8f\\x93r\\xbf\\xf0\\x98\\xe1G\\xb0\\x1d5?\\xb6\\xf9\\xc0\\x129{T\\xbf\\x90d\\xe8\\x8fa\\xc8T\\xbfJ|\\x89\\xd3\\xee\\x18t\\xbfy\\xd7\\x0bV\\xa5\\xb5|\\xbf\\n\\xa7\\xee^\\x92s\\x7f\\xbf\\x8e\\x9e\\x8fZq\\x0fv?\\xb8\\x8f\\xcc\\xda\\xd4An?\\xe0\\x82\\x07\\xc5\\x80\\x14X\\xbfJ;w8M\\x11U?\\xd0\\xf0\\xa8\\x01\\xcf\\x9bD\\xbft\\x12\\xa2z\\x92&N?\\x1a\\x93\\x8d\\x88\\x1c\\x7f^\\xbf\\x90<\\x043F\\xa57?f\\xe3\\x14R\\xc1]U\\xbf}%\\xe6V\\xe6\\xe8Z\\xbf\\x927\\x1a\\xac(\\xcck\\xbf\\xa9\\x00\\xf3x\\xc9\\xdeb?\\xb0\\xddF\\xa7J\\xaaf\\xbf\\x0b.\\x05D\\xbe\\xfeZ\\xbf\\xd4\\x8b\\x17\\xcb\\xd0\\xe8Z?V\\xcf\\x0ck\\x88\\xbc_?\\xee\\xab\\x7f\\x0c\\x87\\x96T?\\x85:>6\\x80\\xeb\\x82?nYl\\xe6\\x06\\xafe?d\\x196\\xca\\xd5\\x15p\\xbf\\x8e\\xe85\\xb5\\x94\\xadw?*\\x95\\x96D\\xc8/w\\xbf\\xee\\xa9\\xe4%\\xae\\xc9W?\\xe2\\xdf\\x9f\\xe7\\xc6\\xa0q?\\xcd\\x1c\\x9e\\xdf\\xf3YN?\\xe8.\\xcaT\\xcd\\xa1V\\xbf\\x03\\x10\\xfe)\\xbf\\xbca\\xbf\\xbc\\xa8\\xa0\\xb4(\\xa6P\\xbf\\xa0\\xcf\\x85\\xdd\\x16\\x97O\\xbf$\\xb9\\xcc\\xee\\xefwN\\xbf\\x8d\\x88_\\xe7\\x1d\\'a\\xbf\\x99\\xd8\\xe830pt?\\xe9\\xb8\\xe8~\\x8d\\x05t?\\xc0\\x9c\\xd4`\\xd3\\xa1N?\\x08[&d5\\xb0Y?t\\x14+\\x1d\\xd9\\xb0W\\xbf\\xe6\\xaeu:!\\xdaQ?5f\\xfb\\xb6\\x14Rm?\\x02\\x18jiR\\xa2v\\xbf\\x12\\x90]\\x1ad\\x8es?\\t\\xfd\\xd5\\xe8Hy\\x81\\xbf\\x11\\xe6C\\xf3\\xbcoa?\\xf11\\xc0\\x82\\x84c\\xa0?\"&\\x96\\xa8(\\xb9f\\xbfa\\x80bP1\\x8eb?e\\xde\\xb6K1\\x87\\x85\\xbfr\\x02x[\\x1c\\xe2r?J\\xa4S\\xb3\\x7fIx?\\xc8D\\xe8.v\\x8d\\x82?\\xc2o\\xa7F|\\xa3u\\xbf\\x82c\\xdc\\x9fd\\xb7d\\xbf\\x91mcE\\xc1\\x96\\x95?\\xc6\\xc6\\xc1\\xea,{r\\xbf\\x1c^\\'\"\\x8d\\xbb\\x84\\xbf\\xe8\\x87\\xca\\xd2\\xd8\\\\K\\xbf\\xe4\\x1b\\xa7.\\x18>p\\xbfTtr\\xa6@\\x0c\\x80\\xbf|_a\\xf4\\xe4\\xb5y?8\\'J\\xcd\\xd8\\x8en?\\xa3rP\\xc1\\xfd\\xe7Z\\xbf\\xec_\\xd7\\x0e\\xbdTd\\xbf\\x8eR\\xe1\\xc1\\xdc\\x80n\\xbf\\x19\\x13\\xa1bZ:x\\xbf\\x9c\\xdcw.\\x9c\\xe0T?2]\\x1aq}\\x96_\\xbf\\xeeF\\xcd%v\\xd1|\\xbf\\x00\\xf7\\xbb\\xcd\\xa9\\xba(?\\x8a\\xed\\x83\\xa1\\xa24f\\xbf65\\x93U<\\x04e\\xbf\\x80\\x7f\\xd2Al\\xfb\\x18\\xbf\\xabZU\\xd9\\x00FW?\\x9f\\xcfH\\x8d,|t\\xbfw\\xfe`\\x1f\\xaaYd?\\x00\\x04z\\xaa\\x10b\\x10?\\xa8u\\x02D\\tVk\\xbf\\xf1\\xb3u\\xdb\\xf1\\xc0b\\xbf\\xc0Z\\xabK\\xd4\\x8a2?/\\xae\\xe1\\xbcM\\x97f?\\xf8H\\xf0\\xd0/\\x8dY?\\xea&n\\x0c\\x03\\xd4l?\\x9e.\\xa8A\\xa6JP?H\\x03\\x93\\xb5\\xa4\\xb36\\xbfL\\xc6_q-\\x84Y\\xbf\\x10\\xcd?\\xf0b\\xc0 ?\\x14\\xd8\\\\\\xd8\\x11\\x87Z\\xbf \\xd5(\\xbdj\\x9a\\xfa\\xbe\\xbd\\x84\\x92\\x92d\\xa9i\\xbf&\\x12\\xeb\\x8e\\\\\\x99X?\\x80\\x85hu\\x05NP\\xbf\\x94\\xd4M0x\\xbd^?\"\\x99\\x11hW;Q?\\xe8H\"u\\x02\\xfb]?z\\x94\\xf5\\x0b\\xda\\xe2o\\xbf\\x84\\xf6p\\xe3fT8?\\xc0\\x04\\xce\\xef\\xdd\\xad1\\xbfB\"HJ\\x1a\\x801?\\x80\\xb0\\x91\\xa4\\xf5U)?\\xa6q\\xe9^\\tzV\\xbf\\x00\\xb0\\xd5X\\xdd\\xca\\xbf\\xbe\\x80\\x0c\\xb99[QJ?\\x02[\\x9d\\xb2\\xcazS?I\\x14\\xeb\\x9c\\x7f>_?G\\x95@\\x1d\\x16=X\\xbf@7#0gl\\xdd\\xbeP1c\\x02\\x1dM6\\xbf@D|\\xad\\xa3{\\'\\xbf\\xf0d\\xe8@bLb?\\xf2\\xc6\\x8aM%\\xe2\\\\\\xbf\\x80Q\\xfe`\\xe2\\xf1\\x10\\xbf2\\x921\\x89\\xad\\x10U\\xbf+\\x85\\x9f\\xd5\\n\\xa5n\\xbf!&\\x96\\xa8(\\xb9f\\xbf\\x19\\xcb\\xea1\\\\\\xd7z?\\xd0\\xe9B]\\xaa\\xf2]?\\xedZ\\x9ep\\x16\\x9di?\\x80\\xe2e\\xc3\\xe1\\xccf\\xbf\\x1c\\xec\\x83\\x1e\\xaf\\\\5\\xbf\\xa1\\x80\\xe9}E\\x14q\\xbf\\xa0\\x19\\x05\\xf0\\xab\\xe7X?\\x9a\\xbf\\xf1\\x85\\x0f\\r}?\\xee\\xfa<@\\xd7\\xc2S\\xbf\\x08\\x1f\\xc4\\x0e\\x8a\\x17\\x19?\\x80\\x17\\xff\\'N\\xfe=\\xbfp5)\\x87!\\xeeQ?\\x00\\x04_t\\xcb\\x7fT?\\xd0\"\\x95\\xfb\\x91\\xc3S?\\x80\\x07\\x9e\\xa4\\xc1[_?\\xa0\\x13\\x11e\\x1b\\xe8Q\\xbf\\xe1\\x9c0\\x00.\\x88y?\\xd4\\xb6\\xcf\\xc559s\\xbf\\x98\\xf8YK\\xa7lG?\\x8d\\x15\\xf4\\x88\\xdf\\x00v?(\\xf6\\xe1#4\\xd1_?\\xc4(X\\xd8\\x9e\\x97S?p\\x81`\\x0bc\\xb7`\\xbf\\xd0/\\xb2X\\x0bEL?\\x8a\\xdd\\x8a\\x01a\\x9av?\\xc0\\xe7\\xc0\\x15\\xf1F\\x11\\xbf\\x11[\\xe4\\x13\\x055j\\xbf\\xae\\xb7\\\\4\\x1d\\xf4k\\xbfp+\\xd0\\xe5\\x99\\x11B?\\xb8\\x8bEoPWW?Jp\\'\\x0b[Uc?@\\x9d\\xda\\xcaI \\x15?`WEM`V<\\xbf\\x98\\x80\\x1b\\xa7^\\xc2j\\xbf\\xc2\\x11_\\x9e\\xf3\\xc4q?(\\x00(\\x1b\\xbf]_?\\xd1c\\x00\\x8fR\\xc2f?\\xeb\\xc7L\\xec)\\x1fm?\\x81\\xfa\\x835P$Z\\xbf\\x96\\xfab\\x9a\\xec\\x8ed\\xbf\\xd4\\xd4Q\\x9fl\\xe0\\\\?\\x938\\x8b\\x8a\\x01\\xdfS\\xbf;\\xecM}\\x10\\xe2>?\\x88\\x91\\xdag\\x99HC\\xbf\\x1fP\\xc8y\\xbd\\xd0k?v\\x1b\\x13\\xed\\xf4/c\\xbfwd\\x8d\\x10a\\x8a;\\xbfi\\xa1\\xda\\xaf\\xeb\\xe2f\\xbf\\x85\\xac\\xf9ba\\x08`?\\xe0\\x99\\xb3\\xd9\\xb0]`\\xbfg\\x0f\\x89,7\\x8c1?h\\x91\\x8a9\\x0c|W\\xbf\\x8b\\xe2\\x02\\x99B\\x87\\x1d?\\x19*\\x9c\\x9f\\x8b\\xf5=\\xbfRj\\x9a\\x03\\x80\\xe3\\\\\\xbfL\\t\\xe0.\\xc2OC?\\x95\\x0c*\\x0f\\xb5IS?\\x1e\\xce\\x0bn\\xa9\\xb9`?\\x17\\xb0\\xec\\xbc\\xfb4p?p\\x071%\\xd4\\x87W\\xbf\\x0e]\\xa1\\xf2+\\xd3D? AB\\xe7\\xfa\\xe9 \\xbf\\x80c\\xc4\\xdat\\xd6\\xfd>\\xaa\\xd9\\xe5\\x8c%\\x9dZ?\\xb8\\xcc*?q\\x99g\\xbf\\x88]yx\"\\x97\\\\\\xbf\\x15\\xee\\xf5|\\t\\xf2e\\xbf\\xec9\\\\C\\xea\\xb49\\xbfa\\x80bP1\\x8eb?\\xd0\\xe9B]\\xaa\\xf2]?g\\x15\\x91\\xa5/}x?\\xe3\\xb4G7\\x03\\xd2m\\xbf0\\xbaq\\x15]J?\\xbfQ\\x0c.x\\x84\\x1dh?\\x10L\\x94\\xad\\xdc\\x1ec?\\x8d\\x80\\x9et\\x8f\\x0ed\\xbf\\xe8\\x0f+&\\xc6\\xceI?\\xb6\\x1b^6\\x8e\\x05P?\\xd5\\xf2\\x83\\x8f\\\\~-\\xbf\\x9b\\xd3z\\x8f1.x\\xbf,\\x9c\\\\\\x9f0\\xd44?`-n\\x9cz~]\\xbfD.\\xcb\\xd4\\x1e\\xafe\\xbf\\x90X\\xe5\\xc3K\\xbeh?x\\x8c\\x06\\xd3\\xdeFk?a\\xb3\\xeeV\\xde\\xb9p?`\\xec\\xd7\\x044\\x9ar\\xbf\\xab\\x10\\x0b-r\\x12K?\\xa8\\xde\\x8b\\x8el{e?\\x12\\xf8)\\xd7\\x82\\xe2`?\\x01c\\xec|\\x05=A\\xbf\\x1fe^\\x19\\x05\\xdc|\\xbf\\x7fZ\\x18\\x93\\xba\\xe9H\\xbf\\xa6|\\xea`1\\xf6`?\\xfd|Y}\\xb52x\\xbf\\xcb\\xc9=\\xe3\\x05\\x93^\\xbf\\x10H r\\xbap`\\xbf\\x1c\\x17\\xa9\\xa2]\\x03g\\xbfs\\x0b(\\x83\\\\\\xden?\\x8aV\\xef\\xee\\x88vg?\\x96\\xff\\xe1\\x92\\xbf\\xefB\\xbf\\xc7\\x0bu\\xbb?\\xbad\\xbf|\\x10\\x8f\\x86\\xaf\\xbdq\\xbf\\x8d\\x7f\\xc6\\xb7R\\x9di?$\\xe1\\xd2\\xf9\\xb9N\\x14?0\\xbd\\xad\\x87\\xd3\\xfeR?gu\\x82D<F\\\\?\\xdb\\x85\\xc2p\\x8e\\xa1d?<<U\\xf4\\xad\\x8a`?r{\\xa7\\x9c\\x01uz\\xbf\\x10\\xa4\\x8f\\xea\\xc5\\xddP\\xbfR]\\xba\\xda\\x8d0\\x1d\\xbf\\xc2(&J5\\x9c\\x7f\\xbf\\xf2%\\x1c\\xba\\xe4\\xe4p\\xbf\\x94\\x9a]\\x86vRi?o\\xdd(\\x85\\xb0\\xcbp\\xbf\\x12\\xa4\\xa6\\xd1\\x18\\xc7y?\\xff\\x88\\xbe\\xf4x\\xa2Q\\xbf\\x92\\xef~\\x9b\\xbd u\\xbfd\\xac\\xd5\\xbd\\xeb\\xd6Y?P\\x84\\x87}_\\x95*?\\xfd\\xe1\\xe7q\\x85ff?\\x0c*\\xaf\\xd1\\xae\\xaag?\\xb2U\\xe1l\\xbf\\x81\\x1f\\xbf\\xef\\x0ev\\xa8n\\xcbX?\\x8b\\x98hlcO]?\\xd7W\\x14\\xcf\\xb1\\xd1q\\xbfw\\x9b\\x8a\\x92\\x99\\nk\\xbf\\x1au\\xae\\xad\\x83>9?\\xac\\xd7\\x04h\\xa9>`\\xbf\\x8a\\x16\\xab3\\xbf\\x0eZ\\xbf\\x80\\t\\x93\\x03V]i\\xbf\\x94\\x9da@\\xa9<;\\xbf\\xae{Tj\\xa9Vl?\\x12\\xc4>\\xefo\\x9bq\\xbf\\xacX\\xb4NL\\xb0\\x84?\\xdc\\x0c\\xf0\\\\\\x95{i\\xbfe\\xde\\xb6K1\\x87\\x85\\xbf\\xefZ\\x9ep\\x16\\x9di?\\xe3\\xb4G7\\x03\\xd2m\\xbf\\xb4\\xd8\\xdelHn\\x98?\\x00\\xe0\\xd7\\x8f\\xb5\\x04s\\xbf\\x8e\\x8f\\x87\\x82\\x03\\xebm\\xbf)\\xb9Z\\x1d\\xa6@\\x94\\xbf\\x9cwo\\xbc\\xdd\\x0fz?\\xc0\\x8f\\x97\\x17QP}?~\\x16=\\xdc\\x15}Q\\xbf\\x01\\x86Z\\xd9v\\x00F\\xbfeV\\xc7\\x0b\\xb7j\\x89?W[\\xb4\\xb3\\xd9h\\x82?\\x89\\x04\\xd0R\\xd5\\xc2p?\\xc9%\\x14C\\xda\\x8b\\x83?!\\x16,\\xf9\\x991\\x84\\xbf\\x02\\xb7I\\x10V\\x82{\\xbf\\xdf\\x82-6\\x8a\\x1f\\x87?\\xfe\\xad7\\xbc5\\x19r\\xbfi\\xab\\x84\\xa3\\xe0\\x15y?i\\xc4\\xa4Y\\x8b\\x0b\\x8a?Z\\xcc|\\xce\\xab\\xd4`?r\\xd7\\x07\\xeaa;h?!\\xcc2F\\x03\\xb9\\x83?{\\xbe_\\x0f\\xb9\\xf9w\\xbf$\\xf0r\\xd5\\x05\\x91B?\\x96l\\x08V!c\\x82?\\x0c\\xad\\x8b\\x8dv\\xa0h?\\xbe\\xf5$QO\\xf3G\\xbf\\xe5\\x01\\xab\\xdcM\\x98|?I]/\\xee8\\xc7T\\xbf\\xd5[\\xca\\x99\\xc5\\x96i?>\\x85\\x0b\\x12\\xd6\\xbft?\\x13\\xc6WG\\xfb\\xd5Z?3-\\xa6\\x0f\\x04_]\\xbfh0g\\xb5\\xc0G^\\xbf\\x80\\x90\\xf7\\xb3\\xa9\\xf36\\xbf@\\xac\"@=|b\\xbf\\xa8\\xc7c2\\x96\\x10R\\xbf\\x80\\xee\\xedPt\\xe28\\xbf\\xa0\\xea\\xb7F4\\xdbD?\\x00PzF\\x08\\xdf\\xdd\\xbep\\x06bw\\xd9\\xc6N?\\x00\\x19\\x0e\\xea\\x8c\\x9c\\xd0>P\\xf3aY\\xcf6l? \\xad\\x1f^\\xc8\\xddY?\\x80\\xb7\\xfa*\\xdc\\xc9!?\\xc0\\x01<\\x99]6B?0cT\\xb7t/d\\xbf\\xd0\\x82\\x1b\\tE\\xddH\\xbf\\xc8vyv&kg?\\x00\\x91\\xb6\\xb4\\r!-\\xbf T\\xa5\\xc2\\x9f\\xed6?\\xe0\\xa0\\\\\\xed,\\x9aN\\xbf\\x00\\xb6\\xed;\\xec\\xad\"?\\xc0\\xf6\\x13\\xe6\\x0bD:?\\x80Y\\x7f\\xbc\\xad\\xe5*\\xbf@\\xf2[JxUR\\xbfP\\xb9\\xde\\x98!\\x88Q?@iCx\\\\:A?Hu\\xa3\\x01\\xd0\\x19L?8#dv\\xb4\\x12E?\\x00NDd\\xdb\\x92,\\xbf`\\x91j\\x98\\xac0S?\\x00|D\\x9b\\xb7T.\\xbf\\x00\\xaf\\x85\\x1di\\xe90\\xbf`T\\xcf\\xba\\x08\\xc3J?\\xe0Oo\\'\\xd4)c\\xbf/\\x11\\x04H/\\xe5q?y\\x02x[\\x1c\\xe2r?\\x80\\xe2e\\xc3\\xe1\\xccf\\xbfH\\xbaq\\x15]J?\\xbf\\xff\\xdf\\xd7\\x8f\\xb5\\x04s\\xbf\\x7f\\xf1P\\xaa5\\xbaz?PoZ\\x99\\xc0\\xc8G?\\x80ti\\xab\\xc4\\x88v? \\x03\\xf8\\xc3\\x81\\xfdr\\xbf\\xa0\\x9e*\\x10{\\xaa|\\xbfh\\xfde\\x88\\xb8\\x9dE?\\xa02\\x81\\xca\\xebF*? \\xa6\\xc3\\x7f<\\xd5b\\xbf n\\x8bZ\\xb1\\xae`\\xbf\\x80!5g\\x14\\x89o\\xbf\\x00\\xdc\\x99\\x83\\xc6\\x15g\\xbf\\x80\\xad\\xad\\xf4\\xf9\\x9fY?\\xc0Z+F\\x17`q?\\x00\\x1e]Ti\\xc2r\\xbf\\x00\\xfc(W\\x0f\\x89g?\\xe0P/\\xbf\\x03b^\\xbf~\\xa5\\x03s\\x81ts\\xbf\\x80\\\\\\xf2\\xfd\\x16<U\\xbf\\x00%\\xe4f\\xe1\\x0fI\\xbf L]6\\xcb\\xddS\\xbf\\x00\\x84\\x7f\\x14\\x14\\x04\\x1a?X\\x97A\\\\^\\xdcs\\xbf`\\xa9\\xad\\x1d\\xbb)g\\xbf@%\\xff.\\x15oW? JZO\\xae\\\\e?\\xc0\\x00xw\\x8d\\x11d\\xbf\\x00\\x80 \\xec\\xce\\x80\\xda\\xbe\\x00\\x8cF\\xebciZ\\xbf\\xa0\\xe7 $\\x9b\\x01S\\xbf\\x00\\x1ch`=\\x16N\\xbf\\x80o!`9P\\\\?\\xd7\\x91\\xdb\\xfd\\xd5qZ?\\xb8\\x07\\x03y\\xbf\\x12.?\\x14O_\\xa3\\xfa\\x1fC?\\x1eo\\xf1@\\xfa\\x0b`?\\xd0F1\\xc1\\x93`Q\\xbf;\\x13\\xd8\\xaa\\xbb\\xc0_\\xbf\\xd3\\xf8\\xff\\x91\\xa5\\xe2N?\\xb8\\x14\\xc9d\\x89\\xd4\\x17?\\xa6\\x8a \\xb0\\x98\\xa8=?\\xb6\\xf9{/g\\x84<?\\xe8\\xcc_$\\xc4\\x12[?$A\\x06\\xb4VWX\\xbf\\x10\\xf7\\x84\\xe4\\xcf\\xda\\x13?vJ\\x15\\x08\\x12Vh\\xbf\\xd0s\\x92\\xbc\\x93ML?4\\xc8NzR\\xd6I?Yb\\xd1\\xdf\\xe9\\xccD?\\xde\\x1db\\x0f\\x96kT\\xbf\\xe0\\xa9\\xd7\\x84T\\xaf\\x12\\xbfxr\\x7f\\x8a\\x91$C\\xbf<\\x86\\xc2s\\xb1a<\\xbf\\x14c\\xf3\\xdbB\\xb2I?J\\xecAu6\\xdeR?\\x94g\\x0e\\x03\\x9f4F?\\xefW\\x80p\\x8d\\x1eb?\"m\\xad\\rU\\x90\\x1f\\xbf\\xfcx\\xed=\\x1c&@?\\xe0\\'\\x02\\xc6\\xa1\\xdd\\x18\\xbf`3\\xfa\\x7f\\xd6t(?pZ\\xf5\\xd0\\x8b85?\\xf2_2\\xb90\\r[\\xbf(\\x887\\x8f\\x8a\\x06a\\xbf\\xf4\\x159>\\x0b\\xd6%?\\xa5\\xd1\\xb1\\xb6t]a?J\\xa4S\\xb3\\x7fIx?\\x1c\\xec\\x83\\x1e\\xaf\\\\5\\xbfQ\\x0c.x\\x84\\x1dh?\\x8e\\x8f\\x87\\x82\\x03\\xebm\\xbfPoZ\\x99\\xc0\\xc8G?\\xe3\\x82\\xf8\\x8a\\xbcxr?W\\xb7I7\\x17\\x95m?tM\\x8f\\xab\\xc0\\x8ed\\xbf\\xa8\\x91\\xf8\\xc9pVM\\xbf\\xba\\xa4V\\x9c\\xe3\\xcep?I\\x1d\\xe0\\x92~\\xc6@\\xbfz1\\xf4b\\xaa\\xd6q\\xbf\\x90\"k\\t\\xde{D\\xbf\\xa8\\x11\\xf6\\xb2\\xd3[a\\xbf\\x10\\x9f*zA\\x9cf\\xbf\\xa2\\x15]\\x92\\xe7\\x00d?\\xd8\\xa0~q>Tg?\\xec\\x14A\\xc4<\\xb0U?~\\x18)\\xce8\\xb7f\\xbf\\xb4Y\\x9d\\xb2?\\x92L?X\\xbc\\x93\\xb9\\xf2\\xd7 ?\\xb0l\\x10\\x06x Q?\\xaa\\r\\x82\\xf1\\xae H\\xbf+\\xadh\\x8b\\x07\\x07t\\xbfZl\\x82\\xd5\\xa0\\x8fc\\xbf\\xce\\xf0\\x11\\xdc\\x08kG\\xbf\\xc6\\x13\\xd5A\\xf3\\x98u\\xbf\\xc6IX.\\xa1\\x0eF?$g#o\\xab73\\xbf\\xa4\\x0f\\x1b\\x07\\x9f<^\\xbfg\\x12\\xa1!\\x07\\x91g?\\xcc\\x11\\xea\\xed\\xbb\\x9da?\\x80\\xc1x\\x86\\xd6\\x13\\xfb\\xbe\\x14\\xd9qE\\xebta\\xbf!\\x1d\\xc2\\xc4\\x15\\xe0g\\xbf\\xf4\\xc3ntn\\xd9v\\xbf\\xb495N\\xd7#U\\xbf ,0\\xcd\\xba\\xbad\\xbf \\x89y\\xeb\\xb2\\xe1K\\xbf\\xa0Vo[\\x89<`\\xbf\\x98t}\\xd2w\\xffC\\xbf\\xcdl\\xaa4\\xf34s?\\x95\\xa4.K\\x02\\x98c?;\\x7f\\xe9\\xd7_r&\\xbf\\xdf\\xc8\\x8c\\xb6\\xd4\\x87\\x83?Q\\x8c|N*\\xadn?uSSu\\xca\\xd4b\\xbf\\xac\\xb5~t\\xd2\\'`?(\\x86|\\x13\\xee\\'z\\xbf\\x808J\\x0ey\\r\\xf8>\\xeb\\x1e\\x8d3\\xcd\\x9e}?(\\xdb\\xeb\\xff\\xce\\xc6O\\xbf\\x90\\xdfc\\xdd\\xee\\xc6(\\xbf;F\\xf4\\x00\\xa8\\x01c\\xbf\\x0c\\xf9/\\xf8\\x08\\xf4b\\xbf\\xa0\\xa8\\xe7\\x1d\\x13\\xe6E?\\xa8\\xcd\\xad\\xa6NTV\\xbf\\xf0\\x12h\\x0e\\xb36^\\xbfh\\n\\xd3\\x93E\\xa0_?\\xd8\\xe6S\\xc0\\xc4\\x0c[?p\\x15\\xd4\\xff\\x80\\'K?[+5\\xf2\\x10\\xc2Z?\\xd0\\x13-e\\x1fMY?,\\x8e\\xd7\\xbe\\x06\\xc3g? C\\xec\\xc9+D6\\xbf M\\x90l\\x07\\xafZ\\xbfZ\\xd1{\\xa0\\x81\\xedf?\\x08\\xdee\\x82\\xd0hx\\xbf\\xc2Q\\x90V>\\xb5u?\\xc8D\\xe8.v\\x8d\\x82?\\xa0\\x80\\xe9}E\\x14q\\xbf\\x10L\\x94\\xad\\xdc\\x1ec?)\\xb9Z\\x1d\\xa6@\\x94\\xbf\\x80ti\\xab\\xc4\\x88v?W\\xb7I7\\x17\\x95m?\\xa0\\xb1\\xcf\\xe3;e\\x95?X_Kt\\xca\\xdcx\\xbf\\xdf\\xd2%j\\x02\\xe4\\x83\\xbf\\xc8\\xbfX\\xa6hI:\\xbf\\xfa\\xfa.\\xb7\\xcfrP?:\\xf7W\\x12\\xe7o\\x84\\xbf\\xa0P\\xb29\\xf1r~\\xbf\\xb0\\x90\\r\\xfa\\x1b\\xe0q\\xbfr?\\xe6SQ\\xb6\\x81\\xbf\\x1en\\xaa\\x94i\\xae\\x81?`\\x05\\x83\\xfe\\x84\\x18y?r\\xdfY\\x12S\\xd5\\x89\\xbf\\x84\\xb8\\x086\\x8c#w?\\x84\\x8f\\xb9\\x8c\\x93Ft\\xbf\\x07Rds\\xd6\\xb8\\x89\\xbf8\\xf1\\xff\\xc6\\x06\\x9e`\\xbf\\x08\\xa4x%\\xa0je\\xbf/\\x1b9\\x95/\\xa9}\\xbf\\x98IH(\\xfdei?Ck\\xb3\\xd2/jr\\xbf\\xce\\x1b\\x0e\\x85\\xbb\\xaf\\x7f\\xbf\\x00H\\xa0\\\\\\xac\\xf6!?\\x18\\xff#$4\\xc0_?\\xa0\\x17\\x9c\\x8e%7x\\xbfP\\xaa2\\xb6\\xd5\\xe7Q?\\xa8\"F\\xe5I;f\\xbf4,\\xac\\xbf\\xd1\\x80l\\xbf\\x08\\x07+\\xf3\\x1c\\xd5_\\xbf\\xb0\\xb3\\xb1\\xe9\\x86\\x13]?\\xf0\\x96\\xf3\"\\x82#T\\xbfp\\xe0\\xbc7=mU\\xbf\\x00\\xc8\\xf4\\xb3m_:\\xbf\\xd0\\xdb\\xd4\\xdb\\rMX\\xbf\\xa0\\x0c\\xa1#\\x19-U?\\x00=\\x98~\\xd1VT?\\xa0\\xeb\\xda\\x01vG]\\xbf@\\n\\xa0@\\xae\\x12!?/\\xa5\\x18\\xfc]\\xd6F\\xbfP\\x80\\x8bC:l@\\xbf@&zv\\\\Jn\\xbf\\xf0:\\xaf\\xd5}\\xffJ?@\\x8a\\xcb\\x83\\x08\\x1aN?\\x08Re\\xaa\\xe0?p?\\xc0j\\xf7\\x05\\xf4\\x864\\xbf\\x00\\xf2\\xc5W\\xc7\\xe9\\x13?\\x00\\x9c\\x96\\xaa\\xab-\\xfd>`\\xf0/\\xf9\\x91\\xa9P?\\xf0\\xce\\xe5\\xf9\\xc2\\xbaB?\\x00\\x80\\x0b\\x04\\xf8\\xbd\\x1b?\\x00\\xea\\xd4\\xd1\\x88\\xf93?\\x80\\xc3\\xa0Zs?#\\xbf\\x00\\x9a\\xc9/\\xdeBE\\xbf\\x80o\\xf4[\\x80\\xe4[\\xbf\\x98M\\xd2H-\\x8fh\\xbf\\xf0e\\xe1s\\xa1\\xc2\\x12?2\\xed\\x8b\\xa8\\xa5uQ\\xbf\\x000f\\xd6t\\x97\\x13?\\x00\\x07\\x8b\\xde\\xe9\\xd7R\\xbf\\x008/\\xa9\\xc4g\\xfa>`.^\\xc5\\xdf~U?\\xd8\\xe9\\x88 \\xc8\\x98b?hL(1^zc?\\xbe\\xa1\\xbe\\xd0\\xab\\x15t\\xbf\\xc7o\\xa7F|\\xa3u\\xbf\\xa0\\x19\\x05\\xf0\\xab\\xe7X?\\x8d\\x80\\x9et\\x8f\\x0ed\\xbf\\x9ewo\\xbc\\xdd\\x0fz?\\xe0\\x02\\xf8\\xc3\\x81\\xfdr\\xbftM\\x8f\\xab\\xc0\\x8ed\\xbfX_Kt\\xca\\xdcx\\xbfp\\xb4\\xfc[`W\\x80?P\\xc3\\xbcC\\xfc\\x96y?\\xde\\x80\\xd6\\xf6\\x88\\xeff\\xbf\\x00\\xd3\\xa0LA\\xf11\\xbf`\\xb3\\xd0Jx\\x11t?@M\\n$\\xfc|`?\\x80\\xa0O\\x0b\\xb9\\x8ev?\\xd00!L\\xc9\\x1fp?`U_\\xc1\\xde{m\\xbf@\\x9b\\xf8P\\xa5n|\\xbf@\\x7f\\x0f\\xcd\\xbb\\xeaR?\\x00:\\xc9@5GE?\\x00v\\xf1\\x9a\\x16\\x80&?x\\x01[\\x01\\xc1\\xaed?\\x00\\xb4\\x0c3\\xe99G\\xbf\\xa094$F\\xf2Q?\\x98\\x94\\xfb\\x97\\xa6[{?\\x80}\\x9c\\xab*\\x92C?\\x90\\xb6\\x81\\xc60\\xf1d?\\x82\\xe1\\xe37H\\xc9\\x82?\\x00\"{\\x15\\xe2\\x9d6\\xbf\\xe0A`\\x98\\xfb7W\\xbf\\x90?\\xa5%\\x83bp?\\xb0.\\xe1\\xb9=\\x16d\\xbf\\x00\\xe0\\xe0,\\x9d\\xe1\\x00?\\xc0\\x86\\x89wa{U?@\\xe4\\x17\\xae\\xed\\x1ed?@\\xe3\\x0b\\xed\\xb6\\xc0U?\\xb2\\xac\\xa1\\xdc\\xbf\\x10A\\xbf\\x80\\x88\\xce\\x1e[\"<?R\\x93\\xca\\x00o7t?\\x0cA\\x8b\\x94\\xed\\xdeq\\xbf\\xa0N\\xb8\\x08@\\xe58?^j4\\xcc\\xe8\\x16q\\xbfl\\xd5hp\\xe07]?[&\\x11\\t\\x0c\\x82c\\xbf\\x90b\\xb9\\xfa\\xce\\xc6D?\\x16J\\\\\\xff[\\x92r\\xbf\\xa4L\\x9a-,\\x02V\\xbf\\x846V\\xd5y\\x8d^\\xbf\\xd1\"\\xb1\\xfdM6\\x81?.\\x05\\x1d\\x84@\\xbas?:\\xed\\x15\\x88{.f?\\x88\\xa78\\'@\\xf6\\x81\\xbf\\x98\\xfb\\xb0\\xbe\\x9c\\xa4N?\\xccw\\x10\\\\p\\xb3J\\xbf`}\\xbc@\\x18w<? +\\n\\xdb\\x0f\\x9bH?\\x80;\\xcf\\xaal\\xf6X\\xbf\\xa0\\x07\\xe9\\xa7\\xcb\\x935?\\xc0\\x14\\xfc\\xe33\\xdfE?\\xecUH\\xd0\\x1f\\xeec?0\\x96\\xf7\\'\\xf7f[?\\xea0\\xeb\\xb4\\x86\\xb4Y\\xbf\\x8a01\\xbb4)S\\xbf\\x90E\\x18\\x15\\xe9-_\\xbfX\\xd9=\\x85}Fm\\xbf\\x90\\xf0eYd\\xe3u?\\xac\\x14\\x8b\\x84\\xb9Ye\\xbf8\\x1f\\xe5\\xfe\\x18_k?\\x84\\\\\\x966\\xc2\\x96b\\xbf\\xee\\xb4!!!\\xeb|\\xbf~c\\xdc\\x9fd\\xb7d\\xbf\\x9a\\xbf\\xf1\\x85\\x0f\\r}?\\xd2\\x0f+&\\xc6\\xceI?\\xc0\\x8f\\x97\\x17QP}?\\x80\\x9e*\\x10{\\xaa|\\xbf\\xa8\\x91\\xf8\\xc9pVM\\xbf\\xdf\\xd2%j\\x02\\xe4\\x83\\xbf`\\xc3\\xbcC\\xfc\\x96y?\\xca\\xa4;\\x94\\xb3\\xe3\\x9f?\\xe3l26V\\xa9v?z-\\x8cG\\xbb\\x92c\\xbf UC4^\\xbda?\\x90V\\x89\\x91\\xa43i\\xbf \\xa0\\xc0\\xd7\\x89[p?p\\xf0\\xda\\x03D\\xefc?\\xc8 :t\\xb2L|?`\\x1fQv\\xeeUx\\xbf8\\r\\x19\\xb4\\x85\\xeb\\x83?\\x18\\xa74,\\x07-p\\xbf\\xc0\\xd5u\\xc1\\x1d\\xa3;\\xbf:\\x00o\\x03\\xda\\xc7s?\\x00\\t\\xe3\\x02i%d\\xbf\\x02{\\x82c\\x92\\xa1r?\\xd0\\xc0Ub\\xf1$l\\xbf(\\xdac8r\\x81f?\\xb4K\\\\\\x9a\\x81\\xd0\\x90?\\xa0\\xaee1\\xa9\\xa92?n\\xb6\\xbf\\xe1\\x1aEy\\xbfd\\xfd+\\x9b\\xc9\\x8e\\x7f\\xbf\\xf8f~n\\x1e\\xefw?\\x00\\x96\\x95U\\xd5\\xea(?\\x10[\\x17%q/i?\\xe0e\\xf7]\\xb0\\x99E?P\\x8f\\xab\\xfe\\x86\\x8f_?\\x18\\xa8\\xca\\x925br\\xbf\\x8a\\x0b+kz\\xa0I?K\\xbf6&\\x91}B\\xbf\\xc3\\x0e\\xa0\\x03m\\x0eY\\xbf\\x88\\x9a\\xc7\\xd0\\xc8R_?\\x8e\\xfdr\\x1d\\xac\\xd8V\\xbfp \\xfa\\xbd\\xcb\\xbaV\\xbf\\x8bx\\xa1\\xf4XqP?\\x13D\\x07\\xae\\xc0\\xba;?\\xbd0\\xb9\\xbfiO^?\\x8f\\xff\\x1a&\\xaa\\xb6Q?\\xa0 \\x00\\xf1\\xa0!!?\\xdd4\\x02\\xd8\\x85r`\\xbfH\\xd4o\\x10J\\xecq?38\\x14}\\xba\\xc8`\\xbf\\x14A?S<4K?rz\\x07\\xd8\\x9d\\x9c`\\xbf\\x9e\\x85\\xa93\\n\\nR?%\\xb6D\\xd7F\\xc1X\\xbf\\x96?k\\x8e\\x9d\\xc6Q\\xbf\\xb4\\xeb\\xa9\\xf4\\xec\\x04T?\\x00{\\x02\\xd2U\\xdb\\x1b?a\\xf2w\\xb6\\x08z8\\xbfP\\x7f\\xb7\\x0cK\\xd6-?\\xf6\\xcf\\x86\\xf6\\xcb%[?\\xb4/mZ\\xf6\\x84c?\\xcctb\\xdf\\xd7.L?\\xce\\xdfX\\x18O)O?\\xff\\xae\\xc6\\xdb\\x02\\xf1W\\xbf\\x19\\x06\\x107]\\x86c\\xbf\\xac\\\\\\xe1\\xca\\x8f\\xcfb?\\r\\xf6\\xfc5\\x16\\xfee\\xbf\\x8et\\x00\\x06\\x8eD3\\xbf\\x9a\\xef\\xe5X\\n\\x07Q\\xbf4\\xa6\\xeaw\\x1f\\xbcH?\\x92mcE\\xc1\\x96\\x95?\\xf0\\xfa<@\\xd7\\xc2S\\xbf\\xb5\\x1b^6\\x8e\\x05P?\\x81\\x16=\\xdc\\x15}Q\\xbfp\\xfde\\x88\\xb8\\x9dE?\\xba\\xa4V\\x9c\\xe3\\xcep?\\xc8\\xbfX\\xa6hI:\\xbf\\xe6\\x80\\xd6\\xf6\\x88\\xeff\\xbf\\xe3l26V\\xa9v?3\\xa5\\x02!\\x94y\\x99?A\\xc2\\xa4\\x84\\xeb\\xd4k\\xbf\\xee\\xa7\\xc3\\x86\\x0eFb\\xbf\\xde\\xa2\\x04Bx]R?\\x9c\\xfc\\x16\\xc3\\xea\\xa2d\\xbf\\x0cXy\\x1d\\xb1\\x13f\\xbfl%k\\xf1\\xa6\\xdbi?\\xc0q\\xd0\\xee\\x88:R?|6\\x94>\\xf1Pq?\\xde\\xcb\\x15\\xc5\\xcd\\xc0e\\xbf\\x98\\x12\\xbc\\xcd\\xb4JI\\xbfw\\x188h\\xca\\xa9X\\xbf\\xd8\\x10O\\xcf\\xfb\\xd9V\\xbfX\\xa4-\\x1a\\x91\\x1bP?\\r^\\x849\\xe6\\xb4x\\xbfUfD\\x9e*\\x91X\\xbfX\\xae\\xc3jL1e?\\xf8\\xc6\\xffA\\xc03u\\xbfA\\xf0\\xda8\\xc0aE?p\\xb7\\x0f\\xfd\\x85E*?\\xac\\x8f$\\xb4\\x8e9H\\xbf\\xf9\\xf8\\xa1&\\xc6]Y?\\x8c\\x9c\\xe3!\\x86\\xcaI?\\xd8\\xc8IA\\xb2\\x12&\\xbf\\xb4E\\x18\\x8c\\xec:O\\xbf\\x1e\\nB\\xba$\\xcb[\\xbf\\x84\\xf1\\xc0\\xb0,\\xdaO\\xbf\\x00\\x87\\xa44E1I\\xbfDC\\xf1\\r\\xabX=\\xbf\\xecs`\\xdd\\x8f\\x83 \\xbf%2\\xc0X\\xed0C?\\x80\\x015YV\\xa7P?\\x0b\\xe0A\\xd4B\\x9cD?\\xac\\x86\\xb6\\x03k{2?L\\x87y\\x0f\\xec\\xb0B\\xbf\\xd6\\x9fA\\xa5|zP?8\\x1d\\xd5\\x84\\xa4$P\\xbf<\\xcdO\\xcb\\\\M.?\\xba\\x8a\\xa7\\nmqS\\xbf\\x8e{\\t\\xbcu\\xd57?\\x8bt \\x03\\x12\\xba=\\xbf\\x02\\x06\\xd8\\xe7b\\xa1H?\\x04dk^J\\xbf<\\xbf\\xc1m\\xc8\\xf9Q\\xfc1?\\xc01\\xb0im\\xbd\\xf1>\\x10\\x9f\\x0f\\x95\\n%2\\xbfc3\\xba\\xd9\\x8c\\xc3>?\\x88#\\xdf\\x98F\\xef+\\xbf\\xc0\\x85\\xea\\xfejO\\x1d?\\xdb\\xe6|\\xf7\\xdb\\xdfQ\\xbf\\xfd \\xfb\\xa2\\x14%H\\xbfD\\x1fMc\\x17;\\x10?\\x1c \\x88\\x92\\xdb\\xdf#?\\xe8\\x12r\\xfb\\xb5\\xbf(?\\xc8\\x9b=ei\\x0b\"?\\xb4YsF\\xfc\\x85P\\xbf\\xaee?\\xf8\\xbc\\x87I?\\xfc)\\x03\\x0f\\x03\\x1aP\\xbf\\xccHx\\x86\\x13/M?\\x08\\xc0Kl\\x1e\\x030?\\xc6\\xc6\\xc1\\xea,{r\\xbf\\x08\\x1f\\xc4\\x0e\\x8a\\x17\\x19?\\xd7\\xf2\\x83\\x8f\\\\~-\\xbf\\x00\\x86Z\\xd9v\\x00F\\xbf\\xa02\\x81\\xca\\xebF*?I\\x1d\\xe0\\x92~\\xc6@\\xbf\\xfa\\xfa.\\xb7\\xcfrP? \\xd3\\xa0LA\\xf11\\xbfz-\\x8cG\\xbb\\x92c\\xbfA\\xc2\\xa4\\x84\\xeb\\xd4k\\xbf\\xc5G\\x90\\xb3B\\x96m?\\xc0\\x94^X\\xb9?\\x08?\\x80\\x12\\xb4\\x12\\x1f\\xf1\\x03\\xbf\\x10\\x1c\\xc4\\xb4pUB?\\xc0\\xecj\\xec\\n\\x994?\\x94\\xbc\\xc7\\x17\\xb4mU\\xbf\\xc0>\\xfc\\xf7\\x97\\xc4??\\xfd\\xaf=\\x92\\\\5b\\xbf\\x00\\\\\\xa7($\\xb3G?\\x1c\\x07\\xce\\x93XT;?/:^z\\xb2\\xd0@\\xbf\\xe0\\x9c&ZJn3?\\xe2\\x0f\\xd8X\\x18\\x14I\\xbf\\x90L\\xa2\\x7f\\x9d\\x98-?DCg= \\xd2H\\xbf`\\x89\\x0c[kCX\\xbf\\x9a\\x98\\xc1\\xf3=\\xcaD\\xbf\\xd8|\\x0e\\t\\'MV?\\x1a\\xe6\\xe4\\x9b\\x18\\x98F?\\xcc\\xfe/\\x1c\\xe6\\x1fF? \\x16\\xe4\\x93LJ!?@\\xfcf\\xe0\\xd2\\xfb.?#D\\xee\\xd1\\xeb)U?t\\xd9\\xbf\\x9e7\\xa01\\xbf\\xe4\\x85\\xa8Jg(C\\xbfX\\xbe\\x06\\xf4r\\xb5Q\\xbf\\x80P\\xe3R\\x8a<\\x1e?\\xe0R\\xb6\\xee\\x02[I\\xbf\\x98\\x16\\x13]\\x8f\\x0ec\\xbf\\x18\\xa6\\x98\\xd2\\xf1\\te?d\\xde\\xbc\\x9ds\\xcfi?\\xa5d\\x1c\\xb3\\x8b%u\\xbf@\\xbb\\xe7m4\\xef\\x10?\\xfe\\x92\\xa0\\xc2<\\x931\\xbf\\x86\\xc4N\\xe2<\\xf6~\\xbf(\\xc1\\xf7\\r\\xb6-n\\xbf\\x18q\\x96\\x7f*~s?H\\x1c\\xf4\\x02\\x80\\x00p\\xbf$\\xfc#\\x0f\\xd5\\xc6u?\\x9c,\\xda\\xd3h\\xc2e\\xbf\\x08z\\xac:\\xee\\xa6\\\\\\xbf\\x80e4\\xf6\\xe15#?,\\xcb\\xb0\\xd9FEZ?d\\xe3\\x12#s\\x89Q?\\x00\\x9e\\xf9?xYf?`A\\xe9\\x8d\\x9b\\xaf^?\\x80Q\\xb0\\xd60\\x8b\\x18?\\x00\\x98\\xeb\\x1dp4D?\\xe4\\xa5\\xb2\\x17\\x95\\x86s\\xbf.y5V\\x02\\x8dz\\xbf#\\xf6[}h\\xcfX?/\\xefz,\\xc4\\xb3V\\xbf\\x00\\xa4\\xa2\\xb2Q\\x91A?\\x800\\x85\\xd9;\\x85a\\xbf\\x10\\xae\\x07\\xac\\xc8\\x98e\\xbfx\\xcc\\x81\\xb87cx?0\\x83\\xc6\\x10r\\x19e\\xbfL\\xcd\\xc4\\x8b\\x87\\xf9\\x83?\\x00\\x95\\xc9\\xc5\\x16\\n#\\xbf\\x1d^\\'\"\\x8d\\xbb\\x84\\xbf\\x80\\x17\\xff\\'N\\xfe=\\xbf\\x9e\\xd3z\\x8f1.x\\xbfeV\\xc7\\x0b\\xb7j\\x89? \\xa6\\xc3\\x7f<\\xd5b\\xbfz1\\xf4b\\xaa\\xd6q\\xbf:\\xf7W\\x12\\xe7o\\x84\\xbf`\\xb3\\xd0Jx\\x11t?0UC4^\\xbda?\\xee\\xa7\\xc3\\x86\\x0eFb\\xbf\\xc0\\x94^X\\xb9?\\x08?~%9\\xecNg\\x90?\\x00&N=\\xfc\\xf6g?\\x00\\x15\\x96R\\x9f\\xd3f?$\\xcdu!4^\\x81?\\x98\\xd2V\\x03\\xc5w{\\xbf\\xc0I\\x17\\xdc\\xe3\\x07w\\xbf(\\xe3d\\x83P-u? q\\x9e<\\x191j?\\xe0\\xbf\\x8f\\xdf\\xdb\\x9cG?\\xfd]\\xe70/Es?`\\xfa\\xccL\\xcc\\x19g\\xbf\\xa2\\xa1\\xfb\\x97\\xf9up?\\xacb(^\\xc6\\xbe\\x87?@\\x1c\\xac0&\\x9dY\\xbf\\x80M<]y\\xa5)\\xbf\\xb2\\xf4E\\x95swy?X#P\\xf2\\xd7Te?\\xf0@\\xa9k\\xbb\\x15V?\\xf0\\x03\\x8e\\xe1\\xed\\xb9o?<\\xcb\\x08\\xee/\\x9cs\\xbf\\x90wg\\xb7\\x06mg\\xbf\\xa0\\xd5U\\xb6\\xe1h]?\\xf8o\\x1ch\\x89\\x15m?\\x808\\x15\\xe8n\\x9dp?\\x1al\\xf7\\xf2\\x04\\xb4m?\\xc0c\\x81\\'\\x8bf6?\\xc0\\xd3A\\x95\\x1588\\xbf\\xf4\\xc1\\x8e\\xf1\\x005\\x7f?\\x00;\\xacK\\xb3\\xdd+\\xbfd\\xd4h\\xa06\\x18g?\\xbch\\xcbN\\xbb\\xabd\\xbf \\x81\\xe0\\x8c\\x12\\xbe+?\\xb0x)6\\xed\\x87\\x1d\\xbf\\x10\\xda\\xdc\\xa9\\xb3\\x7fV\\xbf\\x00\\x0c\\xc80N)\\'\\xbf\\x00x\\xfa\\xd9\\x85\\xaa\\x0e\\xbf0{Ad\\xb1\\xeb\\\\\\xbf0\\xed\\xa6\\xe9\\xb9\\xa9^? \\xe7;1\\xfc\\xaa0?P\\xebuy\\x15\\xaa_\\xbf\\xa0N\\xbd{\\x0cA<?@\\xf4\\xe9\\xf3\\xc6\\xb59\\xbfx\\xa6\\x93.\\x11@E? \\x8e\\xa6\\x1a\\x8ag]?\\xc0\\x96<\\xea\\x8a\\xdaC\\xbfP\\x95mh:<R\\xbf\\x00\\xae\\xf0\\x95\\x03/\\x10?\\xc0\\x02\\xbe\\x16\\x85E5\\xbf\\x00\\xac\\x00\\xaf\\xef\\t\\x04\\xbf\\x80\\x8b\\xdbx\\xba\\x86\\xd0\\xbe\\xc0\\x9f\\xc4\\xcc\\x99\\x071\\xbf\\x00\\x00\\x1a\\xacPw\\xf7>\\xf0H\\xc5\\x8a\\x98Ka\\xbf\\x00\\x87\\x82\\xa6\\xf0>2?\\x00\\xba\\xe2\\xde\\x8b\\xc0\\x02?\\xb0\\x1b\\'\\xb3J\\x84J\\xbf\\x80,\\x84\\xdf\\x17}\"?\\x0b\\x11\\x9fM\\x13=t\\xbf\\xe8\\x87\\xca\\xd2\\xd8\\\\K\\xbfx5)\\x87!\\xeeQ?,\\x9c\\\\\\x9f0\\xd44?W[\\xb4\\xb3\\xd9h\\x82?\\xe0m\\x8bZ\\xb1\\xae`\\xbf\\xa0\"k\\t\\xde{D\\xbf\\xa0P\\xb29\\xf1r~\\xbf@M\\n$\\xfc|`?\\x90V\\x89\\x91\\xa43i\\xbf\\xde\\xa2\\x04Bx]R?\\x00\\x13\\xb4\\x12\\x1f\\xf1\\x03\\xbf\\x00&N=\\xfc\\xf6g?h\\xf4O\\xf8\\xfb(\\x8a?\\x00\\x7f\\\\\\x07\\xd0|g?\\x00\\x8a\\xda0\\x94(j?\\x08\\x1f\\xb1\\xad\\x9a8\\x80\\xbf@\\xa5\\x1bI`\\x15h\\xbft!+\\xfbcPy?P\\xab\\x90\\xf6(\\xaau\\xbf\\xa0[OO\\xf6\\x9cd?\\x8e\\x82\\xdf\\x92f\\xac\\x80? \\xa8\\xe2\\x0e\\\\\\xe1t?\\x80\\xfe\\xa2\\xda\\x1c\\xdf,\\xbf(,K\\x17:\\x0el?\\x00\\x032\\xee\\xc4\\xe8]\\xbf@\\x92X\\xf9D\\xca`\\xbf\\x1e5\\xa0~\\xea\\xfe{?\\xa0BF\\xb2\\x95\\xd9[?\\x00{\\xef\\xd9b\\x1f,?\\x00\\xd8?\\x91\\xad\\xbe!\\xbf\\x80\\xb9\\x07]\\x95\\xa9>? ?\\xc8\\x84IOX?p\\xf3\\xd2\\x10\\xe6\\xa3\\\\?@\\x08\\xb7\\x08\\xaa\\x00A\\xbf Z\\'N\\x87\\xfeV\\xbf\\x08\\xb2\\x06x\\t\\x13S\\xbf`\\x90PJu\\x08Z\\xbf\\x80;\"\\xafQ\\xf6L\\xbf\\xb0E\\xf30\\x94\\xbaP\\xbf\\xc0\\x19\\xe0L{fO?\\xc0 Vu\\x80t\\\\?\\x00\\xcc\\xc0s\\xff\\x9a.\\xbf\\xc0-\\xfc\"\\xa4\\x830?@\\xd9gR9\\xd6L\\xbf@\\xcf\\xbd,\\xa2\\xb3`?P22j\\xd5\\x12m\\xbf\\x00\\x10\\xc4\\xfe\\\\\\xe4\\xe4\\xbe\\x80k9U|aU?\\x0c)\\xb7?k3h?\\x00\\x883b\\x8b\\x17\\r\\xbf@\\xaa_^\\x1e1H?\\x00\\x80~^\\xaa\\xc7+\\xbf\\x80\\xcfQ\\xd0\\x82\\xf5H?\\x00G1\\x8fO\\xd4\\x16\\xbf\\x00\\x10m\\x81\\x1b\\x81!\\xbf\\x00\\xbcW\\x9c\\xf7D,?\\xc0\\xc6D\\x0b\\xa7)H\\xbf\\x80c\\x05\\'\\xb5OS\\xbf\\x00\\xb7\\xcd\\xd4\\x030V\\xbf\\xf0c\\xb4+U\\x84b\\xbf\\xe8\\x07=\\xf3u$\\x1a\\xbf\\xb8K\\xbe\\x9a\\xfchH\\xbf\\x00t\\xfba\\x8el\\x1e?\\x009\\xc2|\\x05DM\\xbf\\x00\\xce\\x95\\xb7W!*?\\x80\\xd2\\xe4K\\x86/D? `\\x92\\x8b\\x99ae?\\xc0\\x0f\\xceE\\xaa\\x8cC?h\\xe1:\\x19<\\x81s\\xbf\\xe4\\x1b\\xa7.\\x18>p\\xbf\\x00\\x04_t\\xcb\\x7fT?p-n\\x9cz~]\\xbf\\x89\\x04\\xd0R\\xd5\\xc2p?\\x00!5g\\x14\\x89o\\xbf\\xa8\\x11\\xf6\\xb2\\xd3[a\\xbf\\xb0\\x90\\r\\xfa\\x1b\\xe0q\\xbf\\x80\\xa0O\\x0b\\xb9\\x8ev? \\xa0\\xc0\\xd7\\x89[p?\\x98\\xfc\\x16\\xc3\\xea\\xa2d\\xbf0\\x1c\\xc4\\xb4pUB?\\x00\\x15\\x96R\\x9f\\xd3f?\\x00\\x7f\\\\\\x07\\xd0|g?@\\x13\\xb9\\x81Lp\\x80?\\xc01`\\xa0\\xbb\\x8ai?\\xa0m6`\\x0c\\xfbq\\xbf\\x00\\xd5$\\xdf\\x83\\x93z\\xbf\\x00\\x97\\x8b\\x1f\\xea\\x88@?\\x00\\x00\\x9b\\xde\\x98\\x1ae\\xbf\\x00Zl]e\\x0f+\\xbfXK.\\x8a\\x98xg?\\x00\\x9c\\r\\xb2PQg?\\x00R\\r\\xcb\\x86u#? :\\xa1\\x1f\\trw?\\x00\\xb8:\\\\\\xcf\\x191?\\x80\\x87\\xcf\\xe8\\x97\\xdc\\\\?t\\x99,\\xb2\\xf6\\xbc\\x81?\\x00\\xae&6\\xdcq:?\\x00\\x85k\\x93I3L\\xbf\\xc0v\\xa7\\x01\\xe9\\xb3i?\\x00Q}\\xfa\\xae%\\\\\\xbf\\x000\\xecp\\x90\\xa1-?\\x00\\xf3\\xb9\\x178\\xd2X?\\xc0f\\x99\\xb622]?\\x00\\x1d\\x8b[\\x83mF?\\xa6^\\x1e\\x92@\\xe2a?`k\\xbc\\xa4\\xbd\\x951?\\x80\\x80\\xea\\xab-\\xd4 ?@\\xdf\\xad\\x08\\xfd\\x8bC\\xbf@\\r\\xa2\\xca\\xde\\xfe]?\\x80\\x17\\x01c\\xad\\xea_?B\\x88x\\xf43\\x85l\\xbf0\\xeb\\x0e\\x1a\\x82\\xa3K\\xbf\\xb0\\x03\\x9a4r3:\\xbf\\xcb&\\xc8\\x14\\x96\\x99v\\xbfH\\tIn\\xfd\\xb6g\\xbf\\xc2&F\\xa6\\xcf\\x8dd?`\\x9e\\xa6\\x16\\xd1\\xfc_\\xbf\\'\\xcb\\xb4\\xea\\xb8\\x0eo?\\xc0`\\x1b\\x9d\\xe3\\xfbN\\xbf\\xac\\x93\\x94\\xa2\\x9eHa\\xbf\\xc0\\x8e\\xe2\\x1c\\xbc~-?h\\x81%@_\\xbfD?\\x94\\xeek\\x04\\xf3\\xa1R? \\x04,g\\x84\\x85Y?P\\x10\\xd3\\xa9\\xcf\\xc7C?\\x80\\xdcAg\\x9dR+?\\x80@,^TG5?\\xb0W,\\xe2\\xd7\\xf8e\\xbf\\xe4N\\x0c\\xaeG;i\\xbf\\x94${\\xf5g\\x82\\x18?E\\x03\\xac\\x06RvQ\\xbf\\x00\\x93_\\x1fU\\x90:\\xbf@p#`\\xe6\\xbdP\\xbf\\x00\\xf6\\xaa&{2U\\xbf\\xd8\\x8d\\xac\\xa3\\x03%g?\\x08\\x83N\\xf2\\x9e\\xb7X\\xbf\\n,\\x07\\x0f\\xfb)v?\\xe2n\\xed\\xff\\xfbo[\\xbfTtr\\xa6@\\x0c\\x80\\xbf\\xd0\"\\x95\\xfb\\x91\\xc3S?B.\\xcb\\xd4\\x1e\\xafe\\xbf\\xc9%\\x14C\\xda\\x8b\\x83?\\x00\\xdc\\x99\\x83\\xc6\\x15g\\xbf\\x10\\x9f*zA\\x9cf\\xbfp?\\xe6SQ\\xb6\\x81\\xbf\\xd00!L\\xc9\\x1fp?p\\xf0\\xda\\x03D\\xefc?\\x0eXy\\x1d\\xb1\\x13f\\xbf\\xc0\\xecj\\xec\\n\\x994?$\\xcdu!4^\\x81?\\x00\\x8a\\xda0\\x94(j?\\x002`\\xa0\\xbb\\x8ai?@f>\\r\\x11\\xa4\\x81? \\x14\\xcc\\xd3\\x90\\x1ey\\xbf\\xc0L\\xabv\\xf4\\xc8j\\xbf\\x98m\\xde[\\xec\\xf2v?\\x00H\\xd4\\x9f*\\xcbS\\xbf\\x10\\xed\\x1f`\\x04\\xc3[?\\rdi\\x14\\x85C\\x80?\\x00\\xf5\\x86=\\xd1\\xf6P?\\xa0&d\\xd2\\x91\\xedc?P\\xdd\\x8b\\xf5\\x98\\xff~?`,\\x14\\n\\x9c\\xd6^\\xbf\\x00\\xb4\\xbd\\xa8\\xd9\\xbd\\x1a\\xbf\\x90<\\x13\\x9b\\x85\\xbbv?\\xe0&\\x89\"\\x83\\x0fU?\\xe0\\xcelt\\x98\\xbf@?`\\xff\\xce@\\x18}d?\\x88\\xcd\\xea\\xb7B\\xaea\\xbf\\x80f\\x13*)\\x8d:\\xbf\\xc0\\xdb\\x83\\xce\\x88}]?`\\xe2\\xe2\\'\\x8dL_?@h2@\\xfd\\xc3R?\\x10o\\x85\\xee\\x0cFf\\xbf V7\\x93\\xde\\xa6L?\\xd8\\x05\\xf8h\\xdc\\x95i?\\xf8tW\\x88Q\\x1fW\\xbf8\"\\x8a\"22Y\\xbf*\\xdalr2\\xebr\\xbfh\\xb6uv\\x04\\xbfm? k}\\xf7\\xac\\xa4,\\xbf\\xdb\\x9crl\\xd5-G?hN\\xe6c\\x80\\xccF\\xbf9@sD\\xb9Hr?\\x927\\x14\\x82\\x1b\\xb0a\\xbf\\x18=\\xab\\xe8\\x10\\xbck?&\\x0cJ\\xd2n\\x13_\\xbf\\xac=\\xe9\\x13R\\x9f]?8\\xaf.E\\xf2\\xfdV\\xbf\\x80A\\xad\\x11$\\xbd\\x1a?\\x90$\\x8b\\xf8\\x1a9Q\\xbf\\x88\\x86\\x05B6&L\\xbf\\x00\\xc1?u\\xfa\\x8bY\\xbf@g\\xbf\\xf5|\\x17L\\xbf ?d\\x92\\x9f\\xf0>?\\xc0\\xfc\\x8e\\xe22\\x13T?6\\xf97\\x7f7\\xb3q?\\xfep>\\x19\\xa9\\x13p?\\xb6G\\xae\\xa6o\\xa3C\\xbf\\xba\\x18i\\xb6\\x10cJ?\\x00;\\x1fV\\xdc\\xa1<? t\\xfe\\xfa\\xfb-Z?\\xb8\\xe1\\xfb\\x08sWg?\\xf8\\x83\\x8e!^5l\\xbf\\x08Q\\xa1jr\\xeeX?,\\x8a\\x11dF\\x1bw\\xbf\\x90\\xf3i0\\x97\\x9b^?x_a\\xf4\\xe4\\xb5y?\\x88\\x07\\x9e\\xa4\\xc1[_?\\x90X\\xe5\\xc3K\\xbeh?#\\x16,\\xf9\\x991\\x84\\xbf\\x80\\xad\\xad\\xf4\\xf9\\x9fY?\\xa2\\x15]\\x92\\xe7\\x00d?\\x1an\\xaa\\x94i\\xae\\x81?\\xa0U_\\xc1\\xde{m\\xbf\\xc8 :t\\xb2L|?m%k\\xf1\\xa6\\xdbi?\\x94\\xbc\\xc7\\x17\\xb4mU\\xbf\\x98\\xd2V\\x03\\xc5w{\\xbf\\x08\\x1f\\xb1\\xad\\x9a8\\x80\\xbf\\xa0m6`\\x0c\\xfbq\\xbf \\x14\\xcc\\xd3\\x90\\x1ey\\xbf\\xc8\\x1a\\x7f\\xf0\\x8bx\\x8f?\\x80\\xf8\\xba\\x97\\x16up?\\x80\\x011e\\xb2\\x035\\xbf\\x80\\x18G\\xf4J5J?\\xf8oE*\\x9b\\xcei\\xbf\\x89\\xa7\\xedR\\x1f\\x87r\\xbf \\xabw\\n2\\x15`\\xbf\\xf0\\x01r/l\\x9dT?\\xce\\xeb\\xbc\\x19\\xb8\\xe6\\x83\\xbf\\xf8\\x83sY\\xa6^o?\\n\\x92\\x95\\xa9m\\x02y?\\xdd6\\xac\\xda\\x03\\x9b\\x81\\xbf\\x00\\xf6\\xf4\\x00\\xee4t\\xbf$\\x84R\\xe5\\xd4\\xa1j\\xbf\\xd0(\\':\\xa3Bb\\xbf@\\xac\\x1e\\xa0\\xb3Ja?\\x80\\x91o\\xbbP8B?\\xc8%\\xe6\\xa3\\xd5kl\\xbf\\xe0\\x8a\\x8a\\xe4<#U\\xbf\\x10`wTOGb\\xbf\\xde\\xb4\\x13\\x86q!q?\\xd0\\xa0\\x96\\xac\\x12>d?\\x00\\xc6\\xb5\\x00g\\x88S?\\x00p5\\x04\\x9c4[?\\x00E\\xbc&\\x8e\\x0cZ\\xbf0V\\xd4\\xc0\\xbd\\x1a`\\xbf`s\\xa5\\xb2A\\x86V?\\x80O\\x85\\x7f1\\x9eJ\\xbf\\x98\\xd8\\xf1\\x82=\\xc0A?\\xf8K\\xf2\\x18\\xe0Of\\xbfX\\x9bATz\\xeap?\\xa0\\x8dS\\xe2\\xcc\\xc7A\\xbf\\x00\\x17Y\\x94\\x14\\xf1X\\xbf\\xba\\x11[\\xd0\\xe2\\xc5r\\xbf\\xe0\\x9d\\x8a\\x96\\xa46B?\\xc0\\x9ef\\x0c^gN\\xbf\\x00aU\\xd9;\\xa9\\x1a?@\\xa8\\x01\\xfcS\\x7fV\\xbf\\xc0\\xea\\xe2\\x02W\\xce7\\xbf\\x00\\x00\\x0b\\x07\\x07\\x8b\\xc2>\\x00\\x0bm\\xf6\\xfe03\\xbf\\x009y\\xa4S\\xb5F?\\x00\\xc1f\\x85\\x97\\x18L?\\xa0_\\xc6o\\xa6wb?@\\xb3\\x91\\x1b\\xeeKl?\\xda%\\x9an\\x99\\xf7>\\xbf\\xfcs\\xf8\\xfb\\xc1RO?\\x00\\x90\\xc8\\xd7\\xbb\\xb5\\x19?@\\x98\\xbe\\x95x\\xbdU?\\x00:8\\x15\\xa4[E\\xbf\\xc0\\xe8\\xc9\\x81\\xa6G\\\\\\xbf\\xd0\\xb1t\\x9b\\xc2Af\\xbf\\xe0\\xeb\\x8d\\xff\\xdd\\xe7e\\xbf\\xe4\\xacB\\x1c\\xd0!t?8\\'J\\xcd\\xd8\\x8en?\\xa0\\x13\\x11e\\x1b\\xe8Q\\xbfx\\x8c\\x06\\xd3\\xdeFk?\\x04\\xb7I\\x10V\\x82{\\xbf\\xc0Z+F\\x17`q?\\xd8\\xa0~q>Tg?`\\x05\\x83\\xfe\\x84\\x18y?@\\x9b\\xf8P\\xa5n|\\xbf`\\x1fQv\\xeeUx\\xbf\\xc8q\\xd0\\xee\\x88:R?\\xa0>\\xfc\\xf7\\x97\\xc4??\\xc0I\\x17\\xdc\\xe3\\x07w\\xbf\\xc0\\xa5\\x1bI`\\x15h\\xbf\\x00\\xd5$\\xdf\\x83\\x93z\\xbf\\x00M\\xabv\\xf4\\xc8j\\xbf\\x80\\xf8\\xba\\x97\\x16up?@\\x1e\\xd1w\\x11\\xe1\\x85?\\x00D\\xd6\\xe1\\x11\\xe9V\\xbf\\x80}8\\x94\\xf7\\x98`?\\x00\\xd0\\x10\\xdd\\x04\\x8f%\\xbf@\\xa4\\xf9\\x94\\xb9\\x9cd\\xbf\\xc0\\xfc\\xc9V\\xd7\\xcbd\\xbf\\x80h\\xd7OW\\xd5G\\xbf \\xb6l\\xb1\\xde\\xa6\\x7f\\xbf\\x00\\xfe\\xd8[\\xfb\\t0\\xbf\\xa0\\xff\\xcc\\x02\\x879c\\xbf\\xe4\\x95\\xb6\\xa6a\\x98\\x87\\xbf\\x00\\x9e\\xfc\\xa1{bI\\xbf\\x80\\x86~?]\\nV?@,x2O\\xb4s\\xbf\\xa0\\x06\\x89/\\xbe\\xe9g?\\x00\\xe8\\xa9\\x04\\x03\\xa12?@\\r\\xa3\\x9c\\x05\\x02X\\xbf\\x00v\\xb1\\xd7\\x1e\\xdde\\xbf\\x00\\x19!I\\x81\\xd5]\\xbf\\xf0\\x8ew\\x84<\\x04\\x86?\\xde\\x82?H\\x9f6p?\\xfa\\xca\\xccq\\xb98{?\\xce\\xde\\xe6\\xe7\\x94Oz?\\xc0b\\xff\\xa0LG \\xbf\\x8ay\\xe3\\xebn\\x7fl\\xbf]\\xfb>\\x828\\xbek\\xbfy6E\\xe8G\\xeel\\xbf\\x08\\xb9\\xf1\\x1f\\x90\\x00S?7X\\xac\\x1f\\\\q\\x88\\xbf,\\x17\\xfb\\x06E\\xd1W? c\\x97Z\\xeb\\x98>\\xbfx\\x1dk\\xd5\\xae\\xc0i\\xbf@\\x8f\\xcf\\xab~|n?T\\xcd\\xa79\\x0eJd?L\\x87\\xedrP\\xe2\\x82\\xbfF\\xc1\\xa2\\xeb\\xc6\\xc8X?\\xf0\\xf0Q\\'\\x8a\\xa0]\\xbf\\x11}\\x11(\\xb6\\na?\\x90K?\\x87\\x05\\xe9S?r:\\x85\\x92\\xf1\\xb0k\\xbfp\\xcd\\x86\\xb7A\\x99_?8\\xe4\\x81\\x98\\x82$r?\\xfc\\xb8\\xc0\\xfd\\x9b\\x89h?\\x0c8M\\x92A\\xd4n?9\\xcb\\xa9\\xb1\\xcc\\xbc`\\xbf\\xc6;\\xc5-\\x9e\\x06=\\xbf\\xc0\\x08\\x8am\\x96\\x15c\\xbf\\x10)\\xcaV\\x12R]\\xbf\\xd4-0#\\xfeOl?\\xa8\\xdd/\\xe9\\xd5kh\\xbf\\x02%\\xd2w\\x95\\x84t\\xbf@\\x08_\\x82@q??\\xac+\\x17a\\x0c\\xfdu\\xbf\\xa6rP\\xc1\\xfd\\xe7Z\\xbf\\xe1\\x9c0\\x00.\\x88y?_\\xb3\\xeeV\\xde\\xb9p?\\xdf\\x82-6\\x8a\\x1f\\x87?\\x00\\x1e]Ti\\xc2r\\xbf\\xf0\\x14A\\xc4<\\xb0U?r\\xdfY\\x12S\\xd5\\x89\\xbf@\\x7f\\x0f\\xcd\\xbb\\xeaR?8\\r\\x19\\xb4\\x85\\xeb\\x83?|6\\x94>\\xf1Pq?\\xfd\\xaf=\\x92\\\\5b\\xbf(\\xe3d\\x83P-u?t!+\\xfbcPy?\\x00\\x97\\x8b\\x1f\\xea\\x88@?\\x98m\\xde[\\xec\\xf2v?\\x00\\x021e\\xb2\\x035\\xbf\\x00D\\xd6\\xe1\\x11\\xe9V\\xbf\\x98\\xa91\\xc4\\x9fW\\x9f?*Q=\\xa3\\xa0\\xd8\\x91\\xbf\\xa4\\xf0\\xd9\\xd7t0l?\\x06\\xf6\\x9cv\\x98\\xd0\\x96?<RXXy\\xde\\x81?\\xcc\\x8d\\' M<r?x1+9|\\x96`?L\\xe4ecI\\xb6s\\xbfd\\x0f\\xe2\\xec\\x9e.y?\\xec\\xf6\\x0e8\\x8d\\xffY?\\xc4\\xb1YE\\x87.f\\xbfZ\\xb7\\x9f\\xa2\\'\\xd0o\\xbf\\xe0\\x96\\xe3h\\xe2\\xd6N\\xbf\\xb4@\\xe1ct\\x13m?\\x00$\\xb7\\xac\\xee\\xf7u?\\x00\\x06~f\\xed4\\x03?@%\\x96j\\xf8\\xc7W\\xbf@s\\x1b\\xf4\\xbb\\x14{\\xbf\\x18\\x1e\\x95\\xafD%w\\xbf \\x16\\xc9\\xaai\\x06U?\\x98\\xf7x\\xaa2io\\xbf\\xe4\\x085t\\xee;f\\xbf\\xe0\\xfb\\xf6\\xdf\\x87\\xefN\\xbf\\xc8\\x86%\\xa3\\xd0pc?\\xb0\\xfa\\xa5Q2\\xe8e\\xbfD\\xa4*\\xb0\\x13\\x90a?%yK-\\xa4\\x8eF\\xbfT\\xcb\\x80\\xd3\\xca}P\\xbf\\xf09\\x7f\\xedL\\x8d_?4\\xa2\\xa9{}\\x8fj?\\x10\\xa5t\\x89\\x82HQ\\xbf\\xd0\\xc9\\xa3<_\\xfb:\\xbf\\x80\\x86\\xb2\\x87\\x8f\\xa0g\\xbfH\\xa2b\\xf8\\xb6\\x97d?\\xb8\\xc00\\x9c\\x97\\xf0V\\xbfP`\\xa8\\x06\\x8b2Z?x\\x08\\xa8\\xa7=2I?\\xa0\\xf7\\xca\\xf5\\x17kk?(\\xbb\\xff \\xd7\\x90`?\\x00<~f6w\\'\\xbf\\x98\\xafjU\\r<u\\xbf\\xa0j\\xa1\\xee\\x81gM\\xbf\\x00\\xe2_\\x8d\\x04[s\\xbfX\\xdbU\\xce\\x99\\x82a?<\\xbf\\x92\\x194U8\\xbfP%\\xc1\\x97C\\xb7d? \\'\\xd5(\\nGX\\xbf\\x801\\xdb\\x18\\x149k\\xbf\\xa0\\xf7\\x9c\\x85\\xd2gi?g\\xb4\\x91o\\xfb\\xbbu?\\xc0\\x95)\\xeb\\x0ctA?hW\\xa1\\xd7\\x13\\x14]?\\xec_\\xd7\\x0e\\xbdTd\\xbf\\xd4\\xb6\\xcf\\xc559s\\xbf`\\xec\\xd7\\x044\\x9ar\\xbf\\xfb\\xad7\\xbc5\\x19r\\xbf\\xc0\\xfb(W\\x0f\\x89g?~\\x18)\\xce8\\xb7f\\xbf\\x84\\xb8\\x086\\x8c#w?\\x00:\\xc9@5GE?\\x18\\xa74,\\x07-p\\xbf\\xe0\\xcb\\x15\\xc5\\xcd\\xc0e\\xbf\\x08\\\\\\xa7($\\xb3G? q\\x9e<\\x191j?P\\xab\\x90\\xf6(\\xaau\\xbf\\x00\\x00\\x9b\\xde\\x98\\x1ae\\xbf\\x00H\\xd4\\x9f*\\xcbS\\xbf\\x00\\x18G\\xf4J5J?\\x80}8\\x94\\xf7\\x98`?2Q=\\xa3\\xa0\\xd8\\x91\\xbf\\xae\\xdal\\xd9$\\xed\\xa5?\\xea\\x80\\xca\\x1a\\xf0p\\x84\\xbf\\xf1\\xb8#\\x9bB\\xd3\\x92\\xbf\\x9aB\\xdb\\xd6\\x1bS\\xa0\\xbf`\\x82\\xdb1N\\x8bm?p+\\xf8(\\x0f\\x9dr?H3w{<}}?\\\\\\xfb\\xb449rw\\xbf\\xc0\\xc0\\xbe4\\x80\\x17#\\xbf\\x10X2\\xd3k\\x04d\\xbf\\xe8\\x10|*f(j?\\xc0\\xcbc\\x8d,\\xb8G\\xbf\\xa0\\x15Ih\\xb4\\xf1w\\xbf\\xc0\\xd2d#j\\xe3v\\xbfH\\x8d\\xad\\x08\\x8f\\xcc`\\xbf\\xe0\\x01\\xc4VW\\x12m?$,\\xbc\\x08\\x94Q\\x80?\\x0e\\x0f\\x17e\\x84\\xedZ?\\x00\\xce\\x89\\xeb\\xbb\\x91?\\xbf`\\x14\\x936\\xda\\x85a?\\xa2+3\\\\\\xbb Y?\\xf4\\x1f\\xf5b\\xe9[T?\\xc8\\xb8\\xc4&\\xc6$D\\xbf@(\\xa4A!p\\x10?t\\xfa\\xfa\\x8d\\x18\\xfcC\\xbf\\xafm&\\xfe\\xe7v1?z\\xc6-\\x19?\\xb6b\\xbf\\x08+\\x17\\xef\\xc7\\xf2W\\xbf@\\xdcD\\x925>8?\\xe4\\xd1\\x0eg%\\x1ao\\xbf\\x8c>\\xd6\\x19\\xb3\\xce1?\\xc0k\\xd4\\x8br\\xbb\\x12\\xbfz\\x92\\x06\\x12\\xab7Z\\xbf\\xd0\\x92n\\xb7jrM?\\xa9\\xe0\\xa2\\x06~\\x00S\\xbf2\"\\xe7\\xd4\\xc0\\xebX?\\x00\\xe8\\x0e\\xa2\\xbcAK\\xbf \\xfa\\xe03.\\xa7,?\\x18\\xe5\\xe3\\xc8\\x00\\x9fT?0z\\xf6\"}\\x1al?\\xa0hm\\xf1\\xc7\\xc3k\\xbf \\xa4\\x1aCyP4?\\x83%ch\\x00I5\\xbf\\x1fd\\x15*u\\xc7=\\xbf\\x80\\xa9\\xf9\\x13\\xcc%D\\xbf \\x18\\xca\\xc3\\x1c\\xc9-?\\x80\\xa4c@,\\x89\\\\\\xbf\\x00\\xf3\\xcfjk\\xc4\\\\?M\\xefF\\xc7\\xde\\xdc{\\xbf\\x81\\xae.\\xbdH\\x1f}?Op\\xe3\\xcbe\\xcd^?\\x8fR\\xe1\\xc1\\xdc\\x80n\\xbf\\x98\\xf8YK\\xa7lG?\\xa7\\x10\\x0b-r\\x12K?j\\xab\\x84\\xa3\\xe0\\x15y?\\xe0P/\\xbf\\x03b^\\xbf\\xacY\\x9d\\xb2?\\x92L?\\x84\\x8f\\xb9\\x8c\\x93Ft\\xbf\\x00v\\xf1\\x9a\\x16\\x80&?\\xc0\\xd5u\\xc1\\x1d\\xa3;\\xbf\\x98\\x12\\xbc\\xcd\\xb4JI\\xbf\\x1c\\x07\\xce\\x93XT;?\\xe0\\xbf\\x8f\\xdf\\xdb\\x9cG?\\xa0[OO\\xf6\\x9cd?\\x00Zl]e\\x0f+\\xbf\\x10\\xed\\x1f`\\x04\\xc3[?\\xf8oE*\\x9b\\xcei\\xbf\\x00\\xd0\\x10\\xdd\\x04\\x8f%\\xbf\\xa4\\xf0\\xd9\\xd7t0l?\\xea\\x80\\xca\\x1a\\xf0p\\x84\\xbf\\xa6\\x88j\\xc5\\xce*\\x85?\\xbei\\xb4N\\x9dq{?\\xcc\\xde\\x7f\\x0c\\x05\\x93\\x82?R\\xcb\\xfa\\xcf\\xf6yi\\xbf@s\\x82\\t\\xfaEC\\xbf\\x9c0\\x91\\xa7\\xf2$x\\xbf\\x00W\\xa9\\xb7thR\\xbf%\\xda\\x0b$>[a\\xbfV\\xc0\\x18\\xd3o\\x8dl?\\xa0\\xeb/\\x1b0\\x98%?\\x0c\\t\\xf4\\xddm|e?\\xa2z\\xb5\\xdcx\\xd1d?T\\xb2P\\x1b<,k?0\\x9e\\xcf\\x93\\x8d\\x94l? \\xe4t%\\x95\\xfdX\\xbf\\xbcx\\xa7\\xf3\\xe2\\xa5n\\xbf\\xa6\\x91\\xbb\\xe9\\x8b\\x9e\\x81?\\xe9\\x90\\xe9\\xb1c\\xb1`?\\x06!\\x03\\xc0\\xe9+v?\\xb4\\xd53mX\\xf9v?\\x1b\\xf2=\\xd4\\xe6\\x86S?\\x84\\xcd\\x90\\xdc\\x97UM\\xbf}\\x00o\\x93\\xc5~m\\xbf\\xa2\\xce\\xaa\\xbf)\\xedf\\xbf$yf\\xb7,\\xd0 ?\\x851\\xfc\\x15\\x8d~\\x7f\\xbf\\x1dvH\\xad\\xe2\\xabH\\xbf\\xb0\\x83/\\xcf\\xb6_\\x04?X\\xaa\\xb0\\x02\\'lu\\xbf\\xb2I\\x06!\\x7f(q?\\xa6H\\x00\\xb2\\xba\\x19\\\\?\\xef\\xd8g\\xf9\\xea\\x89y\\xbff%\\xf9\\xd2\\xc3\\x80S?@\\xa74\\xacN\\x98Y\\xbf\\xde\\xbc\\xce(\\x81\\xbac?\\xf4\\xf0\\xe3R\\xe2\\x9d@?d\\xd2*\\xc5z\\x05g\\xbf\\xa9/\\xf9\\xa3\\xa1fS?G\\xec\\x14\\xc1\\xdb&o?P\\x1aj\\x90\\xd0\\xfe\\x16\\xbfv*\\xc4\\xaa\\x10\\xe9a?\\x84\\x0bm\\x16\\x90\\xc5]\\xbf\\xaa\\x15\\xc1\\x82\\xddoO\\xbf\\'X\\x1a\\x12\\xdawc\\xbf4l\\xec\\xf9\\xa8}B\\xbf\\xd4\\x89\\x89\\x93XN\\\\?\\xea9\\xbe\\x9cz:H\\xbf\\x9d\\x01?\\x8f\\x8cAu\\xbf\\xfc\\x05+\\xe67\\xaai?p\\xf2\\xaf\\xe8\\x8f\\x93r\\xbf\\x19\\x13\\xa1bZ:x\\xbf\\x8d\\x15\\xf4\\x88\\xdf\\x00v?\\xa5\\xde\\x8b\\x8el{e?i\\xc4\\xa4Y\\x8b\\x0b\\x8a?~\\xa5\\x03s\\x81ts\\xbfT\\xbc\\x93\\xb9\\xf2\\xd7 ?\\x07Rds\\xd6\\xb8\\x89\\xbfx\\x01[\\x01\\xc1\\xaed?>\\x00o\\x03\\xda\\xc7s?z\\x188h\\xca\\xa9X\\xbf1:^z\\xb2\\xd0@\\xbf\\xfd]\\xe70/Es?\\x8f\\x82\\xdf\\x92f\\xac\\x80?XK.\\x8a\\x98xg?\\x0fdi\\x14\\x85C\\x80?\\x89\\xa7\\xedR\\x1f\\x87r\\xbf@\\xa4\\xf9\\x94\\xb9\\x9cd\\xbf\\x05\\xf6\\x9cv\\x98\\xd0\\x96?\\xf1\\xb8#\\x9bB\\xd3\\x92\\xbf\\xbci\\xb4N\\x9dq{?\\xef\\xe6O\\x92K\\xcb\\x9c?\\x8e\\xb5\\x0cTM\\xee\\x8d?\\xb1\\xff\\xd9\\xb0k\\xd0g?\\xaf\\xaeZ\\x99\\x94\\xf5u?\\xce\\xdb\\xc0\\xe09\\xf1y\\xbf\\xd3\\x81\\r\\xa2\\x00\\xcf_?\\x1d<\\x14\\xdc.\\xf0\\x81?\\xb0\\xcc\\xc7\\xf7\\x84\\x8d1?\\xd8\\x00\\xc5t\\xf1\\xff`\\xbf\\xdc\\t\\xe9/X\\x0fW?\\xe4)\\xc5g\\x99]i?\\xec\\xe5\\xcf\\xd6\\xb2ew?;N\\xc9i\\xa5.d?R4W@>\\x13S\\xbffs\\xad\\xb1V\\x05y\\xbf{\\x15Z\\xe8b6a\\xbf\\xfc6\\xa2\\xbd\\x1c\\xe7l\\xbf\\x90\\x9d\\x0c\\x99\\xc8\\xb8\\\\?P\\x96!\\xb7\\xd4~g?\\xe8\\xb1\\xe3\\xae\\xdd [?\\x00\\xd0\\xb8]\\x0bV\\x07\\xbf@|z\\xb8\\'Lf?\\x10\\x15-\\xa2\\xccm0?\\xd0\\xfdP\\xd9\\xc3\\x9a\\x18\\xbfE\\x90g\\x92\\xb4\\xee}?(\\xcd9\\xbe\\xf2\\xa3b\\xbf0\\xf0\\xa8\\xb5u\\xebc\\xbf\\xc0y\\xf5\\xd2\\x83sF\\xbf\\xd6_cM\\xbdbV?\\x80&K\\x12\\xe6\\x8bR?\\x00\\xab\\x81\\x84\\x1b\\x02[?@s\\x92\\x91\\x8b\\x947?\\x18\\xc4R\\x85\\xceNN\\xbf\\xb0|\\xf8\\x92\\x97C0?P\\xc4&\\x90`\\x85q\\xbfP\\xbcK\\x98|\\x11M\\xbf\\xc0HU\\x8dt\\xb8A\\xbf\\x80\\xf7\\xb68\\xb4\\x17m?\\x90\\xda\\x81|\\xe6\\xb3J\\xbfHT\\xd5\\x1a\\xf2\\xd9e?\\xb7\\x0e\\xa2.\\x08\\xe0P\\xbf\\x10\\x86*\\xf3\\xcd\\x1b\\x14? L\\xbd\\x10\\xe8;b\\xbfH L\\xe2V\\x02m?\\x80\\xbaNc\\x83\\x9fT?\\xc0\\x8f\\x08\\x9d\\x86\\x83Q\\xbf\\xea\\xee\\xb4\\xb6\\xedEn\\xbf\\x001\\xc1\\xbc\\x12\\xf0\\x03?\\xf0\\x98\\xe1G\\xb0\\x1d5?\\x9c\\xdcw.\\x9c\\xe0T?(\\xf6\\xe1#4\\xd1_?\\x10\\xf8)\\xd7\\x82\\xe2`?Z\\xcc|\\xce\\xab\\xd4`?\\x00]\\xf2\\xfd\\x16<U\\xbf\\xb0l\\x10\\x06x Q?8\\xf1\\xff\\xc6\\x06\\x9e`\\xbf\\x00\\xb4\\x0c3\\xe99G\\xbf\\x00\\t\\xe3\\x02i%d\\xbf\\xd8\\x10O\\xcf\\xfb\\xd9V\\xbf\\xe0\\x9c&ZJn3?`\\xfa\\xccL\\xcc\\x19g\\xbf \\xa8\\xe2\\x0e\\\\\\xe1t?\\x80\\x9c\\r\\xb2PQg?\\xc0\\xf4\\x86=\\xd1\\xf6P? \\xabw\\n2\\x15`\\xbf\\xc0\\xfc\\xc9V\\xd7\\xcbd\\xbf<RXXy\\xde\\x81?\\x9aB\\xdb\\xd6\\x1bS\\xa0\\xbf\\xcc\\xde\\x7f\\x0c\\x05\\x93\\x82?\\x8e\\xb5\\x0cTM\\xee\\x8d?\\\\\\x1a{\\xf2\\xaa\\x11\\xa2?\\xa0gV\\rEUw\\xbf\\x00\\xa9.+\\tuC\\xbfH\\xfb\\x86\\x10\\x8bHw\\xbf\\x00\\xc7i\\x8ca\\xfbG\\xbfh$\\xa0j\\xe5\\xe6m?\\x18\\x97\\x1a\\xf2R\\x92s?\\xb0\\xbc\\xe6\\xa7F\\rR\\xbf\\xa0v\\xc3`\\x03\\xf4Q?\\x08*s\\xcc\\xd0\\x1fl?`\\xe8^\\xb6\\xbe\\xbah?\\x90W(\\xae;\\x04^?\\xe0\\xcc\\x06\\xb6\\x05\\xa3c\\xbf\\xd0\\xd7\\xaa)\\x86\\xc1l\\xbf9a\\xe3|\\xdda\\\\?\\x84\\xe8\\ny\\xb3\\x15^?\\x00PW\\xddY\\x15R?\\x88\\x7f8\\xc7D!@\\xbf\\x80re\\xf7\\x80\\xb9\\x12\\xbf\\x98\"I\\x83g?3\\xbf\\x9a9h\\xe5\\xa5Xb\\xbft\\x99\\xe4\\xac:\\xf0J\\xbf\\xc4\\xea\\xc9r\\xc0\\xe8+?\\xdc\\xcf\"\\xb1v\\xa4q\\xbf|\\'\\x9f\\xc2\\xe5\\xcdN?\\xdc\\x8e\\xa4\\x17\\x9a@O?\\xa0\\xdfx\\xc4\\xd7\\xceA\\xbfb\\\\\\xc8\\xb2`!Y?\\x80\\x18\\xd3\\xed\\x17\\xc5\\x13?@k\\x17\\xcb \\x94c\\xbf\\xe0\\xc5E\\xc0)\\xa3/?\\xa8\\x87m\\xb8\\xf1\\x15 ?\\xc8\\xd2\\x97-\\x96\\xac\"?\\x00pF\\x10\\xe6\\x04`?`p^\\xbf#\\xc3H\\xbf\\x80\\xb0*+7\\xbb-?\\x00\\xee?Y\\x99\\x8e2\\xbf\\xf0/\\xe28F\\xa4E?\\xe4\\xd3\\xa8\\x82\\xe0\\x13J\\xbfD\\xb8\\x19:\\x12\\xb7\\x12?x\\xe9\\x95\\x9a,\\x1a6\\xbf\\x00R\\xba+\\x02\\xde(\\xbf \\x8d\\xde\\xa9\\xf9\\xc1W\\xbf\\x10\\xb3g\\x0e-\\xdaV?`\\x92\\x1e\\xb9S\\xc5\"?x&\\x91q\\xcc[K?\\xf0`\\xac\"\\xda\\xa24?\\xb6\\xf9\\xc0\\x129{T\\xbf2]\\x1aq}\\x96_\\xbf\\xc4(X\\xd8\\x9e\\x97S?\\x01c\\xec|\\x05=A\\xbft\\xd7\\x07\\xeaa;h?\\xc0$\\xe4f\\xe1\\x0fI\\xbf\\xaa\\r\\x82\\xf1\\xae H\\xbf\\x0c\\xa4x%\\xa0je\\xbf\\xa094$F\\xf2Q?\\x02{\\x82c\\x92\\xa1r?X\\xa4-\\x1a\\x91\\x1bP?\\xe2\\x0f\\xd8X\\x18\\x14I\\xbf\\xa2\\xa1\\xfb\\x97\\xf9up?\\x80\\xfe\\xa2\\xda\\x1c\\xdf,\\xbf\\x00R\\r\\xcb\\x86u#?\\xa8&d\\xd2\\x91\\xedc?\\x00\\x02r/l\\x9dT?\\x80h\\xd7OW\\xd5G\\xbf\\xcc\\x8d\\' M<r?h\\x82\\xdb1N\\x8bm?R\\xcb\\xfa\\xcf\\xf6yi\\xbf\\xb1\\xff\\xd9\\xb0k\\xd0g?\\xa0gV\\rEUw\\xbf\\x8e)\\x15\\xa9\\xd7Oy?(\\x85\\xbb\\xcc%_Z?\\xb8\\xb10J\\x9fgR?\\n\\xb1P\\xad\\x95Di?\\xd0\\x03\\xd3c\\xa0\\xb8I?Ls\\xd2\\xf7\\x9c\\xee_\\xbf\\xccZ\\'\\xf1a5U\\xbf\\x80\\x80\\x0f \\x10\\x16&?\\xb84\\xcf\\xdae\\x03R\\xbf@\\xe4\\x15\\xaf\\x9c\\x161\\xbf\\x18m\\x96\\xca\\xaeVE\\xbfH\\xb6\\x01\\x07\\xba\\x05P?\\x80\\xfb\\x98c\\xf2\\xd5+?t7#\\xb70\\x15c\\xbf\\xdccJQ\\x1bza\\xbf\\xddB\\xe9\\xf9\\xf6Er\\xbf\\x10L\\xef\\xe0Q\\xbef\\xbf\\xe4\\x188\\xb8\\x9d3i?\\x8eCi\\x9d\\xe4\\xa3t?\\x11`\\x0b^\\x98\\xa3{\\xbf\\x10\\x7f^\\xac\\xb7\\xacU?\\x96\\x17{\\xf7:aU\\xbf`[\\xa5F\\xf0\\xf87?\\x08\\x03\\x10B\\x87\\xddw\\xbf\\x8f\\xd1\\xa0\\x9a&#p?\\x94?jx\\xa2\\xe8j\\xbf\\xe8y\\x95%\\xa1#z?\\xf3^\\xbc\\xc5\\xd8\\xe2g\\xbf^\\x95\\x01?_[t?@\\x19\\xd4\\xf8\\xd4\\xd9=\\xbf\\xe3\\xca\\xf7$\\xefGe?\\xfe\\x8fg\\xbd\\xd6\\x1cR?\\xf0$\\xbf}~3R?\\xb4l\\x93\\xffs\\xe4T?\\x80\\xce\\xcc\\x1cg\\xbe\\x10?x\\x8cUtdea\\xbf,\\x11\\x8f\\xff\\xa6\\xbeh\\xbf4\\x83\\xea`=l|\\xbf\\xd8\\x98\\x98\\x82TS]?\\xf0u\\x84\\xcbs\\x95Z\\xbf\\x80wUA\\x9feK\\xbf\\xc0v\\xa2\\xb5\\x83\\xcd3?\\x14\\x83\\xe1X\\xcbFa\\xbf\\xd6C\\xa8\\xb0\\'\\xe4q?v\\x8a\\xc6|i\\xabj?\\x90\\xaa\\x9b\\x03,2q?\\x92d\\xe8\\x8fa\\xc8T\\xbf\\xecF\\xcd%v\\xd1|\\xbfp\\x81`\\x0bc\\xb7`\\xbf\\x1fe^\\x19\\x05\\xdc|\\xbf\"\\xcc2F\\x03\\xb9\\x83? L]6\\xcb\\xddS\\xbf+\\xadh\\x8b\\x07\\x07t\\xbf/\\x1b9\\x95/\\xa9}\\xbf\\x98\\x94\\xfb\\x97\\xa6[{?\\xd0\\xc0Ub\\xf1$l\\xbf\\r^\\x849\\xe6\\xb4x\\xbf\\x90L\\xa2\\x7f\\x9d\\x98-?\\xacb(^\\xc6\\xbe\\x87?(,K\\x17:\\x0el? :\\xa1\\x1f\\trw?P\\xdd\\x8b\\xf5\\x98\\xff~?\\xca\\xeb\\xbc\\x19\\xb8\\xe6\\x83\\xbf \\xb6l\\xb1\\xde\\xa6\\x7f\\xbfx1+9|\\x96`?p+\\xf8(\\x0f\\x9dr?@s\\x82\\t\\xfaEC\\xbf\\xaf\\xaeZ\\x99\\x94\\xf5u?\\x00\\xa9.+\\tuC\\xbf(\\x85\\xbb\\xcc%_Z?\\xb3\\xa7\\xaa \\xa0!\\x97? m\\xf1+i\\xc2G\\xbf.K\\xb76\\x80\\x02|\\xbf1\\x1a-!\\xd92\\x94?4f\\x87e\\x13Gj? \\xcf88\\x8eol?\\xf8[}\\x07\\xb2\\xee`?\\xa0It\\xbd\\xc8Mz\\xbf\\xb8\\xc4\\xa2p-\\x93n\\xbf\\xe0g6\\xb1\\xc7*3?\\xc2\\xe8SJ\\x1a:r?\\xb0o\\xe7A\\xbc\\x9e~?\\xbc\\xee\\xcfW\\x18\\x17T\\xbf\\xcc\\xa0\\x7fc\\xdc\\xc3[?\\xc0#\\xdb\\r\\xb9\\xd4<?8\\xa9\\x88\\x18[(S\\xbf\\x1cP\\x8fA\\xfe\\xe7U\\xbf8\\xe7Q\\x19\\x13\\xb8A?\\xfdV#\\x8d\\xce\\xa2`?\\xb8\\x13$^\\xe9\\xe98\\xbf\\xd8\\xde\\x83fJ\\xe5\\x0b\\xbf@\\xdbZ\\x13\\xa0GP\\xbf\\xa0\\x90\\xe0\\x9dv%]?@\\xa16\\xd8\\x82C2\\xbf\\xb8cY.\\xe3\\xf4r?K\\xf4G{\\xb7\\xf8Z?L\\xf6OG\\x8dYI?\\xf0j~\\x04y\\xe1]\\xbf\\xb2\\xa4\\xcd\\xf9r\\xffW\\xbf\\x0e3\\xed\\x0e\\xa1\\xffP?\\xd4\\xeb\\x14\\x87OnW\\xbf\\x00=Fp\\x882:?`\\xf1$\\x83Ux \\xbf\\x804\\x94\\xe7\\xfd>d\\xbf\\xe0\\xa9=\\xb0[\\x99k\\xbf:H\\x9dCK\\xf2s?0\\xbb\\x00\\xddQ\\xa5>?\\xd0\\xb8\\xc2\\x15\\x02\\x0eE\\xbf@\\xe2\\x12\\xeef\\x06:? \\x134\\xa1}\\xcaS?@\\x1dj>\\xe2\\xcf=?PI$\\xdd\\xa2\\xac[?\\xf0\\xf7\\x84r9\\xdeZ\\xbf\\x12\\xdeGX\\x9d\\xde\\x80?\\x99}\\x99`\\xea\\xd9\\x85\\xbfJ|\\x89\\xd3\\xee\\x18t\\xbf\\x00\\xf7\\xbb\\xcd\\xa9\\xba(?\\xd8/\\xb2X\\x0bEL?\\x7fZ\\x18\\x93\\xba\\xe9H\\xbf{\\xbe_\\x0f\\xb9\\xf9w\\xbf\\x00\\x88\\x7f\\x14\\x14\\x04\\x1a?^l\\x82\\xd5\\xa0\\x8fc\\xbf\\x98IH(\\xfdei?\\x80}\\x9c\\xab*\\x92C?(\\xdac8r\\x81f?XfD\\x9e*\\x91X\\xbfDCg= \\xd2H\\xbf \\x1c\\xac0&\\x9dY\\xbf \\x032\\xee\\xc4\\xe8]\\xbf\\x00\\xb8:\\\\\\xcf\\x191?`,\\x14\\n\\x9c\\xd6^\\xbf\\xf8\\x83sY\\xa6^o?\\x00\\xfe\\xd8[\\xfb\\t0\\xbfL\\xe4ecI\\xb6s\\xbfH3w{<}}?\\x9c0\\x91\\xa7\\xf2$x\\xbf\\xce\\xdb\\xc0\\xe09\\xf1y\\xbfP\\xfb\\x86\\x10\\x8bHw\\xbf\\xb8\\xb10J\\x9fgR? m\\xf1+i\\xc2G\\xbf\\xa8\\x16\\xc7\\x8a~X\\x8a?\\xf2\\x8c\\xe8\\xe2\\xdeIx?\\x04A\\rz\\xb9\\x1bc?C\\xe2t\\x06\\xe6b\\x80\\xbf\\x10\\x92Ukl\\xec^\\xbf\\xf8a\\xac\\xfc\\xda\\xddk\\xbf\\xfe\\xeft1L\\xb9p\\xbf\\x90n\\xbe\\xe1\\xd3\\x9cw\\xbf|\\x0c\\x05F&\\x03w\\xbf\\x04\\xfb\\xf2\\xb9 \\x86i?\\xac\\xfa\\xcb\\x8a;`x?\\xf2r\\xd0Z\\x19\\xbak?`\\xe67=`\\xbci?7!t\\x08r\\x97x?\\x12\\xcc\\x1eA\\xdb\\x16e\\xbf\\xa8\\xeb\\x82#q]Q\\xbf4\\x08\\xe8\\xa8\\x03\"p\\xbf\\xbe\\x9b\\x10\\x9f\\xb1Pl?\\x99\\xd2\\xab\\xd20\\xd4h\\xbf\\xa8\\x03\\xdc\\x9f\\x10\\xa8G?`*\\x06>V\\xe9\\x80\\xbf\\xc4\\x1f\\xbe;\\xfd\\xf4F?o\\xcb\\x13\\x80\\xe2\\xa4S\\xbf\\xaa\\x95\\xf2\\x84\\x03gr?_\\x15FI\\x14I`?\\x90, m\\x19ue?\\x99n\\xbd\\xbe\\xa6\\xa9\\x81\\xbf\\x80\\xd9\\x8a\\xbc\\x16\\xf4\\r?\\xe47\\x12W\\xadzA\\xbf\\xfa\\x01\\xf9\\xedV<L\\xbf\\xc0\\xa9`\\xe0\\xbfX$?h#ow\\x9d\\xf9Y\\xbf\\xccE\\xac8]\\x9cE\\xbfH\\xf8\\xb6u(\\x16T?\\x92\\xe0\\x1d%9\\xccm?\\x18t\\xdf(\\xdb\\x18c?~\\xc7c\\tnua\\xbfP[>\\xad\\xd1\\xfc\\x06?p=+\\xd7l\"A?\\x88CH\\x9bF\\xdca\\xbf\\xd0Qc[\\x93Bm?\\x8cF\\xdc\\x8a\\x1bUd\\xbf\\xb5.\\x0c@\\x17\\x99^?\\xadf\\xbc\\x9e({s\\xbfy\\xd7\\x0bV\\xa5\\xb5|\\xbf\\x88\\xed\\x83\\xa1\\xa24f\\xbf\\x8a\\xdd\\x8a\\x01a\\x9av?\\xa6|\\xea`1\\xf6`?+\\xf0r\\xd5\\x05\\x91B?X\\x97A\\\\^\\xdcs\\xbf\\xce\\xf0\\x11\\xdc\\x08kG\\xbfCk\\xb3\\xd2/jr\\xbf\\x90\\xb6\\x81\\xc60\\xf1d?\\xb3K\\\\\\x9a\\x81\\xd0\\x90?X\\xae\\xc3jL1e?^\\x89\\x0c[kCX\\xbf\\x80M<]y\\xa5)\\xbfP\\x92X\\xf9D\\xca`\\xbf\\x80\\x87\\xcf\\xe8\\x97\\xdc\\\\?\\x00\\xb4\\xbd\\xa8\\xd9\\xbd\\x1a\\xbf\\n\\x92\\x95\\xa9m\\x02y?\\x80\\xff\\xcc\\x02\\x879c\\xbfd\\x0f\\xe2\\xec\\x9e.y?\\\\\\xfb\\xb449rw\\xbf\\x00W\\xa9\\xb7thR\\xbf\\xd3\\x81\\r\\xa2\\x00\\xcf_?\\x00\\xc7i\\x8ca\\xfbG\\xbf\\n\\xb1P\\xad\\x95Di?.K\\xb76\\x80\\x02|\\xbf\\xea\\x8c\\xe8\\xe2\\xdeIx?\\x9e\\xb0\\xc3\\x0b\\ti\\x94?U\\x9f\\xd8O\\x8a^o\\xbf\\xb8\\xa3#\\x95\\x18\\xe4~\\xbf Pj\\x80Ph\\x82\\xbf\\xa0\\xb3\\x89\\xda\\x81\\xf9[?\\x90\\x87\\xcb\\xd5:\\x948?\\x90\\x14\\xc6\\xf44\\xa8F?L!D\\xf5\\xe7\\x0c]\\xbfP\\xa6nL\\xa3FT?PM\\x03\\xfa\\xd4\\xc1e\\xbf\\xfdx^D\\xd7\\xcdn\\xbf\\x08\\xb8<\\xdeZ\\xeco\\xbfq\\x99\\x90)\\xfd\\xe3s\\xbf$\\xda\\xe2R\\xd2\\xd77\\xbf\\x98\\x82\\x03h,\\xb1b?\\x8c\\xce\\x84&BXt?vzv\\xa2\\xf5\\xaeu\\xbf\\xee\\xb9\\xb7\\xd6p\\x82\\\\?\\xc8\\xa4TR\\xbe\\xd7X\\xbf\\xf0\\xf5\\xad\\xabV\\xc6}?+\\xb0\\x12\\x12a0y\\xbf\\x88\\xc82\\x0c=\\x06M?\\x88{\\xd1N\\xc1\\xa0B?)\\xd7\\xdb\\xdeM\\x84\\x80?\\xa0\\xccvO\\xb6\\xa2S\\xbf+\\xdb\\xf6(Yvu?\\x80$\\xb7\\x13\\xf1CG\\xbf\\x02\\xee\\x9f\\x96\\xbd^e?\\xac\\x0b\\xf9\\xa8slM?pW\\x97\\xbdU\\xaf;\\xbf\\xb8\\xc1nV4ZE\\xbf\\x04\\xfff/\\xfc)Q\\xbf\\xf4\\r\\x95\\xe9\\xe0\\xb4n\\xbf\\x96\\xa8\\xa3\\xf2N\\xb5P?\\xb9]\\xc8\\xdc\\xcdiq\\xbfj\\xc7e\\\\i\\xfdN?\\t\\xad\\xb4\\xd0Y\\x1aY\\xbf\\xc8p\\xd7\\x0f\\xe2\\x92^\\xbf P[\\xec\\xe2\\tB?\\xe0\\x91}\\x88\\xdf\\xabW? ^|hF+-?}k\\xad>p\\xe6\\x83?\\x8diR\\xcfWit\\xbf\\n\\xa7\\xee^\\x92s\\x7f\\xbf75\\x93U<\\x04e\\xbf\\xc0\\xe7\\xc0\\x15\\xf1F\\x11\\xbf\\xfd|Y}\\xb52x\\xbf\\x96l\\x08V!c\\x82?`\\xa9\\xad\\x1d\\xbb)g\\xbf\\xc6\\x13\\xd5A\\xf3\\x98u\\xbf\\xce\\x1b\\x0e\\x85\\xbb\\xaf\\x7f\\xbf\\x86\\xe1\\xe37H\\xc9\\x82?\\xc0\\xaee1\\xa9\\xa92?\\xf9\\xc6\\xffA\\xc03u\\xbf\\x9c\\x98\\xc1\\xf3=\\xcaD\\xbf\\xb6\\xf4E\\x95swy?\\x1b5\\xa0~\\xea\\xfe{?t\\x99,\\xb2\\xf6\\xbc\\x81?\\x90<\\x13\\x9b\\x85\\xbbv?\\xdc6\\xac\\xda\\x03\\x9b\\x81\\xbf\\xe4\\x95\\xb6\\xa6a\\x98\\x87\\xbf\\xdc\\xf6\\x0e8\\x8d\\xffY?\\xc0\\xc0\\xbe4\\x80\\x17#\\xbf&\\xda\\x0b$>[a\\xbf\\x1d<\\x14\\xdc.\\xf0\\x81?h$\\xa0j\\xe5\\xe6m?\\xd0\\x03\\xd3c\\xa0\\xb8I?1\\x1a-!\\xd92\\x94?\\x04A\\rz\\xb9\\x1bc?U\\x9f\\xd8O\\x8a^o\\xbf\\xc0\\x95\\x0b\\xf7?\\x18\\xa1?`<y\\xf8\\xce&+?\\xf8`\\xb7=V*??\\xf0\\x91}B\\xd2\\xf5o?F/\\xbb}\\xe3\\xc1w\\xbf \\xb3q\\xc1\\x95XY\\xbf\\x88\\x8f\\x9f\\xc8w/D\\xbf\\xa2\\xa4\\x87x\\xcfjr?$\\xf6\\xdc\\xb4\\xf8\\xe7x?\\xd0\\xf3K\\x8d\\x92\\xbdl\\xbf\\xd1{ad\\xe3\\xf3i\\xbf(\\xb3\\x11\\x94-\\xa0k\\xbf@\"\\xd4\\xbfq\\r\\x14\\xbf\\xaa1\\xd1B\\xaecY?\\xf0<\\xeb\\x040\\xfab?\\xfa\\xe5~\\x18[\\xf4T\\xbf\\x18\\x84\\x0c\\xe6mg_?h\\xb4\\x97\\xd0n\\xd09\\xbf\\xd8\\x96\\xdcn\\x88*u?\\xbd\\xc0\\xe7\\xe5\\x80pe\\xbf~[\\xbc\\xe5\\xd4\\xa4L?*\\xa2\\xb3\\xc8\\xde\\xe9e\\xbf\\x14\\x00O@!\\x80U\\xbf\\xeeW\\xa3\\x8a\\xbb\\n`\\xbf\\x1b_>%~\\x9ar?\\xbc\\x8bN\\n\\x92A@?\\xe0\\xf0\\xf9H\\xcb\\xa6\\'?l\\xbeE&\\xbc\\xa24?`\\xa4\\xad8\\xe3j3\\xbfX\\xef\\x82\\xc8\\xbeK\\\\?\\xb0\\xc1R8\\x9bR<?\\x08\\xf0?\\xca\\xfc\\xb9S?\\x9f><\\x00\\xd1\\xa2v\\xbf\\xfe\\xf2y|\\xab\\x11g\\xbf\\x8d\\\\w\\x86H\\x81Z?&s\\x83\\x02t9/\\xbf\\x80\\xd3_)\\xa5X-\\xbf@TtD\\x1f\\x95\\'\\xbf6d\\xa8u)\\xabf\\xbf\\xaaw\\xc4\\xd5/\\xbaj?2\\xac\\xf9\\xf4\\xef\\xf4t\\xbft\\x92\\x85c\\xd2x\\x82?\\x8e\\x9e\\x8fZq\\x0fv?\\xb0\\x7f\\xd2Al\\xfb\\x18\\xbf\\x10[\\xe4\\x13\\x055j\\xbf\\xcb\\xc9=\\xe3\\x05\\x93^\\xbf\\r\\xad\\x8b\\x8dv\\xa0h?@%\\xff.\\x15oW?\\xc6IX.\\xa1\\x0eF?\\x00H\\xa0\\\\\\xac\\xf6!?\\x00\"{\\x15\\xe2\\x9d6\\xbfn\\xb6\\xbf\\xe1\\x1aEy\\xbfC\\xf0\\xda8\\xc0aE?\\xdc|\\x0e\\t\\'MV?X#P\\xf2\\xd7Te?\\xa0BF\\xb2\\x95\\xd9[?\\x00\\xae&6\\xdcq:?\\xe0&\\x89\"\\x83\\x0fU?\\x00\\xf6\\xf4\\x00\\xee4t\\xbf\\x00\\x9e\\xfc\\xa1{bI\\xbf\\xc4\\xb1YE\\x87.f\\xbf\\x10X2\\xd3k\\x04d\\xbfV\\xc0\\x18\\xd3o\\x8dl?\\xa0\\xcc\\xc7\\xf7\\x84\\x8d1?\\x10\\x97\\x1a\\xf2R\\x92s?Ls\\xd2\\xf7\\x9c\\xee_\\xbf4f\\x87e\\x13Gj?C\\xe2t\\x06\\xe6b\\x80\\xbf\\xb8\\xa3#\\x95\\x18\\xe4~\\xbf\\x80<y\\xf8\\xce&+?H\\x14{\\x8cP\\x17\\x84?4\\xb5R}fTl?P\\x8bD\\x9cg\\xd9g?x\\xfe\\xa9\\xe0\\x172Q?\\xf0\\xd29HG\\xba\\\\?\\x8a\\x0b\\n\\xc21\\x15s?p\\x12+yY\\xa6X\\xbf\\x90?\\xbd\\x87\\xca\\x14W\\xbf\\xacr\\xfd2\\x1a,L\\xbf\"\"\\xee\\x99\\x1f\\xa2U\\xbf6|&\\xdb\\xc8\\xc2j\\xbfH\\t:\\xe6\\xb6\\xe5:\\xbf\\xd4`,\\x88t\\x16K?E\\x19\\x93R\\xcaOb?\\xd4l\\x85\\xa0\\xd3\\xa8S\\xbf\\xecM\"\\xdb\\xca\\xcfR?\\xdd\\xaa\\xf0\\xd6q\\xc3,\\xbf<z\\xb9<MXa?L}$sb\\xdeW\\xbf\\xe7\\x8e2v#\\xc6T?\\xecF\\xbc\\x17\\x9d\\x8bV\\xbf\\x12>\\x8eQ\\x8cMC\\xbf:\\x04\\x02M\\x91-[\\xbf\\xf8\\xa6Z\\xcaI6m?@a\\xd1\\xb3\\x83\\x0e1\\xbf\\xf6@\\xce\\xb5,\\x1aE?\\xd6\\x9a\\xe7T\\xd7\\x959\\xbf\\x00\\x1e\\x15\\xf6\\x80\\xb5\\x16?\"\\xfb\\xd0\\xec\\x00\\x12[?\\x804\\xcb\\xd7\\x91\\x80\\x16\\xbf\\xe0x\\xcb\\xa9\\xb1\\xe63\\xbfn\\xabTC\\xa1\\xba^\\xbf(\\xad\\xe0\\x8b?\\xfb_\\xbf\\x83yj\\xb5\\x1e\\xbbR?ty%\\xfd]\\x12\\x13?\\xe0%\\x91\\xf0\\x16\\t8?\\x90%\\xf1\\xe4TsC?\\x94\\xfa\\xec\\xe0\\xe7\\xe3c\\xbf\\x94\\x91=A\\x80\\xc4]?\\xdebH\\xc1\\xf8\\x87R\\xbfSs\\x95\\xe5k\\xd8c?\\xb8\\x8f\\xcc\\xda\\xd4An?\\xafZU\\xd9\\x00FW?\\xae\\xb7\\\\4\\x1d\\xf4k\\xbf\\x10H r\\xbap`\\xbf\\xb6\\xf5$QO\\xf3G\\xbf JZO\\xae\\\\e?$g#o\\xab73\\xbf\\x18\\xff#$4\\xc0_?\\xe0A`\\x98\\xfb7W\\xbfd\\xfd+\\x9b\\xc9\\x8e\\x7f\\xbfp\\xb7\\x0f\\xfd\\x85E*?\\x1a\\xe6\\xe4\\x9b\\x18\\x98F?\\xe0@\\xa9k\\xbb\\x15V?\\x00{\\xef\\xd9b\\x1f,?\\x00\\x85k\\x93I3L\\xbf\\xe0\\xcelt\\x98\\xbf@?$\\x84R\\xe5\\xd4\\xa1j\\xbf\\x80\\x86~?]\\nV?X\\xb7\\x9f\\xa2\\'\\xd0o\\xbf\\xe0\\x10|*f(j?\\xa0\\xeb/\\x1b0\\x98%?\\xd8\\x00\\xc5t\\xf1\\xff`\\xbf\\xb0\\xbc\\xe6\\xa7F\\rR\\xbf\\xccZ\\'\\xf1a5U\\xbf \\xcf88\\x8eol?\\x10\\x92Ukl\\xec^\\xbf Pj\\x80Ph\\x82\\xbf\\xf8`\\xb7=V*??4\\xb5R}fTl?k+\\x86wsj\\x81?0\\xb6\\xdc\\x04h\\x7fG\\xbf\\xcc\\x85,\\xb79\\xfcP\\xbf\\xcc{wYs\\x08`\\xbfXo\\xba\\x86Z\\rJ?\\x00\\x80/\\x12aY\\x96\\xbe\\xd0\\xa7\\xee\\x06$\\xfd`?\\x14>&\\xbb\\'\"s\\xbf\\xe0\\xa7\\x01\\x1aX\\x86h\\xbf\\x00\\x95\\xa9$\\xee\\xa0#\\xbf\\xc2P\\x98\\x86\\xf9_i\\xbf@\\x0532J\\xa9`? \\n\\xbd\\xa3\\x06\\xb1<?\\x00\\xe6+\\x1a\\x00T%\\xbf0\\x82E\\xe2\\xc6\\xd3C?HN\\xf9\\xffm\\xe59\\xbf\\xac\\x1d\\xae\\x90\\xdc\\x13f?/\\x1c\\x00\\x0b\\xac\\xecs\\xbfhs\\x1a\\x0bd\\x94F?\\x00LO\\x16\\xa7\\x97/?8=\\xd0\\x922/l?\\xf8D\\xa9\\xb7\\x15SP\\xbf`G_\\xffH\\xa86\\xbf02\\xe0f\\x85\\xfb:?0\\xe5\\xa0V\\xc6f8?r\\xd6\\x1eUR\\xfdQ?@\\x19\\xec\\xd1u\\x80K\\xbf\\x90u\\xd2\\xe4:\\xd1E?`\\xcd(e}lC?@\\xf8\\xa7\\xc0\\x16\\x92P?4Vk3\\xd6\\xe7l\\xbf\\x1c\\xbdL\\x98*\\x10d\\xbf\\xb4\\xd6\\xa4\\xcbI\\xc4B?\\x86_M\\xcdH\\xfdN\\xbf\\xb0\\xc7&h\\xf3cR\\xbf@\\xa4w\\xe1\\xcdgO\\xbf\\x80\\x1e\\\\=\\xe6>D\\xbf8\\x0b\\xc1\\x17`\\x17]?\\x10w`\\xf1\\xd74V\\xbffBT\\x0b\\xbc\\x8ew?\\xe0\\x82\\x07\\xc5\\x80\\x14X\\xbf\\xa5\\xcfH\\x8d,|t\\xbf\\x90+\\xd0\\xe5\\x99\\x11B?\\x1e\\x17\\xa9\\xa2]\\x03g\\xbf\\xe5\\x01\\xab\\xdcM\\x98|?\\xc0\\x00xw\\x8d\\x11d\\xbf\\xa4\\x0f\\x1b\\x07\\x9f<^\\xbf\\xa0\\x17\\x9c\\x8e%7x\\xbf\\x90?\\xa5%\\x83bp?\\xf8f~n\\x1e\\xefw?\\xa4\\x8f$\\xb4\\x8e9H\\xbf\\xcc\\xfe/\\x1c\\xe6\\x1fF?\\xf0\\x03\\x8e\\xe1\\xed\\xb9o?\\x00\\xd7?\\x91\\xad\\xbe!\\xbf\\xc0v\\xa7\\x01\\xe9\\xb3i?P\\xff\\xce@\\x18}d?\\xe0(\\':\\xa3Bb\\xbf@,x2O\\xb4s\\xbf\\xe0\\x96\\xe3h\\xe2\\xd6N\\xbf\\xc0\\xcbc\\x8d,\\xb8G\\xbf\\x0c\\t\\xf4\\xddm|e?\\xdc\\t\\xe9/X\\x0fW?\\x80v\\xc3`\\x03\\xf4Q?\\x80\\x80\\x0f \\x10\\x16&?\\x08\\\\}\\x07\\xb2\\xee`?\\xf8a\\xac\\xfc\\xda\\xddk\\xbf\\xb0\\xb3\\x89\\xda\\x81\\xf9[?\\xf0\\x91}B\\xd2\\xf5o?P\\x8bD\\x9cg\\xd9g?0\\xb6\\xdc\\x04h\\x7fG\\xbf\\xd0c\\xdcK=\\xab\\x82?\\x00;h\\xf8\\xe6:;\\xbfP>gT$%f?\\xf4\\t\\xe1dSjr?\\x008\\xaa\\xe4\\x8d[M?`\\x89MG\\xbb\\xc8\\\\\\xbf\\xb9,\\xf3\\xbf\\x87\\x14j?\\x10Clq=+E?\\x14\\xb4\\x18\\xe2\\t\\x0ca?\\xf6_\\xa7J\\x11\\x03f?\\x8c\\x8a\\x7f\\x8a\\x1d\\xceL\\xbf\\x10\\xd8\\x95l\\xbe\\x92c\\xbf\\xe4\\x83FZ!gV?\\xd00\\x849\\xc2\\x11H\\xbfcf\\x1e\\xd7$\\xb06?\\xc0F\\xe0\\x8f\\xd7\\xa3\\x18\\xbf\\xa6\\xcd\\x03q\\x15K`?\\x9b5\\xec\\xd2.P_\\xbf\\xf0GS(\\x13\\x89M\\xbff\\xc3\\xa5E3\\x18h\\xbf\\xe2\\x00\\x02Y qW?\\xf80\\xcexR|T\\xbf\\x84{\\x9a\\xb4\\xde\\x89H?\\xc6h\\x99\\xc5\\xce;X\\xbf\\x00\\xd3F\\x01\\xfe_ ?`o\\x89\\x833>J\\xbfH#\\x99\\xa1\"}Q\\xbf\\xe0\\xd8\\xac\\xc6Q\\xc9N?\\xd8\\x90\\xe7\\x89\\x1e\\xfdb?\\xb0\\x1b\\xda\\x9c\\xdb.0?*\\x9c\\x0eA\\x1b\\xb1j?f8\\xa1\\x01\\xb3\\xe1M\\xbf\\xa8\\xac\\x0f\\xad\\x96\\xf0=?\\xc0\\xf0\\x83\\x81\\x80\\xf9#\\xbf\\x00\\x9cCrz\\xc7\\xf0>\\xf0\\xa8\\x87\\xda\\xb2\\xdeG?H\\xe38\\x18|\\x06`\\xbfU8\\xe9\\x1eV\\xadp\\xbf\\xfc\\xc5S\\xe8&\\xfeM?J;w8M\\x11U?x\\xfe`\\x1f\\xaaYd?\\xb8\\x8bEoPWW?s\\x0b(\\x83\\\\\\xden?I]/\\xee8\\xc7T\\xbf\\x00\\x80 \\xec\\xce\\x80\\xda\\xbeg\\x12\\xa1!\\x07\\x91g?X\\xaa2\\xb6\\xd5\\xe7Q?\\xb0.\\xe1\\xb9=\\x16d\\xbf\\x00\\x96\\x95U\\xd5\\xea(?\\xf9\\xf8\\xa1&\\xc6]Y? \\x16\\xe4\\x93LJ!?<\\xcb\\x08\\xee/\\x9cs\\xbf\\x00\\xba\\x07]\\x95\\xa9>?\\x00Q}\\xfa\\xae%\\\\\\xbf\\x98\\xcd\\xea\\xb7B\\xaea\\xbf@\\xac\\x1e\\xa0\\xb3Ja?\\xa0\\x06\\x89/\\xbe\\xe9g?\\xb4@\\xe1ct\\x13m?\\xa0\\x15Ih\\xb4\\xf1w\\xbf\\xa2z\\xb5\\xdcx\\xd1d?\\xe5)\\xc5g\\x99]i?\\x08*s\\xcc\\xd0\\x1fl?\\xb84\\xcf\\xdae\\x03R\\xbf\\xa0It\\xbd\\xc8Mz\\xbf\\xfe\\xeft1L\\xb9p\\xbf\\x90\\x87\\xcb\\xd5:\\x948?H/\\xbb}\\xe3\\xc1w\\xbfx\\xfe\\xa9\\xe0\\x172Q?\\xcc\\x85,\\xb79\\xfcP\\xbf@;h\\xf8\\xe6:;\\xbf\\xd3\\x81\\x9c\\t\\x1b\\xa6w?\\x18\\x1b\\xc1\\x9a\\xf59s?\\xb0z\\xabf\\xf6I[?\\xe0vD\\xc8\\xf0mk\\xbf,\\xed\\x1f\\xdc>\\x07y\\xbf\\x1e\\x93\\\\\\x01&7g?\\x00\\xa9+\\xd69i\"\\xbf\\xe0\\\\b\\x9f\\xff}`?\\x04\\xe7.\\xcd\\x06\\xa3`?\\x00\\xf2@\\xe2\\xed\\x87\\'\\xbf\\x94K\\xea\\xcc\\xc6Ad\\xbf\\x00\\x92\\x81\\xe2\\xf9y\\'?\\xb0$N\\xef\\xa8\\x94G\\xbf\\xc0\\xfa\\xdb\\xa7}k\\x18?\\xe8=\\x9f\\x9c\\xdb{F\\xbf\\x80\"!c\\xcf\\xf0\\x1d?\\x18\\xc4\\xf7\\xee\\xf5^Y\\xbf \\x16\\xaf@\\x0f\\x1aR\\xbfpi\\xd0\\r\\xef\\xe4R\\xbf\\xd06\\xb8P\\x99\\xb9T? \\x15\\xabm\\\\0V\\xbf\\xf80\\xbd{%\\x8cR?t`\\x8b\\x7f\\xdb\\xaaV\\xbf\\xdc\\x07\\xa3^\\x7f=L?\\x00\\x80\\xbd\\xd8\\xf3\\xf1I\\xbf(\\x1c\\x83.\\x97\\x13S\\xbf(\\x14M\\xd1\\xcej[?\\x00bO\\xcb0\\xf1d? \\xae\\xdf\\x87\\xc4P@\\xbf\\x18\\xd1\\x12&\\x96\\xf7b?\\x82\\xa1\\x0b-\\x1b\\x96J\\xbf\\xc0\\x03PDo\\xe8\\x1b\\xbf \\x0e?\\xe4\\xc3TG\\xbf\\xc0z\\xd3\\xcb&a>\\xbf\\x80\\x0f\\xea\\xef\\xe7XI? \\xa2\\n\\xa3\\x11\\xa9^\\xbf\\x9a\\xc8\\xf8XK\\xa2p\\xbf\\x86\\xea\\xe1!\\xd1\\\\g?\\xd0\\xf0\\xa8\\x01\\xcf\\x9bD\\xbf@\\x04z\\xaa\\x10b\\x10?Fp\\'\\x0b[Uc?\\x8aV\\xef\\xee\\x88vg?\\xd5[\\xca\\x99\\xc5\\x96i?\\x00\\x8cF\\xebciZ\\xbf\\xc8\\x11\\xea\\xed\\xbb\\x9da?\\xa8\"F\\xe5I;f\\xbf\\x00\\xe0\\xe0,\\x9d\\xe1\\x00?\\x10[\\x17%q/i?\\x84\\x9c\\xe3!\\x86\\xcaI?@\\xfcf\\xe0\\xd2\\xfb.?\\x90wg\\xb7\\x06mg\\xbf ?\\xc8\\x84IOX?\\x000\\xecp\\x90\\xa1-?\\x80f\\x13*)\\x8d:\\xbf\\x80\\x91o\\xbbP8B?\\x00\\xe8\\xa9\\x04\\x03\\xa12?\\xfc#\\xb7\\xac\\xee\\xf7u?\\xc0\\xd2d#j\\xe3v\\xbfT\\xb2P\\x1b<,k?\\xec\\xe5\\xcf\\xd6\\xb2ew?`\\xe8^\\xb6\\xbe\\xbah?@\\xe4\\x15\\xaf\\x9c\\x161\\xbf\\xb8\\xc4\\xa2p-\\x93n\\xbf\\x90n\\xbe\\xe1\\xd3\\x9cw\\xbf\\x90\\x14\\xc6\\xf44\\xa8F?\\x18\\xb3q\\xc1\\x95XY\\xbf\\xf0\\xd29HG\\xba\\\\?\\xc4{wYs\\x08`\\xbf@>gT$%f?\\x18\\x1b\\xc1\\x9a\\xf59s?\\xb4\\xdd\\x05-\\xe2\\x83\\x80?8Z\\xfe\\xb8\\x9c\\xb7k?\\xb8\\xaf\\tQ\\x9azh\\xbf\\xd0)s\\xe6u\\xaf~\\xbfG{(\\xa6\\xc0vN\\xbf\\xf4\\x8c\\xd89\\xbbU\\\\\\xbf\\xe0\\xae!\\xf7x\\xbc?\\xbfP)\\x98wXq$\\xbf\\x9c\\xa8\\x99\\xcc\\xba\\xcaR?TaF\\xb7\\x95\\x1cQ?\\xe0\\xc0\\x85\\xb1Z\\x813\\xbf\\xd80\\xbeR\\xf1>6?b\\xe7K>\\xcc\\xee5\\xbf\\xe2\\xec@F\\xdffc?\\xe2jJ\\xac\\xd0\\xc2e\\xbf\\xd0\\xea\\xcf2\\x8b\\x12$?0\\xf8\\xec\\x92N\\xb1U\\xbf@\\xa5\\x02m\\xadR\\x01\\xbf\\x94D\\xeak\\xf7\\x80C\\xbf\\x00\\x82\\xd1@$\\x01%?\\xe4\\xb7CJ\\xe1\\x9cB?\\xd0\\xb8[\\xec\\xbc\\xa2-\\xbf\\xe8q7@H\\x16??\\x00\\xb0F\\x08#g\\xf3\\xbeh\\xdc\\x81s\\x05\\x8cA?\\x10.\\xdbK\\xbe\\x172?p\\x18\\xc1\\xf0\\xe7\\x14S?\\xfb\\xe7\\x1d\\xe94\\x89q\\xbf\\x14*{:+\\xfcU\\xbf\\xf4\\r\\x1aFz\\x7f7?R\\x85\\xeePO\\xb79\\xbf\\xf0/\\xb7+\\xb7\\x05A\\xbf\\xf8\\xf3\\xb2#\\x1d\\x87S\\xbf0\\xc2\\x11bM\\xceR\\xbf\\xe4\\xa4\\xa1\\xac\\xdc$^?\\xf9\\xbfUs\\x05\\xc6p\\xbfv\\x0c!\\x97\\x1dD|?v\\x12\\xa2z\\x92&N?\\xa8u\\x02D\\tVk\\xbf@\\x9d\\xda\\xcaI \\x15?\\x9a\\xff\\xe1\\x92\\xbf\\xefB\\xbf>\\x85\\x0b\\x12\\xd6\\xbft?\\xa0\\xe7 $\\x9b\\x01S\\xbf\\x80\\xc0x\\x86\\xd6\\x13\\xfb\\xbe4,\\xac\\xbf\\xd1\\x80l\\xbf\\xc0\\x86\\x89wa{U?\\xe0e\\xf7]\\xb0\\x99E?\\xb8\\xc8IA\\xb2\\x12&\\xbf#D\\xee\\xd1\\xeb)U?\\xa0\\xd5U\\xb6\\xe1h]?\\x90\\xf3\\xd2\\x10\\xe6\\xa3\\\\?\\x00\\xf3\\xb9\\x178\\xd2X?\\xc0\\xdb\\x83\\xce\\x88}]?\\xc8%\\xe6\\xa3\\xd5kl\\xbf\\x80\\r\\xa3\\x9c\\x05\\x02X\\xbf\\x00\\x06~f\\xed4\\x03?H\\x8d\\xad\\x08\\x8f\\xcc`\\xbf2\\x9e\\xcf\\x93\\x8d\\x94l?<N\\xc9i\\xa5.d?\\x90W(\\xae;\\x04^?\\x18m\\x96\\xca\\xaeVE\\xbf\\xe0g6\\xb1\\xc7*3?|\\x0c\\x05F&\\x03w\\xbfL!D\\xf5\\xe7\\x0c]\\xbf\\x88\\x8f\\x9f\\xc8w/D\\xbf\\x89\\x0b\\n\\xc21\\x15s?Po\\xba\\x86Z\\rJ?\\xf4\\t\\xe1dSjr?\\xb0z\\xabf\\xf6I[?8Z\\xfe\\xb8\\x9c\\xb7k?;\\xbc_\\xdf\\xfa\\xc5x? !\\xfa\\x16\\xc6\\xc7R\\xbf\\xc0!\\x10\\x10\\xe8\\x90m\\xbf\\xa7\\xb9\\xfd\\x82\\xa8\\xa5_\\xbfp\\x14\\xe1\\x87\\xf3\\xf17\\xbfp|\\x19\\xddW\\x96L\\xbfn+\\x1a\\xf1\\x14ea\\xbf\\x08\\xae\\x03)\\xa6 E?\\x945@b\\r\\x18T?x,\\xbe\\xf1[\\x02I\\xbf\\xc0)\\x95\\x8b\\x90\\xf7.?v\\xe7\\x1b\\xb4\\xfcm*\\xbf\\\\\\xee\\xeb\\x97\\x1a\\xb4C\\xbf\\xf0\\xdb\\x89\\x93s\\x1a^\\xbf\\xe8\\x113\\xad/\\xf0S?\\xa0\\xbb\\x87\\x81\\xef\\xc2D?\\xa6\\xd7\\xb76\\xd7\\xe8d?\\x14\\x7f\\x86\\x03\\xdf}J\\xbf\\x00\\xf8ah/\\xd1\\xd7>\\x104Ap\\r\\x1f?\\xbfd\\x81\\x97\\xef\\x1d\\xd6M?\\xa0>\\x07\\x0eC;\\x16?\\x00\\xe50\\x7f\\xc9j=?\\x88\\xf6H\\x8b\\xe3\\x0bB?X\\xb1\"\\x8dK\\xcf@\\xbf\\xf0\\xcc\\xeby\"\\x93X\\xbf\\x00\\x01l\\x8bd\\x91\\x19\\xbf\\xc4\\xd3l:p\\x8ba\\xbf\\x0e\\xce\\xbe\\xb1\\xf7r;?\\xaa\\x1er\\x83\\xc2,>\\xbf\\x008\\xb1\\xa5g\\x8e\\xe4\\xbe\\x00\\xcd\\xcd\\xea\\xcf\\x86/\\xbf\\xa0\\x7f7i\\x14\\x872\\xbfp\\xac\\x92w\\x152T?\\x1c\\xc2\\xab\\xbctMh?Xhq\\xac\\x14zC\\xbf\\x19\\x93\\x8d\\x88\\x1c\\x7f^\\xbf\\xf1\\xb3u\\xdb\\xf1\\xc0b\\xbf`WEM`V<\\xbf\\xc9\\x0bu\\xbb?\\xbad\\xbf\\x13\\xc6WG\\xfb\\xd5Z?\\x00\\x1ch`=\\x16N\\xbf\\x14\\xd9qE\\xebta\\xbf\\x08\\x07+\\xf3\\x1c\\xd5_\\xbf`\\xe4\\x17\\xae\\xed\\x1ed?P\\x8f\\xab\\xfe\\x86\\x8f_?\\xb4E\\x18\\x8c\\xec:O\\xbft\\xd9\\xbf\\x9e7\\xa01\\xbf\\xf8o\\x1ch\\x89\\x15m?@\\x08\\xb7\\x08\\xaa\\x00A\\xbf\\xc0f\\x99\\xb622]?`\\xe2\\xe2\\'\\x8dL_?\\xe0\\x8a\\x8a\\xe4<#U\\xbf\\x00v\\xb1\\xd7\\x1e\\xdde\\xbf@%\\x96j\\xf8\\xc7W\\xbf\\xe0\\x01\\xc4VW\\x12m? \\xe4t%\\x95\\xfdX\\xbfK4W@>\\x13S\\xbf\\xe0\\xcc\\x06\\xb6\\x05\\xa3c\\xbfH\\xb6\\x01\\x07\\xba\\x05P?\\xc2\\xe8SJ\\x1a:r?\\x04\\xfb\\xf2\\xb9 \\x86i?`\\xa6nL\\xa3FT?\\xa0\\xa4\\x87x\\xcfjr?x\\x12+yY\\xa6X\\xbf\\x00\\x80/\\x12aY\\x96\\xbe\\x008\\xaa\\xe4\\x8d[M?\\xe0vD\\xc8\\xf0mk\\xbf\\xb8\\xaf\\tQ\\x9azh\\xbf !\\xfa\\x16\\xc6\\xc7R\\xbf\\x16%\\xc8e\\x13kn?dj\\xa8\\x04\\xb1hp?b6\\xd8\\x12\\xacjq\\xbf\\xb0c\\x92\\xaa\\xaf;J\\xbf\\xacHUg!\\xcfj\\xbfD!2\\x0e\\x90-i\\xbf`\\x03\\xdc\\xbb!\\x80I?\\x86\\xf7>g\\x8bsj?\\xa8CUc\\xb6\\xf4Y\\xbf\\xfcU0\\xadL$U?\\xe1y\\xff[\\xa5\\x91:\\xbfPy\\x972\\n\\x98d?\\x90!:e\\xd6\\xd8Y\\xbf\\\\\\x96\\xc8\\xaf\\x88\\x90a?\\x00L!6\\xda\\x85@?\\xc6n\\xbf\\xd3\\x0e-d?\\x84\\x9f\\x10\\xbbD\\x06_\\xbf \\x04/\\xe9\\xd5\\xc5k?\\xa4\\xdcD\\xc5{\\x1dS\\xbf@\\x84%1e\\xe9^?(\\xf8\\xe2\\x1e.7:\\xbf\\x80\\x17\\x00\\xfdT\\x19B?H\\xbe\\x11\\xdc\\xdc\\x92U? \\xc2o\\xabn[T\\xbf`\\xb7\\x13\\xde\\xc2\\'l\\xbf\\x00\\x9b\\x9e\\xf3\\x0eg7?\\xa8\\xb6\\'o\\x8ehl\\xbfV\\xf1WG\\xba\\xe4T?\\x84\\xab\\xde\\x8a\\x8c\\x9a2\\xbf\\x00\\x92\\x10\\x94\\xa6\\xf3#?`\\xcf%\\x82k\\xe2S?\\xd0\\x8dx>\\xd5CT\\xbf\\xe81\\xc2&\\xfb\\xeda?\\xdc|\\xaa\\x08\\xaf\\xddw?\\x80T%\\x1e\\xeb\\x01g\\xbfp<\\x043F\\xa57?\\xb0Z\\xabK\\xd4\\x8a2?\\x98\\x80\\x1b\\xa7^\\xc2j\\xbf|\\x10\\x8f\\x86\\xaf\\xbdq\\xbfD-\\xa6\\x0f\\x04_]\\xbf@o!`9P\\\\?!\\x1d\\xc2\\xc4\\x15\\xe0g\\xbf\\xb0\\xb3\\xb1\\xe9\\x86\\x13]?\\x00\\xe3\\x0b\\xed\\xb6\\xc0U?\\x18\\xa8\\xca\\x925br\\xbf*\\nB\\xba$\\xcb[\\xbf\\xe4\\x85\\xa8Jg(C\\xbf\\x808\\x15\\xe8n\\x9dp? Z\\'N\\x87\\xfeV\\xbf\\x00\\x1d\\x8b[\\x83mF?@h2@\\xfd\\xc3R?\\x10`wTOGb\\xbf\\x00\\x19!I\\x81\\xd5]\\xbf@s\\x1b\\xf4\\xbb\\x14{\\xbf$,\\xbc\\x08\\x94Q\\x80?\\xbcx\\xa7\\xf3\\xe2\\xa5n\\xbfgs\\xad\\xb1V\\x05y\\xbf\\xf0\\xd7\\xaa)\\x86\\xc1l\\xbf\\x80\\xfb\\x98c\\xf2\\xd5+?\\xb0o\\xe7A\\xbc\\x9e~?\\xac\\xfa\\xcb\\x8a;`x?PM\\x03\\xfa\\xd4\\xc1e\\xbf$\\xf6\\xdc\\xb4\\xf8\\xe7x?\\x90?\\xbd\\x87\\xca\\x14W\\xbf\\xd0\\xa7\\xee\\x06$\\xfd`?`\\x89MG\\xbb\\xc8\\\\\\xbf,\\xed\\x1f\\xdc>\\x07y\\xbf\\xd0)s\\xe6u\\xaf~\\xbf\\xc0!\\x10\\x10\\xe8\\x90m\\xbfhj\\xa8\\x04\\xb1hp?$\\x16aC\\x84\\x07\\x86?dn4\\xbe\\xde\\xd3\\xa4?\\xe2\\xbb\\n\\x1b>\\xbb~?\\x18m\\x8f\\xef\\xa3\\x83h\\xbfG\\x18\\xf3\\xea\\x15\\xaf\\x9a?\\xc8\\x88\\x0c\\xe2H\\x98V?@@\\x1d\\xa7\\x03\\xde:\\xbfN\\x9b\\xbc\\xf9ys\\xa1\\xbf\\x84I\\xa5\\xb72\\xe8j\\xbf\\xcc\\x98\\xf2\\xc1_\\xe4;?G\\xa3\\xff\\x196\\xa7\\x90\\xbf2\\xe2|\\xe9\\xf2\\xdds?:\\x1f\\xff\\x90\\xe8\\xf7q?\\x0e\\x1b\\xf4\\xd9\\xaa\\xb1z\\xbf\\xf9\\x9a~/\\x12d|?\\xd0\\x08\\xce\\x13o\\x94\\x01?\\xf4[\\x99y\\x9a\\xb8\\x80?\\xa0\\xbcG\\xb7\\xd9J<\\xbf\\xe7\\xff\\xc1\\'\\x0bty?n\\xc2\\xc0\\x0cj\\xdcu\\xbf\\xa0^_\\xca\\xf1\\\\c?\\x10\\xb3\\xa4\\x0ck6s?\\xc2m\\x94\\x0f9\\xbba\\xbf\\xce\\x0c\\x04]\\xa36\\x85?J\\xcd\\xd4\\xd6E\\xbb\\x84\\xbf\\xd7\\xde~B\\xbd]\\x81\\xbf\\x16\\x9e\\xbbQ:\\xdec\\xbfT`9\\xddg\\xa0m\\xbf\\xc8\\x94Vr\\xef\\x95m?4\\xb9\\x03\\x17L\\xe2a?h\\xdb6\\xb6\\x97\\xf3a\\xbf5\\n\\x86B\\xafDz?\\xb6\\xf9\\xe5s+;}\\xbf\"^fY\\x05e\\x9d?\\tA2\\x9d\\x9d\\x93\\x81?\\x00q\\xe8\\xfb$\\xd5B\\xbf\\x11\\x96c\\xa6LH\\x8a?\\x00P\\xd6E\\x82\\xe38\\xbf\\x14\\x8a\\x0f8C\\xed\\x86?\\x82gi@\\xf1\\xbf\\x81\\xbf\\xc4+\\x14\\x9a%\\x89h\\xbf\\x14\\x98p\\xbeC\\xa6\\x88\\xbf]`/fz+\\x8e?\\xc9\\xb7\\xb0\\xadfz\\x98?\\xa0\\x7fuv\\x1035\\xbf|(\\xd5o\\xa5S\\x8e\\xbfb\\x8aU\\x07\\x80\\xe5x?0h\\xd9Ppv|\\xbf\\x00\\xc5[\\xcfz\\xc7=?\\xbe\\xaav\\xce\\xb3\\x1a\\x85?\\x80\\xd7\\x81.\\xbaz\\x84?(\\xb6\\xf83\\'\\xe5x\\xbf \\xedH\\xfai\\xceE?`k\\xfa\\xb4:\\x14t?\\x00\\xec\\xc0\\xd2\\xff\\x884?.M\\xc8-\\x0c\\x8cn?\\x80V*\\x94\\x94$b?\\x80\\xca\\x99\\xd3\\xe6\\xdc ?\\x001\\xfd\\x1c\\xcf\\xec}?\\x80\\xd4\\x0c\\xf3\\xfc\\xa6Z?J\\x9c\\x96\\x96\\xeb\\x81\\x83?\\x08g\\x0b>\\x0fx}?0\\xdc`R\\xd4~[\\xbf\\xf1\\xcf\\xfe\\x7fE\\x99\\x87\\xbf0\\xb1\\xd8b\\x08\\xd0X\\xbf\\xd0\\x05\\xca\\x99JY]\\xbf\\x00C\\xcbJ\\xbf\\x1c=\\xbf\\x80\\xa1\\x01\\xa1jA8\\xbf\\xc0\\x91\\x13\\x04\\'\\xf6G?\\xa0L\\xd3\\xcb@\\x90h?\\xe2\\xbb\\n\\x1b>\\xbb~?\\xe5\\x89w\\x18\\x9b:w?\\x90\\x92w\\xcc\\xe9\\\\1?\\x00SM\\x85e\\xc6>\\xbfo\\x06 \\x1e\\xb8\\x8dc?>\\xd45\\xdf\\x11\\x14@?:\\xef\\xd1uG%g\\xbf\\xd9\\xd3\\x9b\\xbb\\xf2\\xc9h\\xbf\\xdaK\\xd3\\x1c\\xee\\xebO?`\\xd0M\\x16v\\x1cx\\xbf\\xe0\\x98sD\\xf3\\xcew?\\xd4\\xe2\\x905|\\xb5_?\\x80|e\\xd5\\xeejH\\xbf\\x16R\\xfe\\\\\\x7ftu?x\\xb1m\\xc9\\xd7v0?~P]29\\x0e`?.\\xdef\\xc9\\xbd\\xc4`\\xbf\\nS\\xeb\\x80\\xf1\\xd0`?\\x086\\x1f\\xa0\\xd9b9\\xbft\\xb3\\xfer)\\xedi?\\xbe\\xc7\\xc96i\\xf9Q?\\xc6Fvq\\x95\\x0cY?o\\x80o\\xa3\\xc1:q?\\xb0\\xf9\\xe1\\x90\\xd4\\x01V\\xbf\\xf8E\\x1d-\\x0cz`\\xbf\\xc21\\xb9\\x82r|^\\xbfx\\xaa\\x10\\xa1{a\\x10? \\x97\\xd2\\xf1\\xccNR? \\xdc\\xa1r\\x17\\x9f&?P#\\xbdM\\tP@\\xbf\\x00\\xa9\\x9cP9#\\xf4\\xbelM\\x80[bFZ\\xbf\\xef\\x97\\xf1\\xa0\\xb8Lu?;6\\xcc\\x14(\\x7f@?\\xecok9\\x14\\n@?\\x9c]\\xc9\\x823@W?\\xc8\\x8bn\\xc3\\x81!C?\\x80\\x8c\\xb6\\xc2\\xec\\x1fv\\xbf\\x88L\\xb4\\xa7N\\xf2Y\\xbf\\x10\\xfb\\x95\\xd1\\xb1iK\\xbf\\xc0\\xe9b\\xf4aC=?\\x80\\r|T):a?H\\xec\\xe6Z\\x85\\x1de?\\xf4\\x92]TnPP?J\\x14\\xd7`\\x93\\x1bb\\xbfP^\\xc5Z\\xb5\\xc9\\\\\\xbf\\xf0Q\\xca\\xe1\\x8aat\\xbf\\xd0&\\xacs\\r\"h?\\x9ce\"\\x0b\\x06\\xc8J?@ps\\x10\\xbc\\x80a?\\xb0\\xf9\\xd5\\xec:QS\\xbf`\\x08s\\xf0x\\x84\\x10\\xbf\\x18\\xbfe\\'8\\xf5\\x85?\\x98\\xac\\x92\\xdf\\x97\\x0fb\\xbf\\xf8\\xee\\n\\xa5\\x19I(?h)\\x19o\\xbc\\x18\\x83\\xbf0;a?\\xd9NY?y\\x0e\\xe5\\x1ex\\xf0u?\\xecp\\x02\\xa1?\\xb4a?\\x16\\xff/%\\x7f\\x9co?\\x86\\x05\\x0f\"\\x13\\xe5f?Z;\\xd0\\x1a\\x80\\xcdc\\xbft:!CK\\xdae\\xbf\\xb0\\xb2\\\\\\xd4E V\\xbf\\xa8z!H\\x0b\\xb0P\\xbf\\x00\\x00\\x89~\\xb2\\x8e4?\\x18u\\x05\\xdcZ\\x0eV\\xbf\\x00\\xf3e\\x8f\\xe4\\xf1)?\\xc0\\xe3f\\xb2n\\x1aI?\\x18m\\x8f\\xef\\xa3\\x83h\\xbf\\xb0\\x92w\\xcc\\xe9\\\\1?\\x9a\\x8a\\xac\\xae\\xb2/n?\\xc0\\x82\\xc3\\xd5&\\x03e\\xbfH\\xdc,;\\x89\\xda:?\\x10W?.~SG?X\\x83L\\x912Hm?\\xd0\\xc8\\xbe\\xb4\\xab\\xbd0\\xbfE\\x82\\x7f\\xd7D\\xa5L\\xbfR\\xa2\\x85Y!:R?p(\\x7f8]\\xb5I?0\\xbf/\\xee\\xe5\\x1b\"\\xbf\\xa0\\t\\xeb{\\x01\\x9eY?(\\xea\\x9dgx\\xb0N\\xbf\\x1e\\n\\x19k\\x17\\x816?dfs#Z F?p1\\x03\\xa0/]5\\xbf\\xb6\\x14\\x04\\xd1\\x0e+H\\xbf\\x00\\xc5\\xe7\\xf1\\xc0\\xd7F?\\xd0\\xeef\\xf7\\x8f\\xdbT\\xbf\\xe0k\\xe5\\x86O\\x00 \\xbf0\\x06Z\\x00\\xa8\\xb43\\xbf\\xe0\\xd2\\xb2\\xbb\\xfe\\xa7K?\\x80\\x8e\\x9d\\xad1\\x1b+?89\\xdf\\xda\\xe8\\x9f@?8\\xb0\\x16\\xf8\\xd8&B\\xbf |\\xfe\\x07(\\xae\\x06?`%\\x04\\x87\\x16wK\\xbf(zP\\xa8\\x024Y?\\xe0]\\x94Z1\\\\3\\xbf\\x80\\xe7p\\xe6\\x9e,\\x0f?\\xbc\\xfaL\\x00\\xc4pP\\xbf\\x10\\xba\\xae\\x83\\x988^\\xbfZ\\xbe\\xd5/F\\x8dV?u\\x90\\x90\\xfe\\xedaf?`\\xe5ia\\x9a\\xbe4\\xbf \\xcb\\x12\\xa8\\xc9\\x9e7?\\xc0\\xb7P<\\x1a\\xc6W\\xbf@R\\x93\\xc7c\\xe3H\\xbf\\xc0\\xa1\\xd8\\xb4\\x01\\'I?\\x002\\xe3\"b\\x16$\\xbf\\x00\\x89d\\x08\\th\\r\\xbf\\xb8\\xbc\\xb6E)\\xb8Q\\xbf`\\xf7\\xca#\\xf4\\\\Q? \\x8ex\\xa6r\\xa7B?`O\\xcc\\xcd\\x1aNG?\\xa0\\x08\\xec\\xd9=\\x9bR\\xbf0\\xe7S\\xc0\\xd5~f\\xbf\\xf2\\x1c\\x12\\xa2{\\xabh?@\\xa2[5\\x88\\x04\\\\\\xbf\\x08}\\xeb\\xbe\\xb9\\xe7w?\\x80\\x1e\\x8fRo\\x1cE?@BK$!\\x0fw\\xbf\\x08y\\xac\\xef\\xa30e?\\xd1u\\xa1\\xf2\\xdf\\x0el?@.\\xf4{,\\xb2w?P\\xdf\\xa9\\n7\\xf7_\\xbf@\\xed\\x8dz \\xa0-\\xbf\\xa0\\xc5\\x15R\\xafc4? g\\xfa\\x0fjKh\\xbf\\xfc\\x8b\\xd67\\xd3\\x9dh\\xbf\\x80\\x88\\xa1\\xf5\\xe7_@\\xbf\\xe4\\xaf\\xee\\x04c\\x91q?\\x88\\x9f\\xf3\\xf3\\xbbjP\\xbf\\x00\\x1c\\x1d\\x19j\\'\\x04\\xbf@\\x83\\xf6)\\xeb\\xa6X\\xbf\\x80U\\xa0O\\x97\\xb91?\\x00\\x9ev\\xaa\\xcc\\xc74?@~7\\r,kO?G\\x18\\xf3\\xea\\x15\\xaf\\x9a?\\x00SM\\x85e\\xc6>\\xbf\\xc8\\x82\\xc3\\xd5&\\x03e\\xbfL&\\xf1H%\\xcb\\xa0?\\x0eU{\\xc2\\xe6\\xeds\\xbf\\xc0\\xfa\\xca\\xd4O\\x80\\x1e\\xbf\\xb6\\xd3\\xdd\\x13h\"\\xa0\\xbf\\x97D\\r\\xa6\\x80\"j?\\xde\\x176\\t_\\x82a\\xbfS\\xc6\\xda+f\\ru\\xbf\\xa2\\t\\x01\\xa0\\xaa\\xd4\\x80\\xbf\\xf4]\\xe1\\xbd>\\x89N?\\xa49E\\x1c\\x8c\\x08\\x82\\xbfX\\xff\\x0f\\xce\\xe8\\xfb`\\xbfsz\\x81>\\xecWC\\xbf|\\x8d\\xf2\\x86K\\xe8s?\\xa4\\xa9\\xc1\\x8d\\x01\\xe2e?e\\x8d\\xd1\\x9e.D^?\\x18\\x87\\x04I\\x18dn\\xbf\\xb8i\\x16\\xaa\\xe9\\xf8d\\xbf\\x00\\x9e\\xea\\x9e\\x8c|;?e\\xe5\\x17{\\xaf\\x19s\\xbf\\x80\\xb6\\xa0\\x97\\xcc\\xe31?P\\xd2-(\\xa9\\x0f\\x80\\xbf\\xef\\xd7(/)\\xf9u\\xbf\\xc0\\xa9jV\\x92\\x9cW?r?f:\\xb19l\\xbf\\xe0\\x81\\xbd#?`M?\\x00V\\x8f%\\xdc\\xf1\\x0f?@8\\xaf\\xfeD\\xd00\\xbf\\x9aj\\\\\\xe1&\\x95v?d0R\\x05\\xc6\\x8el\\xbf\\xf4\\xcf\\x0b\\x96W\\xbe\\x93?r5\\xf3\\x16*{}?@\\x9c\\xba\\xcdo\\xf0*?\\xae\\xa6\\xd1$U\\x96\\x82?\\x800)\\xe7\\xba!b\\xbf\\xb8\\xbc^\\xff\\xf39\\x8e? s\\xa2\\xa4>\\xe9]\\xbf\\xf0\\xca\\x12\\xff\\xc7\\x19V\\xbf\\xc8-\\x98|\\t\\x11\\x81\\xbf\\x8c\\x029J\\xd8\\xc0{?\\x8b\\xe9\\x03\\xc4SJ\\x92?\\x00%Q\\x06\\x88\\xe2V\\xbf\\xac^Kvg\\xff\\x83\\xbf\\xc0\\xcf\\xcf\\xc0[\\xd2J?\\xe0\\x1aP\\xf3\\xb7\\xcbp\\xbf@\\x1f\\'d_\\xc3[?\\xf4\\x01\\xb2yNE>?(r\\xb2\\xa3\\xe3\\xbd\\x82?\\xa0\\xc2A}\\xa6\\x00\\x81\\xbf\\x00\\xbfl\\xc7\\xfa\\x8d\\r?`\\xe3\\xc3\\x03\\xc6\\x18s\\xbfHY\\xe3l\\x81\\x90v?\\x02r\\xa4*\\xe7\\xd4b?`\\xfb\\xa4\\x90\\xc5\\xf7p?\\xdcW>\\x7f\\x9d\\xbdt\\xbf\\xa8\\x97\\x16\\x909@u?\\x80\\xa2\\xac\\xe0=\\xdd4\\xbf\\xce\\xb9\\x08\\x91\\xb8!\\x84?d\\x18\\x9e#\\x13+\\x85?\\xe0XP\\x9a,\\x99M?[d\\xdb\\x8a\\xaf\\x7f\\x8b\\xbf\\x80\\xa3\\xc7\\xe4.PA?\\x80\\xf1\\x8f\\xc8\\xc0PH\\xbf\\x003\\x00\\'\\xb9\\xe75\\xbf`i\\x18\\x9c\\xad0\\\\?H\\xd3\\x93\\\\\\xebEa?\\xc0\\x86\\xf8J\\xce\\xd3Y?\\xc8\\x88\\x0c\\xe2H\\x98V?o\\x06 \\x1e\\xb8\\x8dc?H\\xdc,;\\x89\\xda:?\\x0eU{\\xc2\\xe6\\xeds\\xbf]\\xa4\\xe9\\x1f\\xe9[r?\\xa0\\xd2\\x94U\\x05\\xc2??\\xf8\\x95\\x1b\\x9c\\xe7db?\\xb9\\xdb>m\\x10Ug\\xbfB\\xe6^\\x9a\\xe7\\xe9B?l\\xde\\x83\\xd8\\x0e\\x06]\\xbf\\xd79\\x9d/\\x8d\\xf3z?\\xb1g\\xf1lQ\\x0fP?\\x80p)\\x87\\x0e\\x84^?\\x86\\xb2\\x17\\x92:\\x8ek?\\xb2>\\xc9p\\xa9u9?\\xa8\\x9fZ\\xefu\\x9e6?\\x9e8\\xe2\\x8f\\xc6\\xe3`\\xbf\\xa0cp\\x8c\\xad\\xee\\\\?\\xc0\\xc7\\xeb]bS%\\xbf\\x8c=4F5\\xdfV?h\\xab\\xc5q%\\x05\\\\?\\xdb\\xb0aP\\x94rR?.\\xf7\\x82 \\xf9\\xccq?\\x90\\x07q\\xd8\\xde\\x9c0?`p0\\x01s^<\\xbf\\xcbe\\x89\\xb2\\x0b\\xdbb\\xbf\\x1c\\x98%(\\xb1\\xa51?\\xc0\\x93\\x86\\x8f<\\xf5 ?\\x90A0\\x91\\xe3\\xf8X?\\xe0[`\\x00\\xe3\\x1bA\\xbf\\xc0\\xed\\xfc\\x8f\\x8f\\xd2\\x01\\xbf\"l\\x10\\x7f\\xd0-S\\xbf\\x00\\xc5\\x02\\xe3\\x8a\\tH?\\x80~\\xc7\\x98\\xf2\\x19\\x0e\\xbf\\xbe\\xf7\\xfb\\x92\\x0c\\xb1R?x\\xf1\\x86\"\\x83\\x8c6?\\\\\\x02\\xb4\\xc3\\xaf\\xfcW?\\xe0\\x15s\\x9e\\xeb\\x96\\\\\\xbf\\x94\\xeb(q\\x07\\x11f\\xbf\\x94\\x1d\\x1e\\xfb\\x0e\\xc0A\\xbf@\\xaf\\xa0\\xfc\\xb3\\x1bg\\xbf\\x90\\xbcd>\\xc1im?\\x9c!\\xf8g\\xd6\\xa1_?\\xf2\\x91\\xc7;\\x8c@V?\\x98\\x10\\x99\\xc2\\xaa\\x14P\\xbfJyd\\xf7\\xdb\\xb6a?\\x003\\x81\\xae\\x822U\\xbf\\x08\\xf2\\xbfK\\x9e\\xc2a\\xbfU@\\xe1\\x0e||}?\\xa0\\x9e\\xb5K\\x85\\xb0b\\xbfn\\xca\\xff\\x88\\x7f\\xaby?\\x02L2\\xa2\\xbc\\xc4V\\xbf \\x01i\\xa6\\xa9(Q\\xbf@o\\xd9*\\x80\\xde4\\xbf\\x00\\xa5\\x8d\\x9a\\xbdaW?\\xac#E09\\xe5\\x81?\\xb0W\\xb3\\xa5\\xacw:?\\t.\\xae/\\xddth\\xbf@\\xdbo\\x19\\xb1\\xb6\\x1a?\\xe8e\\x83\\x1b\\x92\\xfee\\xbf \\xc4a2\\xdd\\xed{\\xbfP\\x07\\xea\\x96%g3\\xbf\\xea\\xe0Y_\\x94\\xf1j?@\\xe3\\x0c\\x9c\\x8d,8\\xbf@\\xa6\\x1c\\x15\\x18 \\x11\\xbf@aw\\xae8|I\\xbf\\xc0\\xe6\\x82\\xa4\\xc0U#?\\x90\\xf8\\x1eQ\\xd0\\xd5J\\xbf@\\x15Dc\\x97\\x7fT?0@\\x1d\\xa7\\x03\\xde:\\xbf>\\xd45\\xdf\\x11\\x14@?\\x10W?.~SG?\\x80\\xfa\\xca\\xd4O\\x80\\x1e\\xbf\\xa0\\xd2\\x94U\\x05\\xc2??|\\x10v\\x91\\xc9\\x98m?0\\x1cVx\\x9bmE?\\xf0\\xa9\\xef~\\x1aF7\\xbf\\xcc\\xfaO\\xea\\xba\\xa0O\\xbf2\\x8b\\xae\\x10\\xa3-`\\xbf\\xf0\\x1bqM@\\xb5\\x1e\\xbf\\xcc7\\x0b\\x00uqM?j\\xe8\\xfa-\\xfd\\x91b\\xbfno\\x08\\x9e\\x91bV?\\xf4\\xc3\\x1c\\xb0\\xfd) \\xbfv\\xbd\\x9ay\\x7f{V\\xbf\\xfa\\xf9 \\x88\\xfd\\x84A\\xbf\\xb7\\x07\\xc26\\xe5\\x87O\\xbfP\\x111\\xf36uI?L\\xb9e\\x88m\\x96W?~\\x0b&\\xa5\\x9a\\xf2L\\xbf\\x0e\\xf6\\xeb\\xd2\\xdd{H?\\xacHE\\x18w\\xe3Y\\xbf\\xc06\\x02\\x94\\xbb\\xca7\\xbf \\xa7\\xfa|\\x1a\\n\\x14?\\xdc:\\x85\\x8e\\x81\\xca6\\xbf ?\\xea\\x8d\\xebv\\xf2\\xbe\\x80\\xbcG\\xe4\\xe5\\x19\\x1a?\\x86@Dx\\x9b\\xefP\\xbfL\\x9e\\xc5\\x04\\x17\\xc1A?\\x08t\\xb9z\\x9ev.\\xbf\\x8d\\x85\\x88\\xca\\xfbYQ?\\x00\\xf5\\xdf\\'\\xb2d\\xf3\\xbe\\xdb\\x98\\x8a7\\xf1>a\\xbf\\xec\\x18\\xf3\\xcc&\\xb1C?\\xc0\\xe2t`\\xcd{:\\xbf\\x94\\xcc\\xaa\\x1b`}M\\xbfx{>\\x84~\\x1cd\\xbfP\\x81\\xbf{]\\x02M?0\\x1e5hz\\x8d/\\xbf\\x10\\xeb\\x10L\\xb5\\xb8P?\\xa0d\\xad\\xf3\\x96\\xc6Y\\xbf\\xa0P\\x8chn\\x9d*\\xbf\\x14>R\\xfeI\\xe8E?\\xb6\\x90\\xc5\\xef\\xe4\\xb9]?\\xc3\\x81\\xa9W\\x1e\\xaae\\xbf\\xf0\\xc0\\x1ckFVY\\xbf\\xb0c\\xc2\\x99Z\\x8dp?\\x8a\\xb4\\xf4\\xfa\\x8d\\xbaE\\xbf\\x00\\x8b\\xc7\\x8f\\\\\\xc3\\x05\\xbf\\xd8 \\xda4\\xe8mQ\\xbf\\xd8m\\x0b\\xb8,^n\\xbf\\x08\\x7fc>6Av?\\x98\\xf4\\xf2+.\\x15Q\\xbf^\\x8a\\x1c\\x85iEF?\\xb8m\\xe3\\xc3u\\x98{\\xbfP\\r\\xd4\\tR\\x19\\\\?,f\\x87\\xb18\\xdcS?\"\\x19\\xca\\xb0t\\nS?Ra?\\xabO#c?\\x18\\x94i\\x91\\x8dCD\\xbf\\x84\\'\\xdd\\xbb\\xe3\\x83S\\xbf\\x12\\xb3\\x9ef\\x90VV\\xbf\\xc4Wk\\x15\\x9c\\x1aF?\\x00v\\x8b\\xeaX\\x16%\\xbf\\x10\\x98N\\xf33\\x81@?\\xc4\\x15\\xc67\\xceoP?\\xa0\\x88\\x93 \\x9f\\xfd=? \\xce\\xfb~\\x02\\xb1@\\xbfN\\x9b\\xbc\\xf9ys\\xa1\\xbf:\\xef\\xd1uG%g\\xbfP\\x83L\\x912Hm?\\xb6\\xd3\\xdd\\x13h\"\\xa0\\xbf\\xf8\\x95\\x1b\\x9c\\xe7db?0\\x1cVx\\x9bmE?X\\x85\\xf58\\xaf]\\xa5?l\\x05\\x9a\\xc1pVN\\xbf<m\\x95\\x88\\xe3\\x18V?I\\x8f\\x9c!\\xa4\\xb0\\x86?`\\x98\\x94>\\xb1\\x01A\\xbf\\n8h\\xb5\\x92\\xb6e\\xbf\\x01\\\\\\x8c\\x8cO\\x85\\x82?\\xd0l\\xeb\\\\zO3?\\xe0n_$\\xea\\xac\\xf1\\xbek\\x93m\\xa9BG\\x80\\xbf\\xf8\\xbdp\\x1b\\xab\\xc7b\\xbf\\xd0f\\xdf\\r\\xc5Ww\\xbf\\x0f\\xc9zd\\x8e\\xcbr?0\\x84\\x16{\\xfb\\x1ea?hb\\x92a\\xfb\\x92k\\xbfy\\xf3WX\\x18\\xfaq?\\xd0b\\xf5,\\xf0\\xc5|\\xbf\\xfa\\xdc,sgV\\x84?yzNJ#P\\x84?\\x80y\\xd7\\xb1]\\x10\\x10?-\\x99\\xf0\\xbbrUq?h\\x9c\\xbc\\xc6m\\x1fd\\xbf\\xe8\\xe2\\xd7S\\x07\\x9fd\\xbfXF\\xcc\\x80\\xa56c?\\x85\\xc9t7\\xfcI\\x82\\xbf\\x88~VY:!z?\\x9a\\n?:6\\xbb\\x9c\\xbfXN\\xee\\xd5|r\\x82\\xbf\\x00\\xb0%\\xb3\\x89!\\xea\\xbe\\x0e2\\xbfL\\x15\\xe6\\x8d\\xbf !\\r&\\x01\\x06`?6\\xa6\\x0fs\\x16\\xa8\\x95\\xbf\\x98eyP\\x7f2\\x7f?\\xfc\\x16\\x01W\\x85Jc?\\x1c\\n\\ngn\\xe2\\x8f?\\xb7\\x14\\x94i\\xc4\\xd7\\x90\\xbf\\xd2Oz\\xb6\\x8d_\\x9c\\xbf\\xa0\\xcf\\x1f\\x95\\xe1\\x14e?!8\\xf7\\x06\\xbd\\xc4\\x8e?\\xd6\\r\\xc2\\xc8\\xd0\\xc8\\x80\\xbf\\x98?j%\\xe6ms?\\xe0\\xd0\\x83\\xc0\\x98\\x08f?\\xc1\\n\\xf5R\\x899\\x81\\xbf\\x18\\x06\\x99\\xc0\\xe2t\\x88\\xbf\\xd8\\xe1\\x00* zx?r\\xa8C\\x9d\\xa1)t\\xbf0:\\x87\\xda\\xfa\\xe9\\x85?\\x80K\\x99\\xe0\\x8a\\xe8{\\xbfh\\xa5\\xfd\\xc2\\x94\\xc7k\\xbf`\\x7f\\x0e\\x19\\xdf\\x91\\x8a\\xbfh&\\xa6\\xc9\\xeaL~?\\x1e&\\xa0\\x00\\xd9\\xb1\\x80\\xbf\\x10F{_2\\xedU?\\x13\\x03u\\xab\\xf4\\xb0\\x8b\\xbf\\x9a\\xa4\\xbb\\xea8\\xc8\\x88\\xbf\\xa8\\xe0;\\xbf]\\x98`\\xbf\\xe7G\\xeb\\xf1\\xe1e\\x94?\\x90\\xc8\\x9e\\x8e\\xff\\xb5Z?P_W\\x0f\\\\\\xc1Y?\\x80\"\\xd9\\xddsn2?\\xc0\\x16\\'\\xa9sg%\\xbf\\x80\\xf9~8\\xa7\\xca_\\xbf\\xa0T\\r\\x01.Bi\\xbf\\x84I\\xa5\\xb72\\xe8j\\xbf\\xda\\xd3\\x9b\\xbb\\xf2\\xc9h\\xbf\\xd0\\xc8\\xbe\\xb4\\xab\\xbd0\\xbf\\x97D\\r\\xa6\\x80\"j?\\xb9\\xdb>m\\x10Ug\\xbf\\xec\\xa9\\xef~\\x1aF7\\xbfl\\x05\\x9a\\xc1pVN\\xbf(\\x03\\r\\xa0J<r?\\xd5\\x93\\xf0\\xa2\\xd0\\xa6H\\xbf\\xe7\\x04G\\x95\\xbe\\xcde?\\x90U\\xf4|\\x84\\xd8u\\xbf8\\x9f\\xba%\\xfe\\x97P\\xbfj\\x1e<\\xae\\xd9\\xa1W\\xbfC\\x83\\x9dM7Bq\\xbft\\xd5Y\\xa4/.3\\xbf\\xb4\\xf8\\x824\\xc3\\xea<?\\x1a.\\x982kWf?d\\x1a05a\\xb8Y\\xbf\\xc0\\rXky]3?\\x98\\xc2\\xaa2\\x1d\\xcca\\xbf\\x0c?\\xe6.K9R\\xbf:\\xd3\\xbb}\\x06\\x9eO\\xbf\\n{\\x92\\xa9\\x04}l\\xbf\\x80x\\x85\\xea\\xfa\\xa7\\r?\\x00Z\\x92\\x1d\\x0cA\\xeb\\xbe\\x92A\\x06\\x9blCe?\"i\\x1cN\\xde\\x00/\\xbf0\\xda9\\xd9\\xb8\\x97>\\xbfx{\\x96\\x07\\xf4\\x8aH\\xbf\\xf0k\\x81\\xd3\\xc3$@?\\x88\\xcc\\xf6t5%<?\\x08\\x99\\xc5?S\\xa5Y?H\\r\\x1d\\xfd\\x03\\xe7V\\xbf\\x04P\\xd0\\xa2x\\x052\\xbf\\xf8\\xfd\\xdf\\xddT\\xf9;\\xbf\\x14-\\xeb\\xbeB\\xf34?X+\\xa0\\xa9\\x85nU\\xbf<\\x10]p^\\x01k?\\xa0?\\xe4\\x98(\\x18Q?\\xc9\\xc0\\xbc@\\xa9kU?Hz\\x86\\x1a\\x89@l?\\x18\\xe8\\xf9\\x1a\\xbflB\\xbf\\xb0\\xa9s\\x9ap\\xe82\\xbf\\xd2r\\x10\\x8be\\xc3b\\xbfp\\x8f\\xc09\\x84\\xa7J?\\x00\\x88\\xfa>G\\x0e\\x0f\\xbfHMpF\\xeb\\xdda?\\x001B\\xd0\\x17\\x82-\\xbf\\xc3C5\\xab0;k\\xbf\\xc8\\x9d\\xb2\\xaf\\x9f\\x1bh?\\xd0$\\x9b\\x98 \\xd1`\\xbf \\xb2\\xcc\\xa6\\xaf\\xc2D\\xbf\\x18b\\x1d\\xe9i\\x99y\\xbf\\xb0\\x06Y\\xca\\x88\\xcfa?\\x1bb\\x87\\xb6J\\x8cS\\xbf\\x80\\xcb\\xcdx\\n\\x0f[\\xbf\\xd8`\\x85\\xef\\xeaqO\\xbf\\xd8\\xdc\\xef<y0I\\xbf\\xa0q\\xc0e\\xe6lH\\xbf d\\x7f\\x94r\\x16E?V\\x16\\x0f\\x19T\\x04d?\\xe8\\xecg \\xf7GM?\\xd8Q\\x97\\xd8\\x1e\\x1d[\\xbf ~\\xf7^4\\xbf/? \\x06=\\xed\\x85I*?\\x00\\x17\\xban\\xcfd\\x1b\\xbf\\xc0\\xd4\\xb9\\'f\\x81=?(\\x15>\\x1e\\x00-C?\\xc0@B\\xe9\\xb3\\xb6T\\xbf\\xc8\\x98\\xf2\\xc1_\\xe4;?\\xdaK\\xd3\\x1c\\xee\\xebO?D\\x82\\x7f\\xd7D\\xa5L\\xbf\\xde\\x176\\t_\\x82a\\xbfB\\xe6^\\x9a\\xe7\\xe9B?\\xcc\\xfaO\\xea\\xba\\xa0O\\xbf<m\\x95\\x88\\xe3\\x18V?\\xd5\\x93\\xf0\\xa2\\xd0\\xa6H\\xbfOJl\\xa8\\x8d\\xcbl?\\xea\\xe9]@d\\xadR\\xbf\\x1d\\x12\\xa2\\xa7\\xeb\\xb2[?\\xf7\\xef\"\\x964\\n;?\\x1bl\\x14T/\\xc9G?1\\xdc\\xdc\\xad\\xc8#Y?\\xb0h\\'\\xe1D\\xe6\\xcd\\xbe\\xac\\t6\\x86!\\x0fZ\\xbf\\x97`\\x97\\xb8N97?\\xb1\\x88\\xf20n\\xd8$?\\n\\x9f2V\\xc3-8?>\\xa5,\\x13q\\x12R?\\xf07[\\xb2\\xb1!(\\xbf@b\\xa5\\x1a\\xd5\\xbf\\x02?\\xf6)\\x1f\\x11\\xa9~L?\\x0e\\x0e\\xacI7*@?\\x96.H\\x04x\\x1eI?\\xf2B\\xde\\xeb\\xc2\\xef:?\\x02[h\\xdb\\xa040?\\xf86\\x87\\x85v%*\\xbfH\\x83\\xb2\\xac\\xa2OA\\xbf\\x1c+2~s\\xe07? \\xd0\\xe6|\\xd4\\x9f\\x02?\\xf0\\xe8W\\xb8\\xbb \\r?\\xb4.\\xe1\\x0c\\xfe<K\\xbfx\\x8fe\\x16\\xdbv=\\xbf=I\\xad\\xf2\\x11\\x84c\\xbf\\x08~\\xe9~+\\xd5\\x1e?d\\xd4\\xa2\\xa5#\\xe11\\xbf\\xd6\\x04lM\\xacmP?\\xa82\\x08l\\x9b\\xbd8?6b\\xed{\\xeb\\xc8I\\xbf\\x80\\xeb\\x00\\x83\\xc0+\\xfb>\\xf2\\x896\\x01\\xc8\\xaba\\xbf\\xde\\x8f\\x1aY\\x1f\\x9a[\\xbfT1}\\xb6\\x90($?\\x8c\\x91\\xda\\xf1b\\x9eT\\xbf\\x10\\xa5\\xb6\\x1c\\x12\\xff\\x10\\xbf\\xb1\\xbd\\x18\\x16@\\xead?\\xb6Q\\x92\\x14n\"d\\xbf^v\\xc5V\\xbe\\xc2n\\xbf\\xd4\\x8dDX,\\x94U?Ep\\xbb\\xd2\\xfb\\x95p\\xbfJ\\xd5I\\xf4\\xe3\\xd4A?h\\x1d\"\\xb9\\xe7\\xb5X?&v\\xb3d\\x06)U? >\\xbd4\\xa2sb\\xbf\\x00\\xb1\\xdc\\xce\\xd0\\xbes\\xbf\\x00\\x04\\x12\\xaf7\\x99:\\xbf\\x80>\\xa5\\x9a\\x8a\\xb57\\xbf\\xcf\\xc9\\xc0\\xbd\\xbd\\xb8F?k\\xb5\\xd3tt~@\\xbfbt\\x80W]\\xd9i?\\xb4\\xd6\\xa1\\xec\\xa7\\xe5F\\xbf\\xa8\\x82\\xfa\\xb8\\x83\\xf6S?\\x0cJ;Qx\\xe9I?\\xc4X\\x87\\'\\xb1\\x80?\\xbfh\\x89W\\xc6\\xccd7?\\xb6\\xec\\xc6\\xfd:\\x9fW\\xbf\\xa8*\\xcd\\x0f\\xc4r%\\xbf\\xb8\\xf1\\xe3b\\x95fI\\xbfG\\xa3\\xff\\x196\\xa7\\x90\\xbf`\\xd0M\\x16v\\x1cx\\xbfN\\xa2\\x85Y!:R?S\\xc6\\xda+f\\ru\\xbfl\\xde\\x83\\xd8\\x0e\\x06]\\xbf3\\x8b\\xae\\x10\\xa3-`\\xbfI\\x8f\\x9c!\\xa4\\xb0\\x86?\\xe9\\x04G\\x95\\xbe\\xcde?\\xea\\xe9]@d\\xadR\\xbf\\xe5#d7\\x84_\\x9d?\\xe6\\xeew\\t\\xc9u|\\xbfB\\xb4\\xfb\\xd8F\\xf9z\\xbf\\xb07\\xd0\\xa6\\xdb\\xa8\\x8c?\\x9c\\xe5\\xcd\\xe8\\xef\\xf9I\\xbfp[\\xaey\\xda\\t^?\\\\mo\\xc1\\xc5\\x8bd\\xbf\\x90\\x84\\xb5A\\x04\\xdd\"\\xbf\\xdcI\\x03\\x18\\xf2\\xe0b\\xbf\\x1e\\xc5\\x1e\\xbab\\x84d\\xbfT>kz\\xb9\\xb2X\\xbf\\x12\\x95\\xf6;\\xfc\\xcfQ\\xbf\\xf2\\x1cJ\\xbf\\xe4\\xd8l\\xbf:\\xf7\\x1dX\\x8fyu\\xbf\\xd0\\x99\\xb2\\x1b\\xa8\\x7fv?\\xe9\\xca5\\x1c\\xe4\\xf6w?*J\\xed\\x80\\x0enQ?\\xba\\xe1\\xdf\\xe5w^P?\\x80\\xfdTZ1U|\\xbf\\xe2\\x15\\xf0\\x05\\xceee\\xbf\\xc0b\\xd2\\x15\\xde\\x9a0?\\xe9A\\xaay\\x1e\\xbds\\xbf\\x12A\\x17\\x8a\\xe4\\x13u?\\xdc\\x0fGh\\xa6H\\x90\\xbf\\xb2\\xbc) \\xb7y^\\xbf\\xa0I\\xd1\\x9b\\x0f*\\'?U\\t\\xeb\\xc0el\\x82\\xbf\\xb0\\xa1\\rB\\xcbrg?\\xf0\\x0bmQk\\x9eO\\xbf~m\\xaep9\\xb5\\x80? \\xdb\\xccp\\xcc\\xc7e?\\x807\\xfe/%f$\\xbf\\x90\\x10\\x0b[\\xf7\\xbd\\x82\\xbf\\xecH\\x08.\\x15S\\x81\\xbf\\x17\\xf7\\xd7\\xae7x^?\\xc4\\x0f|K\\xedRx?5\\xe96G\\x19\\x92{\\xbf\\xaew\\xcaw\\xd7\\xf9w?\\xd89\\xeeGgmc?\\x12\\xc8|\\xda\\x80b\\x80\\xbfJ\\x04\\xec\\x1f\\xf6\\xac\\x87\\xbf\\x00cZ\\x90`6\\x16?\\x82\\xfa\\t\\xc4\\xe5\\xc6[?\\xd6.\\xab\\xd3\\xd0\\x1b\\x88\\xbf\\xb4\\x0b\\xa0R\\xb2`h\\xbf\\x104tD \\xa4:\\xbf:b3\\xd9a\\xec\\x8d?\\xf8\\x0c^#\\xa3\\xcfP?\\x80\\xe0|\\x9b\\x19\\x83\\x81\\xbf\\x8aJ\\x05\\x11\\xc6Cf\\xbfF\\x9a{\\x04\\xd3\\xe8|\\xbf\\x00\\x00\\x0cp}\\xb9\\x00?j\\xd9WD\\xc9\\xa1n?\\xfc\\xd1/\\xb4r\\xeeo?P\\xdd\\x97\\xcf\\x9e\\x13D?0y!\\x99s\\xf2X?\\x00+\\xe7$?\\xe0\\x02\\xbf\\x94\\xab\\xc5a\\\\\\xa6V?\\xd02^mg\\x9aI\\xbf\\xf0\\xff\\x93\\xf4\\x874Q?6\\xe2|\\xe9\\xf2\\xdds?\\xe0\\x98sD\\xf3\\xcew?h(\\x7f8]\\xb5I?\\xa3\\t\\x01\\xa0\\xaa\\xd4\\x80\\xbf\\xd79\\x9d/\\x8d\\xf3z?\\xf0\\x1bqM@\\xb5\\x1e\\xbf`\\x98\\x94>\\xb1\\x01A\\xbf\\x90U\\xf4|\\x84\\xd8u\\xbf\\x1d\\x12\\xa2\\xa7\\xeb\\xb2[?\\xe5\\xeew\\t\\xc9u|\\xbf\\xae\\xeb0\\xf1\\xc7\\xca\\x96?\\x0f\\xf5A\\x9a\\x16cg?\\xea\\xb1D\\x13\\n\\x1d`?\\xd2~\\x8a\\xff\\x1f\\xb8`?\\xa0(Bz\\x1e\\tB?\\xf1\\xf9\\xd9\\xaf\\\\\\xc5p?*\\xc7\\xaa\\xff\\xc7\\xe8i\\xbf\\xd5\\x01Z\\xefw\\xd6t?\\x10>\\xdf<\\xe0\\xe3I?\\x90\\x19E|\\x03AS\\xbf\\x82\\x84\\xc0\\xc2M\\x92u?h=o\\'R\\x0ee?a\\xee\\x04\\x8f\\xa8\\xd2\\x8c?p\\xb3h\\xe2\\xd7rM?\\xf3\\xdf\\xb0\\x0e\\xe8\\xe2k\\xbf@\\xfepT\\tMp\\xbf\\xa0~3t\\x0b\\xa3\\x16\\xbf\\xc0\\xac\\x8d\\x83G\\xd64\\xbf:\\xf2\\xaf\\xc89=\\x81?\\\\N\\xf2XYvk\\xbfS\\x19\\x91\\x9a\\x01]j?\\xbd\\xfa\\xe9\\x0e\\xe30y\\xbf(MV\\xf5p\\x0cm?\\x85\\x08u\\xeb\\x90`v?\\x9ci\\x1bL\\x19\\xfbS?QD\\xb0DI\\xd3u?\\xe4j\\xb1U-\\xe3c?\\x00`Z>u\\xa5\\xde>t[\\xb0\\x1e\\x1a\\x0b\\x80\\xbf\\xd4 \\x91\\x7f\\xdb\\xd5X\\xbf4=\\x12\\xaf\\xf9\\xc9}\\xbfM\\xcf\\x96\\xad0q\\x86?\\x13\\xad\\x19\\x87U\\xbf\\x82?\\x98\\xf3Vw~\\x9aC\\xbf\\x12\\x8a1}\\x91\\x83y\\xbf\\x9e\\xf0\\x03\\xa8\\xe4\\n\\x87?\\\\\\xdb\\xd8\\\\\\x81>\\x80\\xbf\\xd22\\x13\\xd7\\x02\\x9b\\x94\\xbf\\xaf\\x89\\x91\\xde\\xf1\\x10\\x91?\\xa8O\\xeb((\\xfeq?\\xdc\\x99\\t\\x01\\xc7\\xea\\x94?.\\xaf&\\xcb\\x81\\x1c}?\\xa8\\x10\\xd9\\xcd\\xb5\\xcb\\x9e\\xbf\\x10 \\x12Ms2\\x8e?\\xbc\\xef\\xe8\\xc6Z\\xf8s?\\xc87f\\x18\\xa8\\x05\\xa3?\\x9f\\x0f\\xd8\\xa7\\xed>\\x90\\xbf\\xa43\\xf9\\x8a\\x9a\\x97q\\xbfH&\\t\\x85\\xfb\\x8fO\\xbf ^\\xea\\x88\\xbeK3?\\xcaq\\t\\x06_\\x08\\x80\\xbf\\x80\\xa0w\\xac+)$?\\xc0\\xac\\x96\\xdb\\xf5\\x8bK\\xbfD14\\xb7\\xcd3o\\xbf\\xd0\\x1c\\x9b\\r\\x05*Z\\xbfP>\\x00\\xae\\xb5\\xd1s\\xbf\\x86s8\\xb4\\xa2\\xc5j\\xbf`9\\xf4\\xdb\\x80\\xa80\\xbf(\\xb6\\xb9\\xb4e~u?:\\x1f\\xff\\x90\\xe8\\xf7q?\\xd4\\xe2\\x905|\\xb5_?0\\xbf/\\xee\\xe5\\x1b\"\\xbf\\xf4]\\xe1\\xbd>\\x89N?\\xb1g\\xf1lQ\\x0fP?\\xcc7\\x0b\\x00uqM?\\n8h\\xb5\\x92\\xb6e\\xbf8\\x9f\\xba%\\xfe\\x97P\\xbf\\xf7\\xef\"\\x964\\n;?B\\xb4\\xfb\\xd8F\\xf9z\\xbf\\x0f\\xf5A\\x9a\\x16cg?;\\xf9\\x995-\\x1bi?\\xa4\\xa2\\xe3\\xc9f\\tl\\xbfE5J\\x89]GQ?h\\xa3\\x80\\xff{\\x14=\\xbf\\x9c\\xc4[\\xc5o$G?T\\xeb{I\\x16\"8\\xbf\\x0bESz\\xe4\\x9aI?\\x0e\\xd9f\\xcd\\x82\\xc1E?\\xe0\\xddsR\\x17\\xb6I?X\\x17; RI.?\\xc8\\xa1\\xccNz\\xfdP?\\x18p\\xaa\\xa6\\xb4\\x98_?l\\xb2\\xf7\\xf0\\x16\\xd8R\\xbf\\xb5N\\x04\\xf6\\x93-X\\xbf\\x9e8\\x01\\xea\\x83\\xfa;\\xbf\\xec\\x95\\xed\\x03\\x84z\\x13\\xbfi\\x9e\\x8e\\xa4_eW?\\xc6v\\x15|$bJ?\\x00\\xd8\\xb6\\x9a\\x03\\xc3\\xeb>Hc\\xfe\\xca\\x7f\\x90L?\\xbatJk{\\x86V\\xbfM\\x87\\x919P\\xden?y\\xff\\x1cgi8D?L p\\xd5\\x91\\x1f0? \\xd5\\x8a&$\\x11`?l-\\x0f)u\\xadH\\xbf\\x00\\x95\\xc49\\xa3\\x9dZ\\xbfj8\\x10M\\xe5\\xecS\\xbf\\xce\\xfc\\xac\\xfe\\xa5FN\\xbf \\xca\\x9aRU\\xc9S?\\x8eS\\x07u\\t\\xe3V?\\x98\\xe8\\xd6{\\xc4\\xe7_?\\x18U|;\\xbay \\xbfF\\x00\\x18.\\x84\\xc1U\\xbf\\xc8\\x91\\x85\\x9a\\xbbs1?&\\xe0L-\\xfa=e\\xbf\\x80a(Hh \"?\\x80\\xc7\\xb1\\xbf\\xd4\\xecH?\\xbfF\\xf6\\xbf\\xb6fq?\\xf0\\xea\\xc0\\x14\\xc3\\xeeD\\xbf`\\x86\\x97\\xca\\x12m[\\xbf\\x00\\x9a\\xb3\\xde?!g?|Gy\\x9d\\x00N[?\\xb2\\xb3`\\xc36\\x15E\\xbf\\x00\\xc1p\\x05.\\xd3e\\xbfr9\\xfe\\xbb\\xda\\xf4V\\xbf\\xc2?\\xdbD+}Q?\\xe2\\xecx$\\x85\\xebE?\\x16/\\xfe1\\x1e\\xb7e?\\x10\\x00\\xe5\\xa8k;C\\xbf\\xd0c\\x99}\\xd7%J\\xbf>\\x14,\\xe3\\xdai_\\xbf0\\x8e\\x06Z\\xa1\\xd4-?8\\xf4\\x92\\x0c\\xc0\\xf77\\xbf\\x00 \\xfa\\xc9\\x94j\\xec>\\x00\\xa0\\xf1\\xa40\\xac\\x18\\xbf@mu!D4\\x17\\xbf\\x00`\\x9c\\x1c\\xaa\\r-\\xbf\\x0e\\x1b\\xf4\\xd9\\xaa\\xb1z\\xbfx|e\\xd5\\xeejH\\xbf\\xa0\\t\\xeb{\\x01\\x9eY?\\xa49E\\x1c\\x8c\\x08\\x82\\xbf\\x80p)\\x87\\x0e\\x84^?j\\xe8\\xfa-\\xfd\\x91b\\xbf\\x01\\\\\\x8c\\x8cO\\x85\\x82?h\\x1e<\\xae\\xd9\\xa1W\\xbf\\x1bl\\x14T/\\xc9G?\\xb07\\xd0\\xa6\\xdb\\xa8\\x8c?\\xe8\\xb1D\\x13\\n\\x1d`?\\xa4\\xa2\\xe3\\xc9f\\tl\\xbf\\x94\\xc2+\\xc4\\xe7\\xa9\\x92? \\x0ca\\xc6\\xf7\\x9cE?~\\xa6\\xf1\\xec\\xb8[_?\\xe0w]&\\xa4\\xe15\\xbf\\x14\\x87\\xca\\xb6^\\x96T\\xbf\\xceG\\xf1p~\\xa6H?\\xfe\\r%\\n\\xe2\\xc0`\\xbf@\\x0f\\xc6iQ\\xf1M\\xbfl^\\xf2>\\xdd\\x1cb?\\xc8\\x0b\\x14V\\x83vl\\xbf\\x98\\xbeE\\x113a`?\\xe0\\x13\\x07(\\xc7\\x9bc?\\x0c\\x02\\xd17Y\\x89g?\\x88\\xb6\\xd7\\xd3\\xc2\\x15T\\xbf.^j\\xdc\\xd1\\xf4E?4\\xa4\\x1d\\x13\\xb9:s\\xbf`\\x92[\\xf2b\\x90^?p5\\xc9S\\x8f\\x9fB\\xbfVmU\\xd1n\\xbba\\xbf\\xc0\\xc3Y\\xd3\\xcf\\x82\\x1b?\\x0eH\\xe0\\x9f\\xaf\\xae\\x80\\xbf\\x1e\\xd0\\xf9x\\xe2\\x10P?@\\xdc\\xf0\\xdd\\x03@\\x12\\xbf\\x94iC\\x19R\\xfdf\\xbf(8\\xe1\\xd1L;l?\\x10\\x877\\x9e\\xfd\\xc6Q\\xbf\\x80w\\x8c\"Ev,\\xbf\\xf8p7\\x8c\\xf2\\xe9M?\\x10\\x03*i.\\xb0_\\xbf\\x80\\x05?\\xd9\\xfd\\xbb\\x1b\\xbf\\xa0\\x00\\x16#\\xb3\\xe2N\\xbf\\xe4\\xc2Dr\\xaa\\xf6c? \\xa73\\xa9\\xfd\\x955?Xe\\xad\\xd0+_j?\\xb0\\xebbSG\\x97`?\\xf0\\xe1\\xba\\xd7\\xb4\\xcc\\x81\\xbf\\x94\\xefI\\xd5,]w?\\xa0\\xd5\\xf9\\xf1\\x90\\xcaw\\xbf\\x00l\\xeb\\xc8\\xff\\xa8\\x83?7\\xb76\\xd2EEs?\\x18\\xaf\\xda\\xbe\\x16\\x00\\x8e\\xbf@\\xd7\\x03\\x17\\xfe\\xed2\\xbf\\xfb&\\xd6^\\x0b\\xe0l?0^\\x11\\x8fN8\\x96?\\x00\\xf0\\xbe\\xbb\\x8b\\xd9\\xd5\\xbeW\\x83>\\'\\xc7&\\x80\\xbfp,\\x19\\xce\\xdf\\x1bO?\\x8a\\xe0d !\\xf0\\x82\\xbf\\x1e\\x1d\\x02YySy\\xbf@^e\\xe8.=)?\\x01IT:~\\x90~?\\xdc\\x13;\\xd8\\x12\"a\\xbf@\\xe3T\\x04\\xe4j5\\xbf\\xa8\\xf3k\\xe57\\x12n\\xbf\\x100%]\\x15\\xa6O\\xbfP\\xae\\xf2\\x03\\xf0\\xbfC\\xbf\\x00\\xdf\\xb1b\\xa5\\xc6n?\\xfa\\x9a~/\\x12d|?\\x16R\\xfe\\\\\\x7ftu?(\\xea\\x9dgx\\xb0N\\xbf`\\xff\\x0f\\xce\\xe8\\xfb`\\xbf\\x86\\xb2\\x17\\x92:\\x8ek?no\\x08\\x9e\\x91bV?\\xd0l\\xeb\\\\zO3?B\\x83\\x9dM7Bq\\xbf1\\xdc\\xdc\\xad\\xc8#Y?\\x9c\\xe5\\xcd\\xe8\\xef\\xf9I\\xbf\\xd2~\\x8a\\xff\\x1f\\xb8`?E5J\\x89]GQ?\\x18\\x0ca\\xc6\\xf7\\x9cE?`!c\\xb8\\xd0\\xd0\\x90?\\x16\\xd7$9\\xf8HB?\\x05}\\xc3\\xd1\\x18\\\\q\\xbf\\x82}3\\xe4*\\xc4o\\xbfi\\xd4&Il\\xc1O?\\xe7B\\xedK9\\xef_\\xbf\\xc2\\xce5\\x14\\xda\\x86\\x84?\\xa0\\x08\\x07\\xfc\\xf1u\\x17?\\x84m\\x04\\xe6sYi?\\xc0\\xd0x\\xe4<\\x9bA\\xbf\\x90$\\xfa\\x95R\\x9dS? \\xf9\\xb5\\xfb\\x08\\x1aQ?\\x8e\\xac\\xa0\\xc21\\xfea\\xbf\\xde\\xcf\\x0e\\xd4E\\x9fH?\\x80T\\xa0P\\x83\\xbb\\x1b\\xbf1\\x00\\xb1\\xa2c/|\\xbf`\\x08\\x1bnb\\x922?\\x9e\\xbe\\xdc8\\xfdSr\\xbf\\x8e\\x17\\xc2$\\xf6Us?\\x80\\x91\\xf1\\xc4g )?1\\xe1\\xfa\\xe1\\xab\\x00~\\xbfvc[J\\xe7\\xa5r\\xbf\\xbf \\x9a\\xb8\\x1cIl\\xbfP\\xf6^\\x18\\xb0\\xe9?\\xbf\\xc77\\xc5\\xa4\\xde]\\x85\\xbf\\xc5\\xd9\\x84\\xb7\\xe5Fx?l\\x02:\\xf6kTb\\xbf\\xa0&\\xb6\\xfa\\x1e{R?\\xbf\\xdb\\x19\\xb6\\xdf\\x9f|\\xbf\\x00\\xb0p\\x90\\xea\\xb5\\xc6\\xbe4_\\x14\\x99\\x9f\\x0c\\\\?\\xa2\\xc4\\xb2\\xdd\\x81\\xedl?\\x14j\\x80\\x13\\x0eH\\x8b\\xbf\\xc8\\x97\\xc1\\'F\\x95f\\xbfo\\x9d\\xa3\\xce\\x83\"\\x97?X\\x10\\x7f\\xcb\\x80\\x1b\\x86\\xbf\\xd8q:Pi/q\\xbf\\xfbRLi\\x1aQ\\x92\\xbfn\\'G\\x9c5\\xa8}\\xbf\\xa9\\\\\\xc4\\xb5\\x8f\\x10\\xa3?\\xce:k\\xa0\\xa4\\xfb\\x91\\xbf\\xecY\\x16\\x8d\\xef\\x17w\\xbf\\x8dU\\xf3\\xa6Z\\x10\\xa3\\xbf\\'\\xd7c\\x1c\\xde?\\x8f?\\x97S\\x9eL\\xf4dz?\\n\\t\\xe8YeDq?Ze\\xdb\\x1d\\x07\\xbdk?c\\xd9\\xe8H\\xa1\\xe5\\x80?\\xba\\xc89\\xae.\\xect\\xbf\\x80\\xc5\\xee\\xe14\\x87_\\xbf\\xa2Kq\\xf0r.a?\\x00\\'\\x8dJV\\x97I\\xbf\\x18\\xd816\\x10\\xbeu?\\x08\\xe83R[\\x0eD\\xbf\\x80|\\x98\\xac\\xef\\x96%\\xbf\\xf0,\\xdd\\xebE\\x1ce\\xbf\\xd0\\x08\\xce\\x13o\\x94\\x01?x\\xb1m\\xc9\\xd7v0?\\x1e\\n\\x19k\\x17\\x816?sz\\x81>\\xecWC\\xbf\\xb2>\\xc9p\\xa9u9?\\xf2\\xc3\\x1c\\xb0\\xfd) \\xbf\\xb0n_$\\xea\\xac\\xf1\\xbet\\xd5Y\\xa4/.3\\xbf\\x80h\\'\\xe1D\\xe6\\xcd\\xber[\\xaey\\xda\\t^?\\xa0(Bz\\x1e\\tB?j\\xa3\\x80\\xff{\\x14=\\xbf\\x80\\xa6\\xf1\\xec\\xb8[_?\\x16\\xd7$9\\xf8HB?\\x82x\\xaa\\x8a\\x14Y\\\\?\\xfe\\xd7\\x9c\\nC\\xa69?\\xc2\\xb5\\xbd\\xb9\\xf3\\xfa)\\xbf\\xbez\\xabR\\xcb\\xc18?\\xf7.\\x85\\xfb\\xb4\\xf0=\\xbfBV\\x05 4Y3?h\\x91\\x11\\x85\\xf0G0?\\xa6\\x01\\xfa\\xe6\\xf5\\xca@\\xbf\\x9e\\xf1\\x15\\xc63\\xbcG?\\xf1\\xb4\\x9d\\xf6c\\x9bD\\xbf\\xc3gHi\\xeez1\\xbf\\x8f\\xce\\xdd(\\x82$3\\xbf\\xd7\\x0c\\xa7\\x9c\\x7f\\xd6\\x03\\xbfP<54A\\x11\\x1c\\xbf\\x06\\xfcR\\x83`\\xbd!\\xbf\\x905\\xa04\\x85; ?U\\xc2\\t^\\x99O&?Tjp\\xd2<X#\\xbf\\x98\\xbfE\\xa2I\\x96O?\\x94\\xcd\\xc6,]\\x14\\xfe\\xbe\\xc2\\x1d\\x13l@&0?\\x82r6\\x07+\\xd5\\x17\\xbf\\xb9w\\xc9\\xba^wB?\\xecG\\xfb\\xbf\\'D>?\\x00\\x18\\xe8n\\x12\\x89I\\xbf\\x08#\\xb8hs\\x16\\r?I!\\xd3y\\xabGI\\xbf*\\xda\\x86\\xacx#N?j\\xfb\\xba\\xa6/\\xa3O?\\x9e\\x0c`\\xc3\\xd0\\x94E?o,\\xb5\\x0b\\x007>\\xbfyQ\\xb6\\xf5\\x8e\\xbaS?z76\\x17`\\x82N? \\xb46U\\xc07M?E\\xd5\\xd7l\\xef\\xe9S?\\x86=\\x1f\\xa9\\xc8zO\\xbf:/\\xdc\\x98\\xc0\\x93O\\xbf^\\rC?\\x9bt8\\xbf`\\xfc\\x10\\xd2y\\x04\\'\\xbf V\\xd1\\x95\\xab:i\\xbfR\\xe4\\xbf\\x8f\\xfa\\x03:\\xbfn\\x93\\xbd\\xbfQ}e?.\\x17\\x98\\xc2\\x96\\x18j?Y=o\\xd3\\xd6\\xede\\xbfP\\xe0G%#\\xc46\\xbf\\x97\\x84\\xf0\\xcf\\xefyO\\xbfHZ\\xb9\\xbd\\xad\\x1d^\\xbf\\xd0\\x03\\xe7\\xd8\\xf1\\x1d@?\\xb5\\xd4\\xcd\\xbb\\xd2k5?\\x00\\x90\\xb3\\x15\\xdcr\\xe8>k\\xe1\\xe7E\\x10\\xfc3?\\xa0\\x0f\\xf7\\xcc$r\\n?:s\\x9a\\xe2#|0?\\xce\\xd3\\xe5\\x15v\\x89A\\xbf\\x94\\x12\\xdb\\xd8c?3?\\xf4[\\x99y\\x9a\\xb8\\x80?~P]29\\x0e`?dfs#Z F?|\\x8d\\xf2\\x86K\\xe8s?\\xb0\\x9fZ\\xefu\\x9e6?v\\xbd\\x9ay\\x7f{V\\xbfk\\x93m\\xa9BG\\x80\\xbf\\xb4\\xf8\\x824\\xc3\\xea<?\\xaa\\t6\\x86!\\x0fZ\\xbf`mo\\xc1\\xc5\\x8bd\\xbf\\xf1\\xf9\\xd9\\xaf\\\\\\xc5p?\\x9b\\xc4[\\xc5o$G?\\x00x]&\\xa4\\xe15\\xbf\\x05}\\xc3\\xd1\\x18\\\\q\\xbf\\x00\\xd8\\x9c\\nC\\xa69?R_n!(3\\x96?\\x80\\xd9t/;\\x81\\x00?:\\xa5\\xf2\\xde\\xb3\\xb7h?\\xf2\\xb6p\\xeaB\\x1eV\\xbf\\x85\\xfaD\\xbc<\\xe0q\\xbf+\\xc4!\\xb6\\xb2\\nd?\\xb0F\\xc9\\xe3\\xf82\\x12\\xbf\\xa081\\x05\\xa0a\\x82?>\\xc5T5\\xfcv{\\xbf\\xb8v\\xaeHYS\\x83\\xbf\\x94\\x17\\x86\\x0c\\xea\\x08F\\xbf\\n\\x15\\x93\\xda)*`\\xbf\\xa6\\xb5\\xd1K\\xcf\\xf4h?\\x92\\x81\\xd2J\\x1e\\xffv?\\x10|\\xd7\\xce\\xd1G=\\xbf\\x19\\x95y\\x8f\\xe3@r?\\xaf\\xaf\\xa0I\\xc5\\xe5{\\xbfee\\xf6\\x88\\x1c\\xbd\\x8e?\\x86\\\\(\\xee\\x961\\x8a?\\xa6\\x8d\\xe8\\x8e\\x044d?\\x9eX\\xbe\\xbb\\xf2\\x95q?\\x11g\\xe6\\xe7^\\x9aw?A\\x10\\xb5A\\x9dmt\\xbf\\x16\\x8b\\xd1/\\x9e\\xfe\\x90\\xbf1\\xec/.\\xf8uw?\\x1eZ\\xc2\\x1d\\xf3\\x80u?\\x1e\\x948P\\xda\\x94\\x93?\\xb9i\\x8f9\\xef\\xc3\\x88?*pX9\\xbf\\xe0[\\xbf\\x14\\xd3<\\x9b}f\\x80\\xbf\\xe75\\x9fy#\\n\\x88?\\x846#j\\xd1\\x93\\x83\\xbf\\x9e\\x91\\xb5;\\xdc\\xb4\\x86\\xbf\\xc5\\xd0\\xfa\\\\\\xd1\\xa6\\x8b?2\\xbf\\x14\\xf0&k\\x7f?d\\xb9Cn}E\\x89?9\\xd30Fs\\x81\\x88?z\\xe0,k\\xbf\\xaa\\x90\\xbf\\xc7\\xd9.\\x953\\xaes?\\x1c\\x94=\\xd15\\xe4\\x80?\\x1cr\\x81\\x1c\\'M\\x8c?\\x0b$\\x1e\\x9c^\\x0bo\\xbf0}Ep\\xa0d\\x86?\\xe05\\x82(M\\'0\\xbf+\\x88\\xfc\\xba(\\xa9\\x84?V\\xd6\\xf1\\xc8G\\xecr?\\xc4%\\xbc\\xa5>\\x86\\\\?\\xbdF\\xfa8\\xbc\\xb4\\x80\\xbf\\x1a6\\xea\\xea\\xe6b\\x81\\xbf\\x08\\x00\\x0f\\xf1\\xa2;b\\xbfA\\xb88\\xc2Z\\xeav\\xbf\\x89zv\\x8f\\x98\\xe9b\\xbf\\x9c\\xf5@\\x122\\xa7`?\\xde\\x8c\\xbb\\xb1\\xd8\\xd1u?\\xa0\\xbcG\\xb7\\xd9J<\\xbf.\\xdef\\xc9\\xbd\\xc4`\\xbfp1\\x03\\xa0/]5\\xbf\\xa4\\xa9\\xc1\\x8d\\x01\\xe2e?\\x9e8\\xe2\\x8f\\xc6\\xe3`\\xbf\\xfa\\xf9 \\x88\\xfd\\x84A\\xbf\\xf8\\xbdp\\x1b\\xab\\xc7b\\xbf\\x1b.\\x982kWf?\\x97`\\x97\\xb8N97?\\x90\\x84\\xb5A\\x04\\xdd\"\\xbf,\\xc7\\xaa\\xff\\xc7\\xe8i\\xbfT\\xeb{I\\x16\"8\\xbf\\x14\\x87\\xca\\xb6^\\x96T\\xbf\\x82}3\\xe4*\\xc4o\\xbf\\xc2\\xb5\\xbd\\xb9\\xf3\\xfa)\\xbf\\x80\\xd9t/;\\x81\\x00?\\x04[\\xb0&\\x9d\\x8fv?\\x13P\\x1dB\\xb2\\xc3\\\\\\xbf\\x80B\\xe34:R\\t?D<Q\\x9bn\\xdb`\\xbf\\xc09\\xa9\\x88\\x89\\xb2$?Q6\\x91\\x9b\\xfd\\xdfX\\xbfH\\xbd~Ef\\xa6V\\xbf\\x98\\xa0\\xc6\\x84\\xa4\\xd7S\\xbf\\x00\\xdf\\xc0\\xfe\\x96\\xc9\\xf8>\\xc7\\x84\\xbf>\\r\\xb5e?\\x8b(\\xe8+8\\x97V\\xbf@Y%\\xe0QK??\\x80\\xc0\\r\\x1c|l\\x19\\xbf0\\xa0\\x0f\\x9eO\\x1bH\\xbf\\x95\\x11Y\\n\\xa2\\xe7c?\\xc0\\x00\\xfctuh(?\\x08j \\x8a\\x90E`?\\xd0\\x0eZS_\\xe0G?kcwr\\x08\\x15c\\xbf\\x06^\\x99FbMm?\\x90^\\xe9y\\xd9\\xa8S\\xbf\\xc4\\x80k\\xe2\\x87\\x86\\x8c?,\\xe25Nr\\x9bh\\xbf<\\xe3\\xeb\\xae\\xf1\\xc0Z?`(\\xffv1\\xe2n\\xbf\\xacQ\\xc7\\xf3q<g?@\\x94\\xe8\\x10<\\x90J?\\xae\\xbd@\\xb94\\xbbl\\xbf\\x14\\xc5__\\xd6*e\\xbf\\xf2\\xa0\\xdevS\\xee|?\\x9aH\\xe3\\x9d\\xb1\\xec\\x84?\\x84\\xfcz\\xf8\\xb5z\\x81\\xbf6\\xa7\\xffb\\xb6\\x8aB?\\xb0,%\\\\W\\xc8a?\\x00\\xbbc\\xcf\\x81x/\\xbf\\x98\\xd2\\xb4\\xea\\x82\\x8df?\\xa0\\xe2\\xcb\\xbfQ\\xe6{\\xbfH\\xe6\\xc7\\x968/o?\\x13\\xf7\\x959\\x0f\\xf1]?\\xc0\\xf3+\\x90\\x80\\x83h\\xbf`\\x07\\x1aU!82\\xbf(z`\\t\\xfc\\xefP?\\x80\\xd1$\\xd4\\xb1\\xee.\\xbf\\xa0>\\xa6\\xb56\\\\2\\xbfh\\x92\\xf6s|\\xd5o?P\\xcfDC\\x8dQC? i\\xa2,\\xfb\\x1cC\\xbf\\xc0l\\x94P\\xb8S*\\xbf\\x80\\x82f\\x8d|\\x05\\x16?\\x80F0F\\xcf\\xb3%?\\x80\\xae\\xd5\\x81\\xe8n\\x11\\xbf\\x00\\xc5\\x87\\xe6\\xfb6&?\\x10(\\xdb\\x90\\x18A_\\xbf\\xe7\\xff\\xc1\\'\\x0bty?\\nS\\xeb\\x80\\xf1\\xd0`?\\xb6\\x14\\x04\\xd1\\x0e+H\\xbfe\\x8d\\xd1\\x9e.D^?\\xa0cp\\x8c\\xad\\xee\\\\?\\xb6\\x07\\xc26\\xe5\\x87O\\xbf\\xd0f\\xdf\\r\\xc5Ww\\xbfd\\x1a05a\\xb8Y\\xbf\\xaf\\x88\\xf20n\\xd8$?\\xdcI\\x03\\x18\\xf2\\xe0b\\xbf\\xd5\\x01Z\\xefw\\xd6t?\\x0bESz\\xe4\\x9aI?\\xceG\\xf1p~\\xa6H?i\\xd4&Il\\xc1O?\\xbez\\xabR\\xcb\\xc18?:\\xa5\\xf2\\xde\\xb3\\xb7h?\\x16P\\x1dB\\xb2\\xc3\\\\\\xbf\\x8d`\\xb0jd\\x99~?K\\xc1\\x19-\\xac\\xf1K\\xbf\\x15b\\x82\\x7f\\x1e\\xf2I\\xbf\\xe0\\xe0\\x03\\xb3\\xef\\xc1f?\\x1fh@]\\xe1\\xde\\x00?x(\\x0b\\x11\\xed\\x19t?\\xday.zT\\xaaY\\xbf\\xc6 \\xda\\x95\\xb7\\xcce\\xbf\\x99\\x9f\\xd0m\\xc0\\xb0c\\xbf\\x82\\xc1\\xb8r\\xdf*U??\\x12h\\xfb\\xee\\xe0D\\xbf\\xcf\\xe0\\xfe\\xa7+Fj?\\x11\\xa3\\xb9\\xd9\\xf6\\xb4_\\xbf\\xd5J\\xbe\\'\\xb1ia?;\\x9du\\xa4\\x83Wb\\xbfB}\\x1cv\\xb4\\x8e{?\\xd5r\\xa3\\r\\xcfgd?\\xcf<\\x80\\xb9\\xec\\xeap?^}\\x9bJ\\x13\\xb0p?)\\xf1x\\x92\\x9f\\x86^?\\xfe\\xfc\\x16Ha\\xc6Q?\\x0bJ\\x02\\ro,E\\xbf@\\x8f\\xe8H:\\x8bB\\xbf\\x0c\\x0c&\\x86\\xbc?s\\xbf\\xceU\\xbc\\x05\\'z\\x84?s\\x0c\\xd6;\\x8c\\x9b}?\"\\xdd\\xf0r\\xa9\\xe6]\\xbf\\xa6\\xa7\\x19\\x1bG\\xedo\\xbf\\x9a\\x07\\x89\\x93_\\xc2:?\\xb8K\"\\xa4rW|\\xbf\\xeb\\xa2\\xa4/\\x8e\\x96B\\xbfq\\xfb\\x06]\\xdb\\xc6\\x84?\\x8f\\xdf\\xa7O\\xff^>\\xbfh\\xcc\\xcf\\xc1v\\xf4\\x84?\\x0ee{\\x91$\\xefc?>\\x9bM&\\xb8\\xe5h\\xbf\\xd8\\xcfS\\x86\\'\\xccH?\\xa9\\xfcE\\x12\\xe88]?{,k\\x07\\x02\\x96\\x80?\\xd7C_|\\x1d\\xa3t\\xbf\\x17\\xfb\\xc8\"\\xa9\\xf0L?\\x1cb\\xe4f.\\x9c\\x04\\xbf\\x9ct\\xf4 V\\xc9T?\\xb9\\xa5\\x12\\xe9\\xa9\\x0f_\\xbf\\x1f\\x9f\\x1fJ\\x1f\\xc1D\\xbfb3\\xb6yn\\xd1i\\xbf\\xcdP\\xca]\\x08Db\\xbf\\xad\\xa0\\xb7>\\xc4)A\\xbf\\x02\\xbe\\x83\\xb1k\\x9d]\\xbfvb\\x0b\\xc9ESN\\xbf\\x8dU\\x06\\xc8\\xf5\\xa11?B\\x9cI#\\x1c\\x1fi?n\\xc2\\xc0\\x0cj\\xdcu\\xbf\\x086\\x1f\\xa0\\xd9b9\\xbf\\x00\\xc5\\xe7\\xf1\\xc0\\xd7F?\\x18\\x87\\x04I\\x18dn\\xbf\\xc0\\xc7\\xeb]bS%\\xbfP\\x111\\xf36uI?\\x0f\\xc9zd\\x8e\\xcbr?\\xc0\\rXky]3?\\n\\x9f2V\\xc3-8?\\x1e\\xc5\\x1e\\xbab\\x84d\\xbf\\x0c>\\xdf<\\xe0\\xe3I?\\x0e\\xd9f\\xcd\\x82\\xc1E?\\xfe\\r%\\n\\xe2\\xc0`\\xbf\\xe7B\\xedK9\\xef_\\xbf\\xf7.\\x85\\xfb\\xb4\\xf0=\\xbf\\xf2\\xb6p\\xeaB\\x1eV\\xbf\\x80B\\xe34:R\\t?H\\xc1\\x19-\\xac\\xf1K\\xbfH\\x81\\x82\\x1abFs?\\xf0b\\t\\xa39!T\\xbf\\x00\\x1cI\\xf8\\xbc\\tW\\xbf\\x83mD\\xc2\\xe3\\xf1R?\\x10\\x9e\\xda}\\xca0L\\xbf\\x80RC\\x05\\x18k]?\\xbaQ\\x9f\\x8a\\x15\\xcdR?\\xb0\\x14\\xd7\\xab\\x1fU>?l\\xbd,\\xfc\\x0eNG?`\\xc4\\xf3\\x7f\\xa6HK\\xbf\\x98G\\xd0\\xffcFM?\\x80\\x08\\xcb\\xe0\\xac<$?(]\\xc2\\xa6{i:\\xbf\\x00\\x0b:\\x96f\\xf8\\x1a\\xbf@_\\xfd\\x89\\xe6Xq\\xbf\\xf0\\x83a\\x08}V\\x1f?\\x14\\xbd\\xff\\xb1\\x93\\tR?l\\x19UZ\\n\\xc6M\\xbfh/\\x15\\xc5W\\x89C\\xbfh\\xd7\\x17$\\x97lj\\xbf\\xb4\\x97\\xed5\\xa5\\xd6e?\\x00\\x7f\\xb0\\x9f\\x95\\xb7*?\\xe8=\\t\\xc7\\xb9En?\\x86x\\xc1\\x8dd8j\\xbfx\\xdf\\xd6\\x06b\\x11j\\xbf\\x10!\\x04\\x98\\xa9@=\\xbf\\x90\\x97 \\x06iJ[?<\\xefs\\'|DY\\xbf@\\x84\\xbb\\xb0aNQ\\xbfX\\x16\\xdc\\xca\\xcf\\x1bg\\xbfd$8\\xee\\x01\\x82X\\xbf\\x10\\x0e\\'U\\xb7\\xc1d?P\\xc23\\xafo\\xf8p?\\x8eL\\x1f\\x87\\x8b\\xc5W?\\x00\\x98\\xf2zB\\xe3+?\\x9c\\xac.`\\xc6Bp?N\\x905^%\\x96a?\\x00\\x90_\\xc8\\xd0\\xe8=\\xbfN\\x04\\x10\\xf2\\x94\\xdbp\\xbf\\xbcJ+\\xbd\\xa1\\x02`?\\xb86\\xf6\\xc3\\xef\\xd8H?p\\\\\\xc3\\xe8\\x01\\x89C?\\x0c\\xb3\\xee\\xf2>eS?\\x00\\x15\\xb8\\x12\\xa8s=\\xbf\\x00\\x98S\\x1a\\xba\\x04\\x12?@\\xeb\\x13Og\\xf3\\x13\\xbf\\x00\\x94\\x98k\\xd08\\xff\\xbe\\x00\\xa2N\\x9c\\x8cK\\x04\\xbfh}\\xc9\\xff>\\x08E\\xbf\\x00\\xf1\\xca\\x10\\x8b\\x96 ?\\x00R\\tt\\x8c\\xf2I\\xbf\\xa0^_\\xca\\xf1\\\\c?t\\xb3\\xfer)\\xedi?\\xd0\\xeef\\xf7\\x8f\\xdbT\\xbf\\xb8i\\x16\\xaa\\xe9\\xf8d\\xbf\\x8c=4F5\\xdfV?L\\xb9e\\x88m\\x96W?0\\x84\\x16{\\xfb\\x1ea?\\x98\\xc2\\xaa2\\x1d\\xcca\\xbf@\\xa5,\\x13q\\x12R?T>kz\\xb9\\xb2X\\xbf\\x80\\x19E|\\x03AS\\xbf\\xe0\\xddsR\\x17\\xb6I?@\\x0f\\xc6iQ\\xf1M\\xbf\\xc2\\xce5\\x14\\xda\\x86\\x84?JV\\x05 4Y3?\\x85\\xfaD\\xbc<\\xe0q\\xbfD<Q\\x9bn\\xdb`\\xbf\\x15b\\x82\\x7f\\x1e\\xf2I\\xbf\\xf0b\\t\\xa39!T\\xbf\\xe4\\xa0I\\x0b\\xde\\x84\\x85?\\xf8\\x17:\\x067\\xeaZ\\xbf\\xe8\\xf7\\xb4\\x93^\\xa7f?\\xa0\\xe8\\xbd8\\x118n\\xbf\\x00K\\xc8\\xc8\\xd5 B?``\\xd7\\xbad\\x96K?0\\xec\\x01s\\x89\\xf6B\\xbf\\x00\\xa3a\\x84R\\x83H?\\xe0d\\x8a\\x1d\\xd7-`?P\\x1b\\x97D\\x1fg\\x80\\xbf\\xe0\\xaf~\\xac?Dg?\\ra?-(>s\\xbf\\xc4\\xfc\\xb2\\xeb\\x9b0t?\\x80\\xaf7b\\xad\\x02@\\xbf\\xcbx\\x13\\xa7Q\\xbb\\x81\\xbf\\xacb\\xb2C\\x1d\\xe5i\\xbf\\xb0\\xa6\\xbdP\\xdd\\x97m\\xbfP\\xfd\\xda\\xcf\\x07\\xa6R\\xbf\\x90\\xa4\\xdfm\\xdd\\xec\\x81\\xbf\\xd8\\xd5\\x03\\xfaj\\xdbp?\\xa0)\\xe8A\\x91*\\\\\\xbf(_\\xb7\\xca\\x8d\\xb2s?T\\x14\\xaa\\xe3\\x14.|\\xbf\\xf8\\x0b^\\xd5\\x97\\xaak\\xbf\\xd0\\x072p\\x08\\xf4i?,i\\xbf\\xd1\\x7fTq?\\x15\\xf4=[x\\x15\\x89\\xbf\\xc0^\\x86\\t\\xd5RP?\\xf4o\\x10\\x82\\n\\xd7\\x96?b,\\xe1WG\\xe7\\x89\\xbf\\xc0\\xdbR\\x91\\x91YY\\xbf\\xb0\\x17-b!\\xe8\\x94\\xbf\\x8a\\xa1\\x0f\\xd5\\xbf+\\x87\\xbf\\xe8{\\xcbtr\\xe1\\xa3?B/\\xac\\xe8%-\\x91\\xbf&\\x03d`go\\x81\\xbf\\xf8\\x9e\\x92Q}\\xa9\\xa3\\xbf?<\\xe2\\xa5~\\xf5\\x91?\\xc0h\\x05\\xd1\\x08\\xc5p?\\xc8\\xcbF\\xa2\\xb3\\xf3j?\\xf0a\\x94L\\x0e\\x1bh?\\x00\\x02\\x9a\\x05\\xf26r?\\xd8\\x83\\\\\\x82\\x90\\x80l\\xbf\\x00\\x90/1\\x91z\\xd7>X\\x1cV\\xb0\\xdaUm?\\x00\\xa4mO_\\x1e$?\\xc0B\\xb2\\x7f-\\xe3w?\\xe0\\xeeh\\xb1\\xfcAT?\\x00+\\xd0\\xd2wWJ\\xbf\\xa8\\xbf]\\x8d\\xdb\\xa1r\\xbf\\x10\\xb3\\xa4\\x0ck6s?\\xbe\\xc7\\xc96i\\xf9Q?\\xe0k\\xe5\\x86O\\x00 \\xbf\\xe0\\x9d\\xea\\x9e\\x8c|;?h\\xab\\xc5q%\\x05\\\\?~\\x0b&\\xa5\\x9a\\xf2L\\xbfhb\\x92a\\xfb\\x92k\\xbf\\x0c?\\xe6.K9R\\xbf\\xf07[\\xb2\\xb1!(\\xbf\\x0f\\x95\\xf6;\\xfc\\xcfQ\\xbf\\x82\\x84\\xc0\\xc2M\\x92u?X\\x17; RI.?l^\\xf2>\\xdd\\x1cb?\\xa0\\x08\\x07\\xfc\\xf1u\\x17?h\\x91\\x11\\x85\\xf0G0?+\\xc4!\\xb6\\xb2\\nd?\\xc09\\xa9\\x88\\x89\\xb2$?\\xe0\\xe0\\x03\\xb3\\xef\\xc1f?\\x00\\x1cI\\xf8\\xbc\\tW\\xbf\\xf8\\x17:\\x067\\xeaZ\\xbf\\x91@c\\xe7Z\\xf9w?\\xd8\\xefO\\x06\\xbbp<\\xbf\\xda\\xfa\\t\\xff\\xe3\\x16u?@q\\xa2\\x8a5@Q\\xbf\\x9c\\xb9\\xc58H\\xe1N\\xbf\\x066Z\\xbe\\x01\\xb4T\\xbf\\x10\\xfa\\xf0Y\\x04QB\\xbf\\x80\\xea\\xcb~\\xc6\\xc4#\\xbf&h4.\\xc6\\xc6q?P\\xab\\x9e\\xf7\\x10qs\\xbf\\xc5\\x17\\x81\\x9f\\xce\\rg?Z\\xec\\x1a6\\x99\\x17h\\xbf\\x14\\x05\\xd8@jLt?\\x89\\x91C\\xd48\\x1br?\\x80\\xfe\\xe9\\xbd\\xa2\\xacN?Zv+\\x98\\xbf,q?\\x10ny\\xe9F\\x0b_?<\\xff\\xe5J>\\xfb}?x\\xb5\\x90\\xd6\\x9c\\x81o\\xbf\\x90\\x88\\x1c\\xa4\\xfdnL?x\\x93cl\\xf6\\xb2}\\xbf2;\\x9fVg)\\x80?\\xdd\\x0f\\x000b?y?8\\xd0\\xe4\\xfba\\xdbT\\xbf8\\xb7\\x8a2\\x8e\\xe7o\\xbfT\\xf3\\x11\\xfb-\\x0c\\x83? \\xd9cw\\x06`g?J\\xf8G`\\xc9\\x1d\\x87\\xbfV\\x86\\x01\\\\\\xbc-\\x89?\\x80\\xb8\\xb0\\xea\\xd2#E\\xbfjv\\xff*(\\xe6\\x8a?*\\x0e\\xce\\x1b\\xe8\\x9bu?\\xe8]\\x99\\x12\\xb8\\xb9\\x84\\xbf\\x90\\xe6\\xb3\\x04\\xc8\\xc8S?\\xeep\\xac\\xe8R\\xbcz?(d\\xedf\\xb0\\x03\\x8c?\\xe4\\xbf\\xb2\\xe3\\xec\\xf3d\\xbf\\xf6F\\xbc=>\\xefl\\xbf\\xf8\\xf6N\\xde\\x1f\\x0eV?h\\xaa\\rw\\xcc[e\\xbf\\x08G\\x96iv\\xd7g\\xbf\\x88\\x15\\xbfq\\xa6\\tV\\xbf\\xc0\\x9f\\xc4\\xda\\xe7{+\\xbfN*\\x8ec\\xfe\\x81g\\xbf\\xc0\\xd9\\xd8\\xa8\\xd3\\xf0!\\xbfx\\xb4\\xf2\\x84k\\x08d\\xbf<`\\xc9\\xcf\\xb5g[\\xbf\\xa0>{i\\x1e\\xe0?\\xbf\\xa8\\x82\\x1b\\xa6\\xe9\\x8fi?\\xc0m\\x94\\x0f9\\xbba\\xbf\\xc4Fvq\\x95\\x0cY?0\\x06Z\\x00\\xa8\\xb43\\xbfd\\xe5\\x17{\\xaf\\x19s\\xbf\\xdb\\xb0aP\\x94rR?\\x0e\\xf6\\xeb\\xd2\\xdd{H?y\\xf3WX\\x18\\xfaq?:\\xd3\\xbb}\\x06\\x9eO\\xbf@b\\xa5\\x1a\\xd5\\xbf\\x02?\\xf2\\x1cJ\\xbf\\xe4\\xd8l\\xbfh=o\\'R\\x0ee?\\xc8\\xa1\\xccNz\\xfdP?\\xc8\\x0b\\x14V\\x83vl\\xbf\\x84m\\x04\\xe6sYi?\\xa6\\x01\\xfa\\xe6\\xf5\\xca@\\xbf\\xa0F\\xc9\\xe3\\xf82\\x12\\xbfQ6\\x91\\x9b\\xfd\\xdfX\\xbf\\x1fh@]\\xe1\\xde\\x00?\\x83mD\\xc2\\xe3\\xf1R?\\xe8\\xf7\\xb4\\x93^\\xa7f?\\xd8\\xefO\\x06\\xbbp<\\xbfE\\x84\\xf3\\x94\\x8a\\xf4w?\\x00Rp\\xea\\xb5\\x03\\xf0\\xbe|a`\\xaaz\\x12]?x\\xe2&\\x1a\\x07\\x06;\\xbf\\x98\\xac\\xbf\\xb2\\xa2\\xf97\\xbftC\\xd1\\x18u\\xf6K?\\x8c\\xc0\\x06,Y-Q?\\xccu*,\\xc9W[\\xbf\\xa8\\xa3\\xc9kA{D?\\xec\\x8f\\xb9n\\xe7/e\\xbf.\\xed\\x14``2]?\\\\\\xc5\\xa9l\\xdc\\xf8^\\xbf\\xdc4\\xa3\\xd1\\x13\\x1bk\\xbf\\xb4.\\x05\\xc5\\x9f\\x99H\\xbf\\xe2\\xca{?\\x05\\x87_\\xbf\\x80Y\\xdf\\xe7\\xa5\\x1c,\\xbf`/H\\x04\\xca\\x99\\x83\\xbfP\\xcbX0\\xf6ZQ?\\x80N[Z4\\xbb\\x03\\xbfX\\x9bL\\x0e*Iy?\\x88|\\x1a\\xd2(\\x18]\\xbf<\\xfc\\x1a\\xa3\\xbd\\xd6]\\xbf\\xa0\\x90*\\xe5d\\xc3,?(\\xa0\\xde^\\xef\\xddh?\\xb2\\x19\\x99\\xb2\\xfb\\xf9p\\xbf\\xcen\\xf6\\xba9\\xeeu\\xbf4\\xe1\\xbd~\\x91T{?\\x16\\x92E\\x8d\\xd1\\\\i\\xbf\\xb8\\x98X\\xc5\\xfd\\xb2c?`DL\\x1a=\\xc4e\\xbfp\\x03\\xc6\\t\\xff\\xe0f\\xbf\\x88\\x05\\xad\\x94B\\xb3\\x82?\\xcc\\xa2\\x9f\\xbd-\\xbbr\\xbf\\xf0h\\x8c\\xd0\\x96\\xc5]\\xbf\\xfc\\xa3Pv\\x7f\\x9d\\x8e\\xbfJ\\x98\\xa7\\xc0\\xab[q?|\\x82>n\\xd1\\xe7W?\\x08\\xb8P\\x19\\xdb\\x9aQ?3n\\xae\\xf2Fkj?~\\x10\\x9c)ryd?\\xacR+\\xf1`$d\\xbf\\x14U\\xafA\\xd5\\x9dP\\xbf\\xa0#j\\xa8.GJ?`\\x14l\\xa6^\\x02&\\xbf \\xb7\\xda;\\xe7\\xe0U?\\xa0`!\\x11OZB\\xbf\\xc0\\xb0\\x15I\\xb5\\xb5=?\\x90\\xd9%\\xc7\\xf4JX\\xbf\\xce\\x0c\\x04]\\xa36\\x85?q\\x80o\\xa3\\xc1:q?\\xe0\\xd2\\xb2\\xbb\\xfe\\xa7K?\\x00\\xb7\\xa0\\x97\\xcc\\xe31?.\\xf7\\x82 \\xf9\\xccq?\\xacHE\\x18w\\xe3Y\\xbf\\xc8b\\xf5,\\xf0\\xc5|\\xbf\\n{\\x92\\xa9\\x04}l\\xbf\\xf6)\\x1f\\x11\\xa9~L?:\\xf7\\x1dX\\x8fyu\\xbfa\\xee\\x04\\x8f\\xa8\\xd2\\x8c?\\x18p\\xaa\\xa6\\xb4\\x98_?\\x98\\xbeE\\x113a`?\\xc0\\xd0x\\xe4<\\x9bA\\xbf\\x9e\\xf1\\x15\\xc63\\xbcG?\\xa081\\x05\\xa0a\\x82?X\\xbd~Ef\\xa6V\\xbfx(\\x0b\\x11\\xed\\x19t?\\xf0\\x9d\\xda}\\xca0L\\xbf\\xa0\\xe8\\xbd8\\x118n\\xbf\\xda\\xfa\\t\\xff\\xe3\\x16u?\\x00Rp\\xea\\xb5\\x03\\xf0\\xbe\\x94$\\xcf\\x1c@\\r\\x90?\\xc8ct~:\\x8eg\\xbf\\t\\x88t\\tg\\xdfv\\xbf|\\xa2\\xf7\\xd5\\x1e5h\\xbf6?\\xf1\\x15\\xc2uU\\xbf\\x80\\x85\\xf6)_\\xfeP?r\\x0f~w\\xf7h\\x82?\\xb8\\xbe\\x14\\x0f\\xa2\\xd9d\\xbf\\x9b\\xe3Iy\\x7f\\x98p?\\x9aB\\xe0{\\xb4a\\x83\\xbf\\x00\\xe6\\x05\\xe1\\xb2.\\x85?\\x06\\xfc\\xcb\\r\\xd9\\x01\\x84?\\xa4Mn\\xa0\\xd3\\x9bl?d\\xb6\\x8b8\\xe5\\x9d~?\\x90\\xc4\\xa8\\x85y\\x9al?\\x00\\xab\\xdf\\xf8\\x8a\\x03p?\\xd0IT\\x1c.i\\x89\\xbf\\x00\\xaf\\xcf\\xf1\\xb1\\xca\\x1c?\\xf0\\x02\\x17\\xa2\\xcb\\x94{\\xbf\\x02X\\xe7\\xc2\\x85\\'\\x90?\\x9eH\\x14\\x82\\x7f\\xbc\\x88?\\xa0l\\x1a\\x98\\x93\\xb6T?,\\t\\x8b1}\\x02\\x85\\xbf\\x02F\\x9d\\xb0\\x8d\\xe9\\x8c? \\x88\\'m\\xe1\\x0fv\\xbfx}p\\x1a\\x93W\\x96\\xbf\\xfff\\xb7\\xf6\\xe8\\xf8\\x91?\\x88\\x19\\x94\\x80\\xbc\\x93\\x80?@\\xa9\\xe2\\xdc_`\\x93?d\\xf8\\x1d\\x80\\x1f\\xd8\\x85?\\x80d\\xff\\x05+2\\x99\\xbf\\x04Y\\xa1Na\\x0e\\x8f?p\\x1e\\xc4\\xb8Y\\xa6\\x83?\\xccb\\x10\"\\x95\\x81\\xa3?@630\\xa9\\x0e\\x8d\\xbf\\xf8x\\xedI\\x90\\xeca?\\x80{\\xfc\\xb7\\xaf++\\xbfh\\x1f)fp\\xe7e?p\\x97N\\xbf\\xe5\\x8dT\\xbfPF\\xc2-\\xdb\\x1dW?\\xc0\\xddh\\xaa$\\x8dn\\xbf\\x00\\xed\\xff\\xf6y\\xe8r\\xbf\\x00?\\x81\\x98\\xfe\\x9dW\\xbfp\\x88\\xf72)\\xaas\\xbf@\\xf5\\x86\\x1e\\xb4\\xd3b\\xbf\\x0094\\xa9\\xd2\\x0e2\\xbf\\xe0\\x1b\\n\\xbbR\\x8ev?J\\xcd\\xd4\\xd6E\\xbb\\x84\\xbf\\xb0\\xf9\\xe1\\x90\\xd4\\x01V\\xbf\\x80\\x8e\\x9d\\xad1\\x1b+?T\\xd2-(\\xa9\\x0f\\x80\\xbf\\x90\\x07q\\xd8\\xde\\x9c0?\\xd06\\x02\\x94\\xbb\\xca7\\xbf\\xfa\\xdc,sgV\\x84?\\x80x\\x85\\xea\\xfa\\xa7\\r?\\x0e\\x0e\\xacI7*@?\\xd3\\x99\\xb2\\x1b\\xa8\\x7fv?p\\xb3h\\xe2\\xd7rM?m\\xb2\\xf7\\xf0\\x16\\xd8R\\xbf\\xe0\\x13\\x07(\\xc7\\x9bc?\\x90$\\xfa\\x95R\\x9dS?\\xf1\\xb4\\x9d\\xf6c\\x9bD\\xbf>\\xc5T5\\xfcv{\\xbf\\xa0\\xa0\\xc6\\x84\\xa4\\xd7S\\xbf\\xday.zT\\xaaY\\xbf\\x80RC\\x05\\x18k]?\\x00K\\xc8\\xc8\\xd5 B?@q\\xa2\\x8a5@Q\\xbf|a`\\xaaz\\x12]?\\xc8ct~:\\x8eg\\xbf\\x82\\x90\\xf8\\xfb\\xc3a\\x85?&;\\xf8\\xb3#\\xccy?\\x80\\xbd\\xcbZ3\\xb8>?\\x9d\\xfd\\x13\\x94\\xc9\\x91`?L\\xb3\\xdaT\\xfc]q\\xbf\\x10\\xe7\\xa5!\\'\\xa8N\\xbf\\xd0\\xcf\\xf7~\\xc8\\xdeQ\\xbf\\xd8eyC\\x80\\x1ft\\xbf6\\x02\\xd8z\\xfc\\x13p?>r\\xce\\xcco2\\x92\\xbfV^\\xb8\\x9d\\x8b\\xf7a\\xbf\\x00X\\x88Lc\\xf7\\x08\\xbf\\xbc]\\xa7\\x0f0xw\\xbfPt\\xf0q\\x02\\x97U\\xbf\\x886\\xf2$\\xb7\\xb1w\\xbf\\xc2\\xecn\\x9e\\xfe\\xbc\\x8a?\\x10\\x1a\\xbe\\x9a\\x92iM\\xbf\\xb02\\\\\\x0bqNh?#\\xa7c\\x93\\xf1\\xbc\\x8c\\xbf]\\xd8\\xc0\\xffP\\xbe\\x85\\xbf\\xa0\\x81\\xf8\\x08w?D\\xbf\\x18\"\\x90\\x82\\xce\\x98~?\\x1c\\x84z\\xbd\\t\\xc6\\x85\\xbf\\x00\\xa4e\\xec\\x90\\\\%?\\x80\\x9d\\xe0\\x93{\\xf8N?6 b\\xf1\\x08\\xbe\\x84\\xbf(\\x07\\xbe$\\x11\\x95p\\xbf\\x90`@k\\x84\\xcae?\\x8cY\\xeb\\xa8~Zi? \\xa2t\\xeb\\x12\\xf3p\\xbfX\\rQ\\x9f\\xccf|?\\x0c\\x1b\\xec\\x1b\\xad\\xb1E\\xbf\\xa0\\xf1\\x86\\x00\\xaayq?\\xf6c$<\\x9f#\\x83\\xbfP\\xf5K\\x85+\\xc2b?\\x80\\x86\\xc7\\x93\\xc0\\x0eW\\xbfx\\xca\\xe6\\x97\\xf1|x\\xbf@c\\x08\\xd3\\xd2\\xcdE?\\x00V\\x7f\\xd0\\xc7\\xb2U?`\"S&\\x90\\xf4y? n\\xe5\\xd3\\xd48D?\\xe0Y\\xf6\\xc4\\xf0\\xbbK? \\x18\\xbb,\\x82\\xd6_?\\xc0X\\xed\\xe6\\xbe\\x859\\xbf@\\\\N\\x91\\xd5\\xc4P\\xbf O\\x11\\xc9\\xb1_a\\xbf\\xd7\\xde~B\\xbd]\\x81\\xbf\\xf8E\\x1d-\\x0cz`\\xbf89\\xdf\\xda\\xe8\\x9f@?\\xef\\xd7(/)\\xf9u\\xbfhp0\\x01s^<\\xbf\\x00\\xa7\\xfa|\\x1a\\n\\x14?yzNJ#P\\x84?\\x00Z\\x92\\x1d\\x0cA\\xeb\\xbe\\x96.H\\x04x\\x1eI?\\xe9\\xca5\\x1c\\xe4\\xf6w?\\xf3\\xdf\\xb0\\x0e\\xe8\\xe2k\\xbf\\xb5N\\x04\\xf6\\x93-X\\xbf\\x0e\\x02\\xd17Y\\x89g?$\\xf9\\xb5\\xfb\\x08\\x1aQ?\\xc3gHi\\xeez1\\xbf\\xb8v\\xaeHYS\\x83\\xbf\\x00\\xdf\\xc0\\xfe\\x96\\xc9\\xf8>\\xc6 \\xda\\x95\\xb7\\xcce\\xbf\\xbcQ\\x9f\\x8a\\x15\\xcdR?@`\\xd7\\xbad\\x96K?\\x9c\\xb9\\xc58H\\xe1N\\xbf\\x80\\xe2&\\x1a\\x07\\x06;\\xbf\\t\\x88t\\tg\\xdfv\\xbf&;\\xf8\\xb3#\\xccy?\\xe8`\\xa8\\x9b\\xc2\\xed\\x87?\\xf8\\xc5\\xec\\xea>C3?\\x90\\x1c\\x9b\\xa3\\x95\\xc8X?\\xf8\\x01\\xe8oa\\x84j\\xbf\\\\\\x81\\xc3\\x1b\\x15\\xcf]\\xbf\\xec\\xd7)\\xb592h\\xbf\\x7f^\\xaeN\\xf1}b\\xbfj\\xa5\\x1aI\\xb4\\x08q?\\xcb A\\x9f\\xd9\\xae\\x8a\\xbf\\xc6\\xab\\xf6\\x07\\x90]`?\\x00[t\\xe1\\x92\\xb6$?z\\xdc\\xf2\\x13/Qx\\xbf\\xd8\\xbc\\xe6\\xe7X\\xa3T\\xbf\\x18N\\xe7\\x91\\xdd\\xaeq?\\xb5\\xe2^Z\\x94\\x15\\x8f? GyR\\xc7#E\\xbf\\xc0\\xe0\\x11\\\\5hx\\xbfH\\x03\\xac\\x91\\x00\\t\\x93\\xbf6\\xb9M8U\\x10\\x90\\xbf\\x18f4\\x8f\\x80\\xcdG?\\x1b\\xfb\\xc8%\\xf5\\xd8~?\\x1aB\\x98\\xab \\xb6z\\xbf\\x92\\x90\\x9e\\x93\\xb8\\xc9\\x86?\\x80XW\\xcc8\\x0eV?\\xc3\\xd5\\xa5\\x9b\\xaf\\x10|\\xbfZ\\xe6M\\x16e\\xae\\x8c\\xbf\\x00\\xa1U\\x1cR\\xb71\\xbfy\\x83\\x02\\xc2;*n\\xbf@du\\xd4\\xd6\\xe3b?\\xd0\\x9e/\\xa1,\\xd5r\\xbf\\xa0\\x0fDA\\xa9\\xc6\\x03?@\\xf4\\x10\\x88\\xf2\\xf3V\\xbf|\\x19\\xe6<\\xe3Sn?\\xa7\"Y\\x88\\xcf\\x99\\x88\\xbfX\\x98\\xff\\xb4sZ^\\xbfs5\\xd2\\xd9\\xed\\xc6\\x87\\xbf\\x05o\\x18H\\xf6o\\x84\\xbf\\xc0\\x17\\xd9\\xa9\\xc4dK?\\xf7\\xdb\\x0e\\x07,\\xe5\\x88?h\\x9d\\x8cr\\xc5\\x1ag?\\x946vF\\xab^k?\\x00\\x08\\x00\\x9c\\xbek_?\\x10\\xed\\xce\\xde\\xc5\\x16T?\\xe0$D\\xc2\\x05\\xa5i\\xbf\\x80\\xa2\\xb8\\xe3Ovc\\xbf\\x16\\x9e\\xbbQ:\\xdec\\xbf\\xc21\\xb9\\x82r|^\\xbf8\\xb0\\x16\\xf8\\xd8&B\\xbf\\xc0\\xa9jV\\x92\\x9cW?\\xcbe\\x89\\xb2\\x0b\\xdbb\\xbf\\xdc:\\x85\\x8e\\x81\\xca6\\xbf\\x80y\\xd7\\xb1]\\x10\\x10?\\x90A\\x06\\x9blCe?\\xf2B\\xde\\xeb\\xc2\\xef:?)J\\xed\\x80\\x0enQ?@\\xfepT\\tMp\\xbf\\x9c8\\x01\\xea\\x83\\xfa;\\xbf\\x88\\xb6\\xd7\\xd3\\xc2\\x15T\\xbf\\x8e\\xac\\xa0\\xc21\\xfea\\xbf\\x90\\xce\\xdd(\\x82$3\\xbf\\x94\\x17\\x86\\x0c\\xea\\x08F\\xbf\\xc7\\x84\\xbf>\\r\\xb5e?\\x99\\x9f\\xd0m\\xc0\\xb0c\\xbf\\xa0\\x14\\xd7\\xab\\x1fU>?0\\xec\\x01s\\x89\\xf6B\\xbf\\x066Z\\xbe\\x01\\xb4T\\xbf\\x98\\xac\\xbf\\xb2\\xa2\\xf97\\xbf|\\xa2\\xf7\\xd5\\x1e5h\\xbf\\x80\\xbd\\xcbZ3\\xb8>?\\xf8\\xc5\\xec\\xea>C3?\\x16\\xa1\\xcb\\xaef,q?3\\x8b\\xa6mq\\xa18\\xbf\\x80\\x18\\xd1\\xdd\\x82\\xcd\\x19?dK\\xc3\\xbd\\xf5\\x11X\\xbfp\\x8c[\\x97t\\x96I?H\\x18`\\xee{\\n6\\xbf\\x88\\x8a\\x15Ad1V?\\x00gx\\xcd\\x0c\\x14b\\xbf\\x0c\\xfe[\\x1eK\\x95K\\xbf\\xf7\\xb5\\xdeH^kn\\xbf\\x80\\x06\\x1e\\x99~5\\xf8\\xbe\\xe8\\x8e\\r\\xa4n\\xd5\\\\\\xbf\\xb0H\\x02\\x10\\x8b\\x0cI?\\x90\\xfcPa.\\xb1V? j\\xd2fP\\x9a.?t\"\\x7f\\xc0\\xca\\xdcy?\\x96\\xeaK\\xbeP\\xc5q\\xbf$\\x1f\\x95f\\xcdyX\\xbf\\x8a\\xd2\\xc3\\x0c\\x91\\x11S\\xbfDS\\\\\\xca\\xe4\\x1fV?\\xb0\\xdc8[%\\xdf7?Xq\\\\\\xa4L\\xb0j?\\xf0\\xb2a\\xe72\\x1bU\\xbf`_\\xd1\\xfa\\x0bq\\x83\\xbf\\xdck)\\xe6\\x0eH\\x80?X\\x888>\\xbe\\xb1\\x81\\xbft\\x10\\xd0\\x1cl\\xf8M?@\\xea3\\xb2\\xc7y]\\xbfP\\x7f\\xd4\\xf0\\x7f\\xbbQ?@\\x8f\\xe1\\xe6\\x16\\x03q\\xbf,}\\x92\\xec\\x01k\\x82\\xbf\\xe0\\xd1\\xfb\\xc1h\\xab4?\\x14\\xd1\\xd1\\x9b}\\xffT\\xbf\\xc0*oO\\x11\\xebA?\\x0ej\\x19g3Ba?[?\\xeb\\x91RTx?\\xc0\\x05\\xb7_\\x8cs)\\xbfx\\x95<\\xe3x\\x1cm\\xbf\\xdcB\\rR0NV?\\x809\\x9c%kZ\\x1a? )m\\xc3\\xbfbQ?\\xf0\\xd1#o\\x0e\\xdc5\\xbf\\x00l\\xed+1\\x0e\\x16\\xbfP\\xd1\\xe1\\xc5\\x9a\\xbfb\\xbfR`9\\xddg\\xa0m\\xbfx\\xaa\\x10\\xa1{a\\x10? |\\xfe\\x07(\\xae\\x06?r?f:\\xb19l\\xbf\\x1c\\x98%(\\xb1\\xa51? ?\\xea\\x8d\\xebv\\xf2\\xbe-\\x99\\xf0\\xbbrUq?\"i\\x1cN\\xde\\x00/\\xbf\\x00[h\\xdb\\xa040?\\xba\\xe1\\xdf\\xe5w^P?\\x80~3t\\x0b\\xa3\\x16\\xbf\\xe6\\x95\\xed\\x03\\x84z\\x13\\xbf.^j\\xdc\\xd1\\xf4E?\\xde\\xcf\\x0e\\xd4E\\x9fH?\\xda\\x0c\\xa7\\x9c\\x7f\\xd6\\x03\\xbf\\n\\x15\\x93\\xda)*`\\xbf\\x8b(\\xe8+8\\x97V\\xbf\\x82\\xc1\\xb8r\\xdf*U?l\\xbd,\\xfc\\x0eNG?\\x00\\xa3a\\x84R\\x83H?\\x10\\xfa\\xf0Y\\x04QB\\xbftC\\xd1\\x18u\\xf6K?6?\\xf1\\x15\\xc2uU\\xbf\\x9d\\xfd\\x13\\x94\\xc9\\x91`?\\x90\\x1c\\x9b\\xa3\\x95\\xc8X?3\\x8b\\xa6mq\\xa18\\xbf\\xf4\\xce\\x80\\x18ARi?*\\x82\\x170\\x1b\\xf7P\\xbfl\\x0b\\xda\\x80,\\xac0\\xbf\\x00\\xd7\\xd4\\x89\\x14\\x88\\xf2\\xbe\\xd0\\x119\\xc14R`\\xbf\\xfdW\\xeb\\xb9B\\xdfT?+%\\x92\\xac\\xf2Up\\xbf\\xb1\\xe3\\xaf\\x93\\xef\\xafb\\xbf7z\\x91WH\\x05h?H.]\\x19\\xfb\\xd6`\\xbf\\x90#\\n\\xf1(\\xed6\\xbfSc\\xf54\\xf4`\\x7f\\xbf\\xedr1\\xae\\x1b\\x82x?\\x04\\xee\\x91t\\x7fMD\\xbf\\xdf\\t\\xd8{F\\x17t?}\\xd0$\\xbd[\\x1dq\\xbfQ\\x05m\\xb3\\xaa\\xd7w\\xbf$F,Q\\xcb`<?<\\x9d\\x05\\xc6*rl?\\xec\\xd9p/\\x9f\\x12|\\xbf.\\xec\\x1a\\xc7\\x8a\\xe4k\\xbf,{\\xdfue\\xd8{?q\\xa1\\xd2\\x9e\\x08\\xd4i\\xbfpZ\\n\\xf0\\x7f\\rZ\\xbf\\xa0\\x16\\xba\\xd6U\"!\\xbf%\\x9f\\xe8\\xc2#\\xcdi\\xbf\\xa0\\x1dC\\xc2\\xfe\\x17u?\\x1aM\\x87\\x13\\x80\\xc5a\\xbf\\x01dZh%Tf\\xbf\\xa0\\xc9\\xb1\\xbb\\xf2\\xf1l\\xbf\\xa0\\xe8\\xf0.j\\xd75\\xbf\\xc8\\x0fL\\'\\x01C[\\xbf\\xf0)\\xd1I\\xd0\\xc9$\\xbf\\xf5\\xab\\x1f\\x01\\xa1\\x10R\\xbf\\xa5\\xe8)\\xd9SDg\\xbf\\xd8\\xd3O\\x94\\xec\\xd61\\xbfa;!\\'|\\x8dX?0\\xaa\\x8c\\x85\\x1f#>?\\x00{H\\x9dA0B?\\xe0l\\xdb\\xa2\\x85\\x87??\\xe0\\xd3\\xd7\\x12\\xd9\\\\\\x12?\\x18\\x1c\\xeb\\xc9\\x838E\\xbf\\xf0\\xd0=XHL7\\xbf\\xc8\\x94Vr\\xef\\x95m? \\x97\\xd2\\xf1\\xccNR?`%\\x04\\x87\\x16wK\\xbf\\xe0\\x81\\xbd#?`M?\\xc0\\x93\\x86\\x8f<\\xf5 ?@\\xbcG\\xe4\\xe5\\x19\\x1a?h\\x9c\\xbc\\xc6m\\x1fd\\xbf0\\xda9\\xd9\\xb8\\x97>\\xbf\\xf06\\x87\\x85v%*\\xbf\\x80\\xfdTZ1U|\\xbf\\xe0\\xac\\x8d\\x83G\\xd64\\xbfi\\x9e\\x8e\\xa4_eW?4\\xa4\\x1d\\x13\\xb9:s\\xbf\\x80S\\xa0P\\x83\\xbb\\x1b\\xbfP<54A\\x11\\x1c\\xbf\\xa6\\xb5\\xd1K\\xcf\\xf4h?@Y%\\xe0QK??A\\x12h\\xfb\\xee\\xe0D\\xbf`\\xc4\\xf3\\x7f\\xa6HK\\xbf\\xe0d\\x8a\\x1d\\xd7-`?\\x80\\xea\\xcb~\\xc6\\xc4#\\xbf\\x8c\\xc0\\x06,Y-Q?\\x80\\x85\\xf6)_\\xfeP?L\\xb3\\xdaT\\xfc]q\\xbf\\xf8\\x01\\xe8oa\\x84j\\xbf\\x80\\x18\\xd1\\xdd\\x82\\xcd\\x19?*\\x82\\x170\\x1b\\xf7P\\xbf\\x14\\xd5\\xa2Q#[\\x81? \\xd2\\x8af\\x0e\\x90Q\\xbfp<\\xb9\\x9a\\x83dZ?\\x10#j\\x06\\xfe\\\\Q?\\xc0\\xf1\\x7f-\\x86\\x13h\\xbfl\\xe8AD\\xb6\\xdb\\x82?\\xb6\\xc5$\\xc7nCY?\\x946\\xb7\\xb0\\xa2\\xefg\\xbf \\x83B\\x1c\\xe2dZ?\\x00\\x88\\xda\\x98\\x801\\xe5>\\x80m/\\x89\\xfa$K?@\\xe6\\x809\\xb3\\xbc|\\xbf\\xe0oK\\xd3\\xa6\\x8aI\\xbf\\x80A\\xb9\\x1d7\\rb?\\xb8\\x10j\\x17\\xadHn?\\x00P\\xd0u\\xfb\\xd0\\xef\\xbe\\x00\\x88\\x82e\\xa7\\x94\\x19?\\x90XRa9\\x0cU\\xbf\\xf4\\xf5\\xf9}\\x83\\xfdq?\\xa0ju>\\xae\\x92u?p\\xd39\\xcbeww?\\xb9w\\xb1!\\xd1\\x18e\\xbf0(wP0_r?\\xf8`4\\xe20&\\x8a\\xbfp\\x93\\xf5\\x00\\x05Jw\\xbf8QB\\xf1E\\x97\\x96?\\x98\\xb8K\\xdc\\xbbz\\x81\\xbf2\\xc0e\\xce\\xbeX\\x7f\\xbf\\xf0\\xeef\\xd9x\\xe1\\x86\\xbf\\xe4\\xb7\\xcaZ\\xcdT\\x84?\\xc0\\xce.\\x90f\\x013?@$\\xce\\x8b\\xa2\\xf1>?0\\xd9\\xedty\\xa7Q?\\x18Z9\\xae\\x1e(k\\xbf\\x80\\x03Xq=\\x859?\\xd0\\x86\\n\\xe0-\\xe9T\\xbf\\xf08k\\xbc6`U?@\\xb1px`~S?\\xe0M\\xa6\"\\xf7\\x99k?\\x80\\xbf\\xe6\\x17\\xe5vU?\\xb0Z\\xa5\\x1d%7e\\xbf`6=\\x07o\\xb8e\\xbf4\\xb9\\x03\\x17L\\xe2a? \\xdc\\xa1r\\x17\\x9f&?(zP\\xa8\\x024Y?\\x00V\\x8f%\\xdc\\xf1\\x0f?\\x94A0\\x91\\xe3\\xf8X?\\x86@Dx\\x9b\\xefP\\xbf\\xe8\\xe2\\xd7S\\x07\\x9fd\\xbfp{\\x96\\x07\\xf4\\x8aH\\xbfG\\x83\\xb2\\xac\\xa2OA\\xbf\\xe2\\x15\\xf0\\x05\\xceee\\xbf:\\xf2\\xaf\\xc89=\\x81?\\xc6v\\x15|$bJ?`\\x92[\\xf2b\\x90^?1\\x00\\xb1\\xa2c/|\\xbf\\x06\\xfcR\\x83`\\xbd!\\xbf\\x92\\x81\\xd2J\\x1e\\xffv?\\x80\\xc0\\r\\x1c|l\\x19\\xbf\\xcf\\xe0\\xfe\\xa7+Fj?\\xa0G\\xd0\\xffcFM?P\\x1b\\x97D\\x1fg\\x80\\xbf&h4.\\xc6\\xc6q?\\xccu*,\\xc9W[\\xbfr\\x0f~w\\xf7h\\x82?\\x10\\xe7\\xa5!\\'\\xa8N\\xbf\\\\\\x81\\xc3\\x1b\\x15\\xcf]\\xbfdK\\xc3\\xbd\\xf5\\x11X\\xbfl\\x0b\\xda\\x80,\\xac0\\xbf \\xd2\\x8af\\x0e\\x90Q\\xbf\\x18\\x94  \\xc0\\xb2\\x88?\\xdcs\\x96\\x92\\xc1+s\\xbf\\xe9CO\\x04\\xbd\\xd4s?\\xca\\xca\\xd1\\x02\\xd5\\xe3\\x80\\xbf(@\\x95\\x98\\xca=n?j1\\xbb \\xce\\xce\\x86?\\x8cS\\xa6\\x05\\xcf|s?P\\xe6\\x87-C\\xe7w?\\x00\\x8a\\x119\\x9a\\xb2^?,\\x14-\\xcd\\x9cVr?4\\xe1\\xa89\\x92cv\\xbfh\\xe3\\xe6\\xc4\\x1c[A?\\x94\\x8e\\xe9\\x9e\\xffIu\\xbfO\\xb8\\x8e\\xc1\\xcbJ\\x82?\\xe0\\x85m\\xc2\\xff(s?p\\x90w)\\x88AU\\xbfW\\x92H3\\xa7\\xc0v\\xbf\\x1a\\x0c\\x1a\\x85\\xe4\\xbf\\x8a?x\\xfe(\\x0c\\xd6ir\\xbf\\xd0]\\x03\\xe3\\xd0\\xa4\\x99\\xbf8\\xa0S\\xc77=\\x91?\\xd8\\x11\\xc9_\\xc5\\xbaq?.m\\x13\\xc1\\x84\\xe9\\x99?yM\\xf7\\xf6{\\xf9\\x86?\\xa4q\\xa9\\x08A\\x8e\\xa2\\xbf][\\x80S\\xc5!\\x93?\\xeb\\xbc\\xaad\\x18\\x0f\\x87?\\x14\\xfc\\x818\\x8d\\xbb\\xa6?\\xfc\\xed\\xc9\\xf0\\xd3\\xf6\\x94\\xbfH\\xe3+\\x94\\xc4\\xd0l\\xbf\\xe0\\xf4B\\x88\\x0e5A\\xbf\\x98\\xac\\x89$G\\xa8]\\xbf\\xa2;\\xa4\\'\\n\\xdfw\\xbfH\\xcfL\\xe1\\xf9?U?XGHv\\xafqS\\xbf\\xe0\\x82sV1\\xcft\\xbf \\xb1[g\\x95\\xa5G\\xbf(\\x8b\"f8L|\\xbf<\\x19\\xc2\\xb62\\xd0e\\xbf@#@\\xc2\\xb5\\xda\"?0\\x8c\\x0b\\\\7\\xefz?p\\xdb6\\xb6\\x97\\xf3a\\xbfP#\\xbdM\\tP@\\xbf\\xe0]\\x94Z1\\\\3\\xbf@8\\xaf\\xfeD\\xd00\\xbf\\xe0[`\\x00\\xe3\\x1bA\\xbfL\\x9e\\xc5\\x04\\x17\\xc1A?XF\\xcc\\x80\\xa56c?\\xf0k\\x81\\xd3\\xc3$@?\\x18+2~s\\xe07?\\xc0b\\xd2\\x15\\xde\\x9a0?PN\\xf2XYvk\\xbf\\x00\\xd7\\xb6\\x9a\\x03\\xc3\\xeb>\\x905\\xc9S\\x8f\\x9fB\\xbf`\\x08\\x1bnb\\x922?\\x905\\xa04\\x85; ?\\x10|\\xd7\\xce\\xd1G=\\xbf0\\xa0\\x0f\\x9eO\\x1bH\\xbf\\x11\\xa3\\xb9\\xd9\\xf6\\xb4_\\xbf\\x80\\x08\\xcb\\xe0\\xac<$?\\xd0\\xaf~\\xac?Dg?L\\xab\\x9e\\xf7\\x10qs\\xbf\\xa8\\xa3\\xc9kA{D?\\xa8\\xbe\\x14\\x0f\\xa2\\xd9d\\xbf\\xd0\\xcf\\xf7~\\xc8\\xdeQ\\xbf\\xec\\xd7)\\xb592h\\xbfp\\x8c[\\x97t\\x96I?\\x00\\xd7\\xd4\\x89\\x14\\x88\\xf2\\xbe@<\\xb9\\x9a\\x83dZ?\\xdcs\\x96\\x92\\xc1+s\\xbf\\x00[\\xf70\\x98\\xf3\\x85?\\x92L\\x81\\x01y\\xd2p\\xbf\\x08!\\xd6\\x8dE\\xb8X?\\xb89C\\xfe!\\xa9`\\xbf\\x9bTd\\x15N \\x80\\xbf\\xb0O\\xc3\\x15B\\x1aL\\xbfT4\\x85\\xa0\"\\x8cb\\xbf\\xa0\\x93_\\xc1{M[\\xbfh\\x88\\xee\\xed.\\x06\\x84\\xbf\\xc0\\xab\\x12\\x9a[&p\\xbf\\xd4\\x10\\xe6\\xbf\\x83\\nc\\xbfL\\xd4\\x16\\x9cP\\xdd\\x85?@<\\xf6\\x80k\\x1e>?\\x98\\x1ac\\xed\\x10xe?t\\xdfQ\\xa8\\\\Cr?\\x00\\xfc\\xdfH\"K(?\\x82\\xba\\x9e\\xc2(\\x04\\x7f\\xbf(\\xb2jY\\x90\\xed\\x81\\xbfhU\\xe0\\xb7\\x1b\\x89\\x89?\\xb3\\xec\\xd5{/\\xe2\\x81\\xbf\\x00\\xbd9\\xd3\\xcd5\\x84?Hq\\xa4E\\xf5\\x0c\\x8f\\xbf\\xe2\\x1c \\xe7o\\x06\\x81\\xbf\\xc0\\xaa\\xd6\\x0f\\xa7}t?\\x90\\xc3\\xd0\\x1e\\xb1(f?8\\x15\\xdc\\xe1\\xfe\\x13\\x83\\xbf@\\xfby\\x8a\\xf0\\xa3c\\xbfxJ\\x01~B\\xbdd?\\xa8\\x9e\\x9e\\xcdRQp?\\x80\\x1fh\\xd9#\\xdc%?\\x8cV\\xdf\\xd1\\x0c\\tr?\\xa0E\\xf8\\xd9G\\x1eK\\xbf`\\x89L\\xe4ClF?\\x80\\xf70\\x1e\\x82N4?\\xc8\\xe3\\x92}D^m?\\xa0\\x942\\x1aT`W\\xbf\\x00^/,\\x0b\\xacI?\\xc0\\x99\\x11}\\xc37g?P\\x88\\xdd\\xcc\\xa0\\xb7W?P\\xfe[L\\x15\\xe8d\\xbf6\\n\\x86B\\xafDz?\\x00\\xa9\\x9cP9#\\xf4\\xbe\\x80\\xe7p\\xe6\\x9e,\\x0f?\\x9aj\\\\\\xe1&\\x95v?\\x80\\xed\\xfc\\x8f\\x8f\\xd2\\x01\\xbf\\x08t\\xb9z\\x9ev.\\xbf\\x85\\xc9t7\\xfcI\\x82\\xbf\\x88\\xcc\\xf6t5%<?0\\xd0\\xe6|\\xd4\\x9f\\x02?\\xe9A\\xaay\\x1e\\xbds\\xbfS\\x19\\x91\\x9a\\x01]j?Hc\\xfe\\xca\\x7f\\x90L?VmU\\xd1n\\xbba\\xbf\\x9e\\xbe\\xdc8\\xfdSr\\xbfU\\xc2\\t^\\x99O&?\\x1a\\x95y\\x8f\\xe3@r?\\x95\\x11Y\\n\\xa2\\xe7c?\\xd5J\\xbe\\'\\xb1ia?(]\\xc2\\xa6{i:\\xbf\\x0fa?-(>s\\xbf\\xc5\\x17\\x81\\x9f\\xce\\rg?\\xec\\x8f\\xb9n\\xe7/e\\xbf\\x9b\\xe3Iy\\x7f\\x98p?\\xd8eyC\\x80\\x1ft\\xbf\\x7f^\\xaeN\\xf1}b\\xbfH\\x18`\\xee{\\n6\\xbf\\xd0\\x119\\xc14R`\\xbf\\x10#j\\x06\\xfe\\\\Q?\\xe9CO\\x04\\xbd\\xd4s?\\x92L\\x81\\x01y\\xd2p\\xbf\\xb6<+\\x1e\\xc7N\\x85?\\xf0|\\x03r\\xc1\\xe8j\\xbf\\xf6`N\\xce;\\x8b\\x87?x N\\x89n\\x88\\x83?L\\xe4\\x8bw\\t\\x19R\\xbfbT\\x10L\\xd2\\xbdx?l\\x18\\x8c\\xaf<\\x9eX?\\xb0\\x05iH\\x83\\x7f\\x93?=)\\xe7$#\\x18\\x83\\xbf4N\\xcf\\xc6D5Y?\\xaf\\xb9\\x160\\xd8N\\x90\\xbf\\xc7\\x03}~\\xcd{\\x88?,\\x1f\\x1c\\x18\\xe3\\xf2\\x85?\\xda\\xb4\\xeb\\x1f\\x1f-h\\xbfH:{\\xdc\\xd8\\x90~\\xbf\\n\\xa6\\xec\\xad\\xb5\\xf5\\x90?\\xc0\\xf3R\\xf5\\'\\xf8w?\\xe0\\xae\\x0b\\xb3H/\\x91\\xbf\\xd6 \\xec\\xd9n\\x0e\\x8e?\\xc8\\x19<\\x02C\\x95x\\xbf\\x16\\t\\xe8\\xb5\\x86\\xf6\\x82?%\\xf25\\xf7\\xee\\x9dx?\\xc4\\x1e\\x0e\\x03l\\xfb\\x98\\xbf\\xd8\\t`U\\x82Cn?\\x92\\x001y7\\x0bo?\\xf0\\xb3\\'GAZ\\x91?\\xdc,o\\x1e\\xf7{s\\xbfZ!\\xee\\t+\\xa3}\\xbfNq(\\x8f:Db\\xbf4\\xa9\\xc9\\xcd\\x04iP\\xbfR\\x83\\xcc\\x1bY\\xc3h\\xbf@\\xc6\\x873\\x90ES?\\x90\\x92\\xb4yKXV\\xbf\\x1c\\xa2\\xf3w_\\xcbf\\xbf@/F)\\xdeiH\\xbf\\x98\\xcd0\\xbeV[r\\xbf\\xa6\\x13\\xf6\\xb2\\x13(b\\xbf z\\x1d\\xb1D\\\\Q?4\\xf8\\x01up\\x03s?\\xb6\\xf9\\xe5s+;}\\xbflM\\x80[bFZ\\xbf\\xb8\\xfaL\\x00\\xc4pP\\xbf\\\\0R\\x05\\xc6\\x8el\\xbf\"l\\x10\\x7f\\xd0-S\\xbf\\x8c\\x85\\x88\\xca\\xfbYQ?\\x88~VY:!z?\\x08\\x99\\xc5?S\\xa5Y?\\xf0\\xe8W\\xb8\\xbb \\r?\\x12A\\x17\\x8a\\xe4\\x13u?\\xbd\\xfa\\xe9\\x0e\\xe30y\\xbf\\xbatJk{\\x86V\\xbf\\xc0\\xc3Y\\xd3\\xcf\\x82\\x1b?\\x8e\\x17\\xc2$\\xf6Us?Vjp\\xd2<X#\\xbf\\xad\\xaf\\xa0I\\xc5\\xe5{\\xbf\\xc0\\x00\\xfctuh(?;\\x9du\\xa4\\x83Wb\\xbf\\x00\\x0b:\\x96f\\xf8\\x1a\\xbf\\xc4\\xfc\\xb2\\xeb\\x9b0t?Z\\xec\\x1a6\\x99\\x17h\\xbf0\\xed\\x14``2]?\\x98B\\xe0{\\xb4a\\x83\\xbf6\\x02\\xd8z\\xfc\\x13p?j\\xa5\\x1aI\\xb4\\x08q?\\x88\\x8a\\x15Ad1V?\\xfbW\\xeb\\xb9B\\xdfT?\\xc8\\xf1\\x7f-\\x86\\x13h\\xbf\\xca\\xca\\xd1\\x02\\xd5\\xe3\\x80\\xbf\\x08!\\xd6\\x8dE\\xb8X?\\xf0|\\x03r\\xc1\\xe8j\\xbfz\"\\xc8\\xd9\\xbc\\x84\\x88?\\xec\\xe0\\xe66\\xd8:\\x83\\xbf\\xa1ug\\xb2Y\\x1b\\x85\\xbf\\xa2,\\x13\\x92!\\x11o\\xbf\\xce86\\xbf\\x19\\xb4{\\xbf\\xdc\\x85y\\xef\\xc1!a\\xbf\\xd0\\xe9\\x80\\xae=\\xa0l\\xbf\\x85CS*\\xb1\\x12\\x83?@%\\x82\\x94#ZG?P\\xf2\\xa0\\xe9\\x82=h?\\xdc\\xdc\\x82\\xbcY1\\x82\\xbf Co\\xeb\\x9f\\xb9t\\xbf\\n\\xe6\\xfc\\xe2\\xe0\\xccg\\xbf\\xee\\xd7$\\xe0+\\xfe\\x7f?b\\xc8\\x02\\x9a\\x1f\\x0b\\x89\\xbf \\x19\\x9c\\x91\\x14\\x95Q?\\x15\\xb1Yd\\xdb\\xae\\x93?x\\x10\\xd4\\xaa+\\xce\\x81\\xbf\\x08\\xec\\x98Z\\x05\\x19\\x87\\xbfP\\x8fN\\x0f\\xb5\\xcc\\x87\\xbf\\xc20U\\x90\\xe1\\xb5\\x88\\xbf8\\x9f\\x85<@\\xb5\\x83?\\n\\xa9\\x951z\\x93\\x8b\\xbfh\\xd3\\x858\\x02\\x95~\\xbf\\xa0y\\x0eht\\xb9\\x9d\\xbf\\x12\\xc2\\xd7CT\\xa7\\x8b?\\x10\\xcc\\x92\\x11REw\\xbf\\xc8\\x95\\xda\\xa9\\xd91V\\xbf\\xb8% \\x14-\\\\a\\xbf\\x90/{\\xa4\\xfe\\x04P\\xbf\\xb8\\xd3m\\xe1\\xb8wS\\xbfE\\xc6\\x89\\xf7\\xce\\x14s?\\x0c\\x12\\xf2x\\xdfej?\\x00\\xf7\\xa0$L\\xb41?\\xe00\\x03R\\x9b\\x94e?\\xf0<\\xc0\\x01\\xf2\\xf9S?\\x98\\x01$\\xfb\\xcdnV?(#\\x89\\x80\\xe1\\x8cn\\xbf ^fY\\x05e\\x9d?\\xef\\x97\\xf1\\xa0\\xb8Lu?\\x10\\xba\\xae\\x83\\x988^\\xbf\\xf4\\xcf\\x0b\\x96W\\xbe\\x93?\\x00\\xc5\\x02\\xe3\\x8a\\tH?\\x00\\xf5\\xdf\\'\\xb2d\\xf3\\xbe\\x96\\n?:6\\xbb\\x9c\\xbfH\\r\\x1d\\xfd\\x03\\xe7V\\xbf\\xb4.\\xe1\\x0c\\xfe<K\\xbf\\xdc\\x0fGh\\xa6H\\x90\\xbf MV\\xf5p\\x0cm?M\\x87\\x919P\\xden?\\x0eH\\xe0\\x9f\\xaf\\xae\\x80\\xbf\\x80\\x91\\xf1\\xc4g )?\\x98\\xbfE\\xa2I\\x96O?ee\\xf6\\x88\\x1c\\xbd\\x8e?\\x08j \\x8a\\x90E`?B}\\x1cv\\xb4\\x8e{?@_\\xfd\\x89\\xe6Xq\\xbf\\x80\\xaf7b\\xad\\x02@\\xbf\\x14\\x05\\xd8@jLt?\\\\\\xc5\\xa9l\\xdc\\xf8^\\xbf\\x00\\xe6\\x05\\xe1\\xb2.\\x85?>r\\xce\\xcco2\\x92\\xbf\\xca A\\x9f\\xd9\\xae\\x8a\\xbf\\x00gx\\xcd\\x0c\\x14b\\xbf+%\\x92\\xac\\xf2Up\\xbfl\\xe8AD\\xb6\\xdb\\x82?(@\\x95\\x98\\xca=n?\\xc89C\\xfe!\\xa9`\\xbf\\xf7`N\\xce;\\x8b\\x87?\\xec\\xe0\\xe66\\xd8:\\x83\\xbfk\\xf7@\\x02\\xe5\\xe2\\xa5?c\\xf8\\x0e\\x94^D\\x85?D\\xcaL\\xb3=_h?\\xa2\\xe77\\x93C\\x93\\x8e?0d\\x8a\\x8a\\xe8\\xa4d?\\xd6\\x85wO<u\\x91??Y\\x95\\xc7X\\xc0\\x96\\xbf\\xe0u\\xd8\\x00%\\xbe`?\\xf09\\xd1\\x18/\\xb3\\x8a\\xbf\\x00WFF#\\xb6\\x9e?3m\\xed^\\xab\\xa2\\x99?\\x80\\xac\\x9e\\xf2\\x0e\\'L\\xbfW\\x1d\\x02\\x08\\xd7>\\x92\\xbf\\xbf\\xa3\\x11\\x8d/\\xa9\\x95?\\x80G\\xea\\x97w<C?\\x00`\\xcf\\xa2\\x9c\\xa6=?\\x16&\\xf8\\x0c@\\xbb\\x99?@M\\xfb*\\xf2\\xb8w?\\xe0\\xa4\\x1a\\xce\\x19\\x14k\\xbfp3\\xbd\\x8eo\\xa0E\\xbf@e.\\xe4\\xf1\\xe0\\x81?h\\xe5\\x03\\xd7\\xc4\\x93\\x8b\\xbf\\x161\\xe4W\\xecG\\x84?\\x00\\xb66\\xee|\\xabC\\xbf\\x80X|p~\\x1e\\x90?P\\x1c\\x05Q\\x192X?\\xe0\\x0e\\xf8h\\xfb\\xc6G?F>\\xea\\x00J+\\x90?\\xb0R\\xc4^#\\x17c?@\\xcb\\xcb\\xc3v\\x0bA\\xbf\\xdac\\x96l\\xc6\\x89\\x92\\xbf\\xc0\\x1d\\x93\\x88\\x16\\x9dn\\xbf\\x80\\xafX\\x18\\x88CU\\xbf \\xc2\\xf9\\x1et\\xafd\\xbf@F\\x86$\\xe7\\xf6D\\xbf\\xc0\\x80\\x9a\"T\\x81K?p\\x8d\\xd5|\\xafSr?\\nA2\\x9d\\x9d\\x93\\x81?86\\xcc\\x14(\\x7f@?\\\\\\xbe\\xd5/F\\x8dV?v5\\xf3\\x16*{}?\\x80~\\xc7\\x98\\xf2\\x19\\x0e\\xbf\\xdb\\x98\\x8a7\\xf1>a\\xbfXN\\xee\\xd5|r\\x82\\xbf\\x04P\\xd0\\xa2x\\x052\\xbft\\x8fe\\x16\\xdbv=\\xbf\\xb2\\xbc) \\xb7y^\\xbf\\x85\\x08u\\xeb\\x90`v?y\\xff\\x1cgi8D?\\x1b\\xd0\\xf9x\\xe2\\x10P?1\\xe1\\xfa\\xe1\\xab\\x00~\\xbf\\xac\\xcd\\xc6,]\\x14\\xfe\\xbe\\x86\\\\(\\xee\\x961\\x8a?\\xd0\\x0eZS_\\xe0G?\\xd5r\\xa3\\r\\xcfgd?\\x00\\x84a\\x08}V\\x1f?\\xcbx\\x13\\xa7Q\\xbb\\x81\\xbf\\x8a\\x91C\\xd48\\x1br?\\xdd4\\xa3\\xd1\\x13\\x1bk\\xbf\\x06\\xfc\\xcb\\r\\xd9\\x01\\x84?T^\\xb8\\x9d\\x8b\\xf7a\\xbf\\xc6\\xab\\xf6\\x07\\x90]`?\\x0c\\xfe[\\x1eK\\x95K\\xbf\\xb0\\xe3\\xaf\\x93\\xef\\xafb\\xbf\\xc2\\xc5$\\xc7nCY?j1\\xbb \\xce\\xce\\x86?\\x9aTd\\x15N \\x80\\xbfx N\\x89n\\x88\\x83?\\xa1ug\\xb2Y\\x1b\\x85\\xbfe\\xf8\\x0e\\x94^D\\x85?\\x90<j\\xe8\\x00\\x03\\xa7?\\xdd\\xb6\"(\\\\vd?\\xbc\\x08\\x12\\xc5\\xb4dn?O\\xbf\\xbd1\\xf2\\x89e?lQ\\xbbf\\xe3U\\x90?\\xa8V\\td]\\x9bp?2[<\\x1c\\xc0:b?\\xb0X&\\xd2\\xc3\\x9e\\x90\\xbf\\xde\\xe1\\xea\\xd9\\xa0\\x88r\\xbfX\\xdd\\xfdU\\x85R\\x87?\\xd8:\\xfeW\\xc6\\xab4\\xbfnb\\x07B-\\x8d~\\xbf\\x80\\xc2p6\\xa8\\xfc\\x83?\\x1c \"n\\xfa\\x92e\\xbf\\x07u%\\x8b\\xa1\\x16\\x95\\xbf\\xbav\\x92\\x0e\\xb8L\\x83?D\\xfdW\\x06\\xbb\\xaae?>\\x95\\x978\\x03K\\x8e?\\xfb\\xd7c\\xe0\\x07\\xd2\\x8f?>[\\xef\\x89+\\xb8\\xa1\\xbf\\x11\\x01\\xc3$\\x9f\\x01\\x8e?\\xadf\\xdf\\x93\\x19-\\x8d?\\xb6N+\\xb5\\xb49\\xa5?7\\xec\\t\\xa2\\xdd\\x04\\x8f\\xbf\\xe4P\\x88#u\\xa2u\\xbfE0\"\\x9aA\\xdfo\\xbf\\xa5\\xddA\"_ws\\xbf<\\xb0\\n\\x16\\xfb\\x0f\\x83\\xbf\\xe5\\x14_\\xaa\\xef\\xf3s?\\x13v!*\\xfe\\x01s?\\x8a\\xa8\\xcacd\\x03{\\xbf~\\x9e&\\x8d\\x84Rc?\\xdf2\\xc19\\xe4\\'w\\xbf1\\x19\\xbeRkt_\\xbf\\xd3=\\xf7\\xf46\\xe8e\\xbf\\x9a\\xb3\\x1b\\x15Jnt?\\x00q\\xe8\\xfb$\\xd5B\\xbf\\xecok9\\x14\\n@?t\\x90\\x90\\xfe\\xedaf?@\\x9c\\xba\\xcdo\\xf0*?\\xba\\xf7\\xfb\\x92\\x0c\\xb1R?\\xec\\x18\\xf3\\xcc&\\xb1C?\\x00\\xb4%\\xb3\\x89!\\xea\\xbe\\xf8\\xfd\\xdf\\xddT\\xf9;\\xbf=I\\xad\\xf2\\x11\\x84c\\xbf\\xa0I\\xd1\\x9b\\x0f*\\'?\\xa0i\\x1bL\\x19\\xfbS?L p\\xd5\\x91\\x1f0?@\\xdc\\xf0\\xdd\\x03@\\x12\\xbfvc[J\\xe7\\xa5r\\xbf\\xc1\\x1d\\x13l@&0?\\xa6\\x8d\\xe8\\x8e\\x044d?kcwr\\x08\\x15c\\xbf\\xcf<\\x80\\xb9\\xec\\xeap?\\x14\\xbd\\xff\\xb1\\x93\\tR?\\xacb\\xb2C\\x1d\\xe5i\\xbf\\x80\\xfe\\xe9\\xbd\\xa2\\xacN?\\xb4.\\x05\\xc5\\x9f\\x99H\\xbf\\xa4Mn\\xa0\\xd3\\x9bl?\\x00X\\x88Lc\\xf7\\x08\\xbf\\x00[t\\xe1\\x92\\xb6$?\\xf7\\xb5\\xdeH^kn\\xbf7z\\x91WH\\x05h?\\x946\\xb7\\xb0\\xa2\\xefg\\xbf\\x8bS\\xa6\\x05\\xcf|s?\\xb0O\\xc3\\x15B\\x1aL\\xbfL\\xe4\\x8bw\\t\\x19R\\xbf\\xa2,\\x13\\x92!\\x11o\\xbfD\\xcaL\\xb3=_h?\\xdd\\xb6\"(\\\\vd?F\\xb7i/m\\x1c\\xa4?\\xf0\\xc4\\xb3w\\x15N[\\xbf\\x80\\xc7\\x12\\x83\\xd5\\xc2!?\\x96\\xf7\\xc1kZ\\xacv\\xbf\\xbe\\xa4\\xca\\x84\\xee\\x18|?\\xa2\\x8d\\xecP\\xa4cm?\\xc0@\\x1ds0\\xdai\\xbf\\xc5Y\\xc33\\xcb\\xe0y?\\xd4|y [jv\\xbf\\xff\\xb9r\\x9f\\x11\\xfd\\x90?D\\xee\\xbc2\\xd4\\xa0y\\xbf\\x12\\xf10\\x14Qm\\x86\\xbf\\xc0\\x10\\x1b\\x8dfe}\\xbf\\xdc\\xcb\\x03\\xbc_\\xbd\\x87?\\x80_\\rgo\\x95\\x93?\\xa8\\x9b$\\xd4^L\\x88\\xbf\\xe9\\xe7 \\xc8\\xc9\\x16\\x9b?2h3Vo\\x17~\\xbf \\xfa]\\xf0\\x06\\x1eq\\xbf\\xda\\xbf\\x04\\x8c\\xb4\\xe5\\x7f?T\\xc1\\x0f\\x83\\xe4\\x83\\x8e?\\xff\\xeb\\xb9;\\xb7\\xe7\\xa0?\\x96\\xce\\xfc\\x08y\\x92\\x83\\xbfp\\xfa\\x18\\x00\\xb0\\x9dj?\\xb8\\x88\\xf7\\x1fb\\xe3t\\xbfZ\\xaa+\\xcc\\xb2\\x8ey\\xbf\\xa6pZ\\xd6L\\x99\\x91\\xbf|\"!b\\xd8\\xe9r?u\\x8e\\x98\\x10:\\xae\\x83?\\x9aK\\xc0\\xbe\\x90\\xaek\\xbf \\xae\\x11\\xb3\\xb5p`?\\xf0\\xf6B\\t\\xaa\\xa7h\\xbf|\\xd4\\xc9\\x03\\n0n? `\\x98\\x9fO\\x01C\\xbfT\\xd0<\\xf5\\xb1sq?\\x11\\x96c\\xa6LH\\x8a?\\x9c]\\xc9\\x823@W?`\\xe5ia\\x9a\\xbe4\\xbf\\xae\\xa6\\xd1$U\\x96\\x82?x\\xf1\\x86\"\\x83\\x8c6?\\xc0\\xe2t`\\xcd{:\\xbf\\x0e2\\xbfL\\x15\\xe6\\x8d\\xbf\\x14-\\xeb\\xbeB\\xf34?\\x0c~\\xe9~+\\xd5\\x1e?U\\t\\xeb\\xc0el\\x82\\xbfQD\\xb0DI\\xd3u? \\xd5\\x8a&$\\x11`?\\x94iC\\x19R\\xfdf\\xbf\\xbf \\x9a\\xb8\\x1cIl\\xbf\\x82r6\\x07+\\xd5\\x17\\xbf\\x9eX\\xbe\\xbb\\xf2\\x95q?\\x06^\\x99FbMm?^}\\x9bJ\\x13\\xb0p?l\\x19UZ\\n\\xc6M\\xbf\\xb0\\xa6\\xbdP\\xdd\\x97m\\xbfZv+\\x98\\xbf,q?\\xe3\\xca{?\\x05\\x87_\\xbfd\\xb6\\x8b8\\xe5\\x9d~?\\xbc]\\xa7\\x0f0xw\\xbf{\\xdc\\xf2\\x13/Qx\\xbf\\x80\\x06\\x1e\\x99~5\\xf8\\xbeH.]\\x19\\xfb\\xd6`\\xbf \\x83B\\x1c\\xe2dZ?O\\xe6\\x87-C\\xe7w?T4\\x85\\xa0\"\\x8cb\\xbfbT\\x10L\\xd2\\xbdx?\\xce86\\xbf\\x19\\xb4{\\xbf\\xa2\\xe77\\x93C\\x93\\x8e?\\xba\\x08\\x12\\xc5\\xb4dn?\\xf0\\xc4\\xb3w\\x15N[\\xbf\\xde\\x84\\xa2S\\x01\\xe6\\x93?\\x18\\xf2\\x98\\x8f\\x9duL\\xbf\\xbe^\\xae\\x07\\x81\\xa1\\x95?\\xa9\\x96\\x1fy\\xca\\xac\\x88\\xbf\\x00\\xeb\\x08\\xf4o\\x862\\xbf\\x0eIVk\\xdc\\xa4\\x87\\xbf\\xdc\\xa8\\xcc\\x00h-\\x92?H\\xfb\\xc2\\xd6\\x92\\x98\\x91?\\x02 \\xc9\\x1a\\x1f6z\\xbf \\x01\\xbc`\\xf6o\\x81\\xbf2\\x84\\xfc\\xbc\\x98;\\x8e?\\xd8L\\xed\\xb5\\x01\\xaeo?\\x9c\\x12_\\x06\\x1b\\xa5\\x93\\xbf:l\\x84!\\xa5T\\x90?!\\xa3F\\x17\\x9d@\\x85?\\xe4\\xdc;\\x82d\\xdf\\x89?\\xe2\\x84\\'\\xe9d&\\x7f?\\xe0\\x1c\\x8c\\xa4\\xde\\x0c\\x90\\xbf\\xecP\\xca\\nW\\xe4\\x8d?x\\xdf6\\xb6l,\\x83?x\\xe6a\\xbe8\\xa2\\x8c?\\x8ey\\x07\\x81\\x12\\xb1\\x85\\xbf\\n\\x82\\xfc\\xea\\\\}\\x84?\\x94Yw\\xc0\\x80iX?C._I\\x94\\xf6p?\\x041\\x0b~0hq?\\x10?j\\xc2\\x87EV\\xbf\\xa4;\\'D( w\\xbf\\xf4\\xe3\\xbe\\xe1\\xe7ld\\xbfP\\x85\\x98:\\x11\\xc9[\\xbf\\x80\\x05\\xb9\\xaaiKd\\xbf\\x00\\xce]q+-\\xe6\\xbe \\x89\\xa8\\x19\\xe3EU?\\x00\\xc71\\x07\\xda]\\x1a?\\x00P\\xd6E\\x82\\xe38\\xbf\\xc8\\x8bn\\xc3\\x81!C? \\xcb\\x12\\xa8\\xc9\\x9e7?\\x800)\\xe7\\xba!b\\xbf\\\\\\x02\\xb4\\xc3\\xaf\\xfcW?\\x9c\\xcc\\xaa\\x1b`}M\\xbf !\\r&\\x01\\x06`?X+\\xa0\\xa9\\x85nU\\xbfd\\xd4\\xa2\\xa5#\\xe11\\xbf\\xb0\\xa1\\rB\\xcbrg?\\xe4j\\xb1U-\\xe3c?l-\\x0f)u\\xadH\\xbf(8\\xe1\\xd1L;l?P\\xf6^\\x18\\xb0\\xe9?\\xbf\\xb9w\\xc9\\xba^wB?\\x11g\\xe6\\xe7^\\x9aw?\\x90^\\xe9y\\xd9\\xa8S\\xbf)\\xf1x\\x92\\x9f\\x86^?h/\\x15\\xc5W\\x89C\\xbfP\\xfd\\xda\\xcf\\x07\\xa6R\\xbf\\x10ny\\xe9F\\x0b_?\\x80Y\\xdf\\xe7\\xa5\\x1c,\\xbf\\x80\\xc4\\xa8\\x85y\\x9al?Pt\\xf0q\\x02\\x97U\\xbf\\xd8\\xbc\\xe6\\xe7X\\xa3T\\xbf\\xe8\\x8e\\r\\xa4n\\xd5\\\\\\xbf\\x90#\\n\\xf1(\\xed6\\xbf\\x00\\x88\\xda\\x98\\x801\\xe5>\\x08\\x8a\\x119\\x9a\\xb2^?\\xa0\\x93_\\xc1{M[\\xbfl\\x18\\x8c\\xaf<\\x9eX?\\xdc\\x85y\\xef\\xc1!a\\xbf0d\\x8a\\x8a\\xe8\\xa4d?O\\xbf\\xbd1\\xf2\\x89e?@\\xc7\\x12\\x83\\xd5\\xc2!?\\x18\\xf2\\x98\\x8f\\x9duL\\xbfD\\xce\\xf2M\\xb2\\xb3\\x80?\\x00f\\xc9\\xad\"\\xea\"\\xbf\\xf6\\x02\\x8cl\\xd3K\\x82\\xbfx\\xb6\\xca\\x1b=\\xd7n?\\xd0?\\x17\\t\\xc2\\xb3i\\xbfv\\xbaD\\xe9\\xccs\\x83?\\xe0\\xb9\\xbe\\xc91cY?\\xe0d-\\xf9\\r\"a?\\x90\\x1a\\xde\\xcfw\\xffc\\xbf\"\\x0b\\x9f\\xc1\\xc9G\\x84?pj\\xbeE\\x1b\\x1bk?0\\x13\\xaac{\\xbe\\x8c\\xbf\\xd3MeA/Y\\x84?P\\x97\\x9d\\x12S\\x82u\\xbf0\\x87*uE\\xa0\\x8c?\\xda\\xc8K9n\\x80\\x83?\\x80?\\x85\\xee&\\x1dc?\\x88E\\x16\\x8a\\x0f2v\\xbf\\')\\x96\\x1b\\x87pt?\\x00\\x82R\\xf0\\xf9\\xe6g?\\xd8\\xe8s\\xb6[3k?8\\xd7\\xc4\\x83x\\x08c\\xbf\\xc0\\xd7\\xc4\\xe8v3H?\\xf0\\xed\\xa5^\\xba\\x0f_\\xbf\\x08F\\xdf\\xc0<Gb\\xbf\\x00\\x0c\\xdbp]\\xe4\\xf3>\\x00\\xf2\\xe7,X\\x01T?\\xf0\\tk\\xf45\\x8fe\\xbf\\x00L\\'vQ\\xd1\\xf5\\xbe0\\xa7\\x9fW\\xe4\\xc4b\\xbf\\x00g\\x94l \\xd2C\\xbf\\xc0\\xf5\\x0ce\\xe0\\x8f:\\xbf\\xc0\\x1d\\x05\\xa9\\x93,o?\\x14\\x8a\\x0f8C\\xed\\x86?\\x80\\x8c\\xb6\\xc2\\xec\\x1fv\\xbf\\xc0\\xb7P<\\x1a\\xc6W\\xbf\\xb8\\xbc^\\xff\\xf39\\x8e?\\xe0\\x15s\\x9e\\xeb\\x96\\\\\\xbfx{>\\x84~\\x1cd\\xbf6\\xa6\\x0fs\\x16\\xa8\\x95\\xbf<\\x10]p^\\x01k?\\xd7\\x04lM\\xacmP?\\xf0\\x0bmQk\\x9eO\\xbf\\x00`Z>u\\xa5\\xde>\\x00\\x95\\xc49\\xa3\\x9dZ\\xbf\\x10\\x877\\x9e\\xfd\\xc6Q\\xbf\\xc57\\xc5\\xa4\\xde]\\x85\\xbf\\xecG\\xfb\\xbf\\'D>?@\\x10\\xb5A\\x9dmt\\xbf\\xc4\\x80k\\xe2\\x87\\x86\\x8c?\\xfe\\xfc\\x16Ha\\xc6Q?h\\xd7\\x17$\\x97lj\\xbf\\x90\\xa4\\xdfm\\xdd\\xec\\x81\\xbf<\\xff\\xe5J>\\xfb}?`/H\\x04\\xca\\x99\\x83\\xbf\\x00\\xab\\xdf\\xf8\\x8a\\x03p?\\x886\\xf2$\\xb7\\xb1w\\xbf\\x18N\\xe7\\x91\\xdd\\xaeq?\\xb0H\\x02\\x10\\x8b\\x0cI?Uc\\xf54\\xf4`\\x7f\\xbf\\x80m/\\x89\\xfa$K?,\\x14-\\xcd\\x9cVr?h\\x88\\xee\\xed.\\x06\\x84\\xbf\\xb0\\x05iH\\x83\\x7f\\x93?\\xe0\\xe9\\x80\\xae=\\xa0l\\xbf\\xd6\\x85wO<u\\x91?lQ\\xbbf\\xe3U\\x90?\\x96\\xf7\\xc1kZ\\xacv\\xbf\\xbe^\\xae\\x07\\x81\\xa1\\x95?\\x00f\\xc9\\xad\"\\xea\"\\xbfn\\xca~\\x84#i\\xba?v\\xe4i\\xed\\no\\x91\\xbf\\x80\\xc8\\xff1\\x91\\xf3i?Z\\xf9\\x18\\xe8\\xbes\\xb3\\xbfr\\xbbP\\xbcM+\\x9b?\\x00\\xb1\\xaa\\xd2r<\\x93?\\x007N\\xee\\xf7D\\x89\\xbf\\x7f\\xb4\\xc2G\\xe3X\\x94\\xbf\\x80\\xd5\\x04\\x05u\\x8f\\xa5?\\x82\\xa0\\x044\\xday\\xad?\\xe2>\\x08|\\x8b5\\xa8\\xbf]i\\x81\\x9b\"\\xba\\xa2?4\\x99\\xe2\\xee\\x1b\\x07\\xa0\\xbf\\xb0.5\\xe4\\xe6\\xe1\\x98?#\\x9f\\xa8\\x8c\\xc05\\x90?\\xc8\\t\\n\\x1f\\xb2K\\xa7\\xbf\\xfa\\x11\\xecNa\\x1c\\x91?,)-\\x88&Y\\x90?Hg\\xba\\xdfW\\xf7\\xa2?\\xd0OQ\\xd8>q\\x7f\\xbf\\xd0\\t\\x9bx!ud\\xbf@|\\xb8\\x9a\\x80N\\x80\\xbf\\xae\\xcfU\\x00h\\xec\\x96\\xbf\\xeaU\\x14\\x8a\\x99a\\x80\\xbf\\x0c\\xb4\\xd4\\x9a\\x83\\x18~?~P>R\\x10\\x89\\x92?\\xc0\\x0e\\xfb6\\x97\\xf0Y\\xbf\\xf0\\xfds\\x18\\xf3(c?\\x00\\x89\\xc6\\xe6\\xab\\x807\\xbfxv\\xd1\\x19\\xeeMd?\\x00\\xfeC\\xa3\\xe4\\x15W\\xbf\\x80\\xca\\x93?\\xb9XZ\\xbf\\x82gi@\\xf1\\xbf\\x81\\xbf\\x88L\\xb4\\xa7N\\xf2Y\\xbf@R\\x93\\xc7c\\xe3H\\xbf s\\xa2\\xa4>\\xe9]\\xbf\\x94\\xeb(q\\x07\\x11f\\xbfP\\x81\\xbf{]\\x02M?\\x98eyP\\x7f2\\x7f?\\x98?\\xe4\\x98(\\x18Q?\\xa82\\x08l\\x9b\\xbd8?~m\\xaep9\\xb5\\x80?t[\\xb0\\x1e\\x1a\\x0b\\x80\\xbfj8\\x10M\\xe5\\xecS\\xbf\\x80w\\x8c\"Ev,\\xbf\\xc4\\xd9\\x84\\xb7\\xe5Fx?\\x00\\x18\\xe8n\\x12\\x89I\\xbf\\x16\\x8b\\xd1/\\x9e\\xfe\\x90\\xbf,\\xe25Nr\\x9bh\\xbf\\x0cJ\\x02\\ro,E\\xbf\\xb4\\x97\\xed5\\xa5\\xd6e?\\xd8\\xd5\\x03\\xfaj\\xdbp?x\\xb5\\x90\\xd6\\x9c\\x81o\\xbfP\\xcbX0\\xf6ZQ?\\xd0IT\\x1c.i\\x89\\xbf\\xc4\\xecn\\x9e\\xfe\\xbc\\x8a?\\xb5\\xe2^Z\\x94\\x15\\x8f?\\x90\\xfcPa.\\xb1V?\\xeer1\\xae\\x1b\\x82x?8\\xe6\\x809\\xb3\\xbc|\\xbf4\\xe1\\xa89\\x92cv\\xbf\\xc0\\xab\\x12\\x9a[&p\\xbf=)\\xe7$#\\x18\\x83\\xbf\\x84CS*\\xb1\\x12\\x83??Y\\x95\\xc7X\\xc0\\x96\\xbf\\xa8V\\td]\\x9bp?\\xbe\\xa4\\xca\\x84\\xee\\x18|?\\xaa\\x96\\x1fy\\xca\\xac\\x88\\xbf\\xf6\\x02\\x8cl\\xd3K\\x82\\xbfv\\xe4i\\xed\\no\\x91\\xbf\\xca|\\xd2\\xd1\\xfc9\\xab?\\xf2\\xd1\\x17\\xa0\\x17Nv\\xbf`\\x03l\\xa7\\xaf\\x8d\\x85?n\\xb5\\xfd\\xd1\\xbf\\xa4\\xa8\\xbf\\xf6g\\x9d^<\\xea\\x9a\\xbf s\\xcb\\x03e|m\\xbf\\x81\\x912\\xa6\\x81\\'\\x91?\\x8by\\xa1#\\xae%\\xa6\\xbf\\xb0\\xdbO\\x02\\x15\\x14}\\xbf\\x8a\\x08\\x02W\\xec\\xf5\\xa5?Y\\xaf\\xb7\\x85\\x9fP\\xa1\\xbf\\xc0}M\\x1e\\xc7\\x8bw\\xbf\\x84\\x9fk\\x00\\xd8\\xb5\\x95\\xbf\\x15\\xef\\x9dXn&\\x8a\\xbfp\\x80\\xfb\\x9d=S\\x91?\\xe0!\\xf6\\xaf\\xecqv\\xbf\\x1do\\xcd<N\\x10|\\xbf \\xca\\x81\\xed\\xf2\\x1d\\x8c\\xbf\\xa0I3\\xab\\x86\\xd5h\\xbf \\x7f\\xdb\\x8b\\x04J~\\xbf\\x00NO\\x8cAjp\\xbf4\\x01\\xd0\\xf2\\x03\\xe2~\\xbf\\x1c6Ap+-\\x7f\\xbf\\xc0\\xc5{\\x03\\xcf\\xa9Y?\\xa8\\x91\\x12\\xc0\\x87\\x8br?\\x14%<.zmt?(\\x02\\xab\\xc7.\\xcax?\\xb8\\xe6$B\\xee\\xbf\\x82?\\xc8\\x95:\\x8b\\x90\\xcac?\\x90\\xdc3\\x11\\xd3\\x14v\\xbf\\xa0Vs\\xe4\\xdf\\xfe\\x80\\xbf\\xc8+\\x14\\x9a%\\x89h\\xbf\\x10\\xfb\\x95\\xd1\\xb1iK\\xbf\\xc0\\xa1\\xd8\\xb4\\x01\\'I?\\xf0\\xca\\x12\\xff\\xc7\\x19V\\xbf\\x94\\x1d\\x1e\\xfb\\x0e\\xc0A\\xbf0\\x1e5hz\\x8d/\\xbf\\xfc\\x16\\x01W\\x85Jc?\\xc9\\xc0\\xbc@\\xa9kU?6b\\xed{\\xeb\\xc8I\\xbf \\xdb\\xccp\\xcc\\xc7e?\\xd4 \\x91\\x7f\\xdb\\xd5X\\xbf\\xce\\xfc\\xac\\xfe\\xa5FN\\xbf\\xe8p7\\x8c\\xf2\\xe9M?l\\x02:\\xf6kTb\\xbf\\x18#\\xb8hs\\x16\\r?1\\xec/.\\xf8uw?<\\xe3\\xeb\\xae\\xf1\\xc0Z??\\x8f\\xe8H:\\x8bB\\xbf\\x00\\x7f\\xb0\\x9f\\x95\\xb7*?\\xa0)\\xe8A\\x91*\\\\\\xbf\\x90\\x88\\x1c\\xa4\\xfdnL?\\x80N[Z4\\xbb\\x03\\xbf\\x00\\xaf\\xcf\\xf1\\xb1\\xca\\x1c?\\x10\\x1a\\xbe\\x9a\\x92iM\\xbf GyR\\xc7#E\\xbf j\\xd2fP\\x9a.?\\x00\\xee\\x91t\\x7fMD\\xbf\\xc0oK\\xd3\\xa6\\x8aI\\xbfh\\xe3\\xe6\\xc4\\x1c[A?\\xd4\\x10\\xe6\\xbf\\x83\\nc\\xbf4N\\xcf\\xc6D5Y?@%\\x82\\x94#ZG?\\xd8u\\xd8\\x00%\\xbe`?2[<\\x1c\\xc0:b?\\xa2\\x8d\\xecP\\xa4cm?\\x00\\xeb\\x08\\xf4o\\x862\\xbf|\\xb6\\xca\\x1b=\\xd7n?\\x80\\xc8\\xff1\\x91\\xf3i?\\xf2\\xd1\\x17\\xa0\\x17Nv\\xbf`v\\x16\\x81\\xce\\xd4\\x7f?p\\x8e!\\x7fg\\xa1X\\xbf\\x92\\xaf\\x89\\xe8Q\\xb8|?8y\\x16}\\x1f\\xd6W\\xbf`I\\xfd7\\x16\\x98E\\xbfPt\\xc0\\xd4\\xd6pT\\xbf\\x95%\\xf3\\xc9\\xb86w?\\xd8,\\xcfVR\\x11u?\\xc04\\x84\\xe2\\t\\xca\\x7f\\xbf/\\x84z\\x93\\xfd%\\x85?\\xc8\\xcd\\xbe\\x7f\\xb2\\xdd\\x80\\xbf\\x1cd\\xb8\\xdbF\\x93\\x8b?\\x86&%\\xfd{,w?\\x80\\xb7\\xa6\\xf0\\xde\\xf2@\\xbf\\x18 \\xbc\\xafJ\\xfah\\xbf\\x1b\\'\\x01-\\xda}\\x8b?\\xc09\\xeb\\xad\\xfa.t\\xbf8,.\\x8f&\\xbbv?\\xf0C\\xa5\\x17\\x9b\\xb0w?\\xc0y8;\\xc9\\xcb,?@\\xd8\\x94:\\xc4\\x066?@c\\x98\\x9dw\\xb2l? \\x1aos\\xd1\\xf9@?\\xa0}\\xb5\\xab!\\xf3a?\\xb5@\\xfbX\\xd9\\xb8r\\xbf\\x10\\r$x\\x99\\x9dD\\xbf`2\\xd7\\xca&\\x86a\\xbf\\x98\\xd9\\xcb\\x8dG\\x8fP\\xbf\\x98)\\xaa4\\xd4\\'[?\\xc0\\xbcn\\x9ek\\x18W?\\x14\\x98p\\xbeC\\xa6\\x88\\xbf\\xc0\\xe9b\\xf4aC=?\\x002\\xe3\"b\\x16$\\xbf\\xc8-\\x98|\\t\\x11\\x81\\xbfH\\xaf\\xa0\\xfc\\xb3\\x1bg\\xbf\\x18\\xeb\\x10L\\xb5\\xb8P?\\x1c\\n\\ngn\\xe2\\x8f?Hz\\x86\\x1a\\x89@l?\\x80\\xea\\x00\\x83\\xc0+\\xfb>\\x807\\xfe/%f$\\xbf4=\\x12\\xaf\\xf9\\xc9}\\xbf \\xca\\x9aRU\\xc9S?\\x10\\x03*i.\\xb0_\\xbf\\xa0&\\xb6\\xfa\\x1e{R?L!\\xd3y\\xabGI\\xbf\\x1eZ\\xc2\\x1d\\xf3\\x80u?`(\\xffv1\\xe2n\\xbf\\r\\x0c&\\x86\\xbc?s\\xbf\\xe8=\\t\\xc7\\xb9En?(_\\xb7\\xca\\x8d\\xb2s?x\\x93cl\\xf6\\xb2}\\xbfX\\x9bL\\x0e*Iy?\\xf0\\x02\\x17\\xa2\\xcb\\x94{\\xbf\\xb02\\\\\\x0bqNh?\\xc0\\xe0\\x11\\\\5hx\\xbft\"\\x7f\\xc0\\xca\\xdcy?\\xdf\\t\\xd8{F\\x17t?\\x80A\\xb9\\x1d7\\rb?\\x94\\x8e\\xe9\\x9e\\xffIu\\xbfL\\xd4\\x16\\x9cP\\xdd\\x85?\\xaf\\xb9\\x160\\xd8N\\x90\\xbfP\\xf2\\xa0\\xe9\\x82=h?\\xf09\\xd1\\x18/\\xb3\\x8a\\xbf\\xb0X&\\xd2\\xc3\\x9e\\x90\\xbf\\xc0@\\x1ds0\\xdai\\xbf\\x0eIVk\\xdc\\xa4\\x87\\xbf\\xd0?\\x17\\t\\xc2\\xb3i\\xbf\\\\\\xf9\\x18\\xe8\\xbes\\xb3\\xbf`\\x03l\\xa7\\xaf\\x8d\\x85?p\\x8e!\\x7fg\\xa1X\\xbf\\xe2\\xd1E\\xca\\xe7\\xb5\\xb4?\\xd6`\\xf8Q\\x804\\x94\\xbf\\xc8\\x83\\xa3\\x059\\x87\\x8d\\xbf\\xc0\\xd0*\\xef\\xc8\\x8d]?\\x98\\x16\\xdd<\\x0e\\x01\\x8e?\\x7f\\xe7\\xba\\xdb1{\\x9c\\xbf\\xcc[\\xa3\\x03T\\xe0\\xa0\\xbf\\xe0%%c\\xcc\\x02\\xa0?\\x13\\x04\\x98\\x89bN\\xa4\\xbf\\x18\\x0e1raT\\xaa?\\x10\\x0e7\\xc8\\xe3g\\x9f\\xbf\\x97h\\x04Z\\xd9S\\x8f\\xbfx\\xeb0\\xf18\\x87\\xa4?\\xb0^\\xd2\\x942\\xf6\\x82\\xbf\\x02\\xd7+k4\\xae\\x92\\xbf\\x08\\xa9_\\x1c>\\xe8\\xa5\\xbft\\xe5\\xdaN<\\x8b\\x84?\\x80\\x1f(]\\xc8X`?x\\xe5\\x074%\\xc5\\x81?\\n,H]X<\\x94?&\\xe7\\r\\xb4\\x1a\\x86\\x8a?\\xf0\\xe1\\x84\\xe7\\x973v\\xbf\\xfc,\\xa0hm1\\x95\\xbf\\xf0\\x85\\xecWV\\xacm?\\x00B\\xcf\\xcb\\x0b\\xdcH\\xbf`\\xacY\\xff\\xfa*k?\\x00\\x84\\xe2\\x81\\xe6\\xb3\\x0b?\\xe0|.\\xfa\\x119[\\xbf\\x10Y\\xcf\\x07d\\xa1{\\xbf]`/fz+\\x8e?\\x80\\r|T):a?\\x00\\x89d\\x08\\th\\r\\xbf\\x8c\\x029J\\xd8\\xc0{?\\x90\\xbcd>\\xc1im?\\xa0d\\xad\\xf3\\x96\\xc6Y\\xbf\\xb8\\x14\\x94i\\xc4\\xd7\\x90\\xbf \\xe8\\xf9\\x1a\\xbflB\\xbf\\xf2\\x896\\x01\\xc8\\xaba\\xbf\\x90\\x10\\x0b[\\xf7\\xbd\\x82\\xbfM\\xcf\\x96\\xad0q\\x86?\\x8aS\\x07u\\t\\xe3V?\\x80\\x05?\\xd9\\xfd\\xbb\\x1b\\xbf\\xbf\\xdb\\x19\\xb6\\xdf\\x9f|\\xbf*\\xda\\x86\\xacx#N?\\x1e\\x948P\\xda\\x94\\x93?\\xacQ\\xc7\\xf3q<g?\\xceU\\xbc\\x05\\'z\\x84?\\x86x\\xc1\\x8dd8j\\xbfT\\x14\\xaa\\xe3\\x14.|\\xbf2;\\x9fVg)\\x80?\\x88|\\x1a\\xd2(\\x18]\\xbf\\x02X\\xe7\\xc2\\x85\\'\\x90?#\\xa7c\\x93\\xf1\\xbc\\x8c\\xbfJ\\x03\\xac\\x91\\x00\\t\\x93\\xbf\\x98\\xeaK\\xbeP\\xc5q\\xbf}\\xd0$\\xbd[\\x1dq\\xbf\\xb8\\x10j\\x17\\xadHn?O\\xb8\\x8e\\xc1\\xcbJ\\x82?@<\\xf6\\x80k\\x1e>?\\xc7\\x03}~\\xcd{\\x88?\\xdc\\xdc\\x82\\xbcY1\\x82\\xbf\\x00WFF#\\xb6\\x9e?\\xde\\xe1\\xea\\xd9\\xa0\\x88r\\xbf\\xc5Y\\xc33\\xcb\\xe0y?\\xdc\\xa8\\xcc\\x00h-\\x92?v\\xbaD\\xe9\\xccs\\x83?r\\xbbP\\xbcM+\\x9b?n\\xb5\\xfd\\xd1\\xbf\\xa4\\xa8\\xbf\\x92\\xaf\\x89\\xe8Q\\xb8|?\\xd6`\\xf8Q\\x804\\x94\\xbfK\\x00\\xbe\\xc4E\\xfc\\xb1?d\\xdf\\xf1\\x881\\x17\\xa4?r%\\xa1\\x85g\\xacw\\xbf]\\xa7\\xfa\\xc7\\xda7\\x99\\xbf\\x8e\\xf5\\xf8\\xc9\\x03\\xb8\\xa2? M\\xb5\\xa6\\x06\\x84c\\xbf\\xf2d\\xfe\\xc8\\x8f\\x0f\\xa3\\xbf\\xb7\\xab:\\x19V\\xa7\\xac?\\x80-\\xbe\\xbf\\xa9\\xc0K?\\xb0\\x89A\\xc2\\xfb\\xed\\xa8?\\xca\\x07x\\x9f\\xdc\\x0c\\x87?\\xe00)\\xab\\x88\\xef\\x91\\xbfd\\xb7\\xa0\\xd6\\x10s\\x8a?m^\\xa0\\x88\\xb6s\\x92?\\xe06VN\\x85C\\x98?\\xf6\\xe8\\xc8hPq\\x84\\xbf<\\xa1\\xf3w\\x04m\\x95?\\xc0\\x8b\\xf2\\x15\\xc6_n?0 \\xc3\\xbb\\xceq\\x81?\\x0c\\xc2\\xc6\\x8f\\t\\xba\\x84? \\xc7\\x07\\xd3R-d\\xbf*<.\\x14\\xf1\\x10\\x83\\xbf\\\\1\\xf7\\x90\\x8f\\xc0\\x84\\xbfl<\\x1d\\x07<q|\\xbf\\x80!/\\x0f(u\\x85\\xbf\\xa0\\xa5!\\xc8\\xee\\xf6b\\xbf\\x1c\\xe1\\xe4\\xe8\\xd9\\x96~?h\\x9b\\xb4\\xee\\xec\\xd0\\x85?\\xc9\\xb7\\xb0\\xadfz\\x98?H\\xec\\xe6Z\\x85\\x1de?\\xb8\\xbc\\xb6E)\\xb8Q\\xbf\\x8a\\xe9\\x03\\xc4SJ\\x92?\\x9c!\\xf8g\\xd6\\xa1_?`P\\x8chn\\x9d*\\xbf\\xd2Oz\\xb6\\x8d_\\x9c\\xbf\\xa0\\xa9s\\x9ap\\xe82\\xbf\\xde\\x8f\\x1aY\\x1f\\x9a[\\xbf\\xecH\\x08.\\x15S\\x81\\xbf\\x13\\xad\\x19\\x87U\\xbf\\x82?\\x98\\xe8\\xd6{\\xc4\\xe7_?\\xa0\\x00\\x16#\\xb3\\xe2N\\xbf\\x00\\x90p\\x90\\xea\\xb5\\xc6\\xbej\\xfb\\xba\\xa6/\\xa3O?\\xb9i\\x8f9\\xef\\xc3\\x88?@\\x94\\xe8\\x10<\\x90J?s\\x0c\\xd6;\\x8c\\x9b}?x\\xdf\\xd6\\x06b\\x11j\\xbf\\xf8\\x0b^\\xd5\\x97\\xaak\\xbf\\xdd\\x0f\\x000b?y?<\\xfc\\x1a\\xa3\\xbd\\xd6]\\xbf\\xa0H\\x14\\x82\\x7f\\xbc\\x88?^\\xd8\\xc0\\xffP\\xbe\\x85\\xbf6\\xb9M8U\\x10\\x90\\xbf$\\x1f\\x95f\\xcdyX\\xbfQ\\x05m\\xb3\\xaa\\xd7w\\xbf\\x00P\\xd0u\\xfb\\xd0\\xef\\xbe\\xe0\\x85m\\xc2\\xff(s?\\x98\\x1ac\\xed\\x10xe?,\\x1f\\x1c\\x18\\xe3\\xf2\\x85? Co\\xeb\\x9f\\xb9t\\xbf3m\\xed^\\xab\\xa2\\x99?X\\xdd\\xfdU\\x85R\\x87?\\xd4|y [jv\\xbfH\\xfb\\xc2\\xd6\\x92\\x98\\x91?\\xd0\\xb9\\xbe\\xc91cY?\\x00\\xb1\\xaa\\xd2r<\\x93?\\xf6g\\x9d^<\\xea\\x9a\\xbf8y\\x16}\\x1f\\xd6W\\xbf\\xc4\\x83\\xa3\\x059\\x87\\x8d\\xbfd\\xdf\\xf1\\x881\\x17\\xa4?h\\xf8\\x16G\\x02\\xc5\\xb1?\\x80\\xa8[\\x89\\'\\x7f\\x14\\xbf\\xcf]\\xf5yl\\xfd\\x95\\xbf\\x82\\xed\\x8e^\\x8e\\xa7\\x94?`\\xa6\\xfc\\xba\\x10\\xb3\\x98\\xbf\\xf0>Hr\\xc9\\xd8\\x91\\xbf\\xa0\\xe2\\xb2(_\\x95\\x9c?\\x90\\xf3\\x80\\xc4\\xab:\\x9c?0~\\x15\\x8c\\x1c\\x9c\\x89? \\xc4\\x90\\x13\"r\\x84?\\xa0\\xf3\\x9bo8\\xaa\\xa4\\xbf\\xe0l\\x9b\\xe8\\xef\\x04\\x90?RJ\\xbc3\\x92\\xd4|?L\\x0c\\xa4\\x0c\\xc8X\\xa1?\\x02\\xb6y\\xc6\\xb1 \\x89\\xbf\\x901\\x19`\\xb6%p?b\\xc6O\\xdd\\xc01p?~\\xb8E\\xea\\xf3)\\x87?\\n\\xea\\x97\\xd9\\xfb4\\x85?\\xc4\\x18\\xb9w/\\xa9s\\xbf\\xc8\\xcb\\xe2\\x9f\\x80\\xc2\\x90\\xbfx\\xb7\\x7fW\\x0e1a\\xbf`!\\xee\\x1ddW|\\xbfP\\x00\\xc5y;:\\x81\\xbf0\\xcau!\\xa8\\x93V\\xbf\\xde\";d\\xf90\\x80?\\xd0*\\xf1\\x9e,\\x13\\x7f?\\xa0\\x7fuv\\x1035\\xbf\\xf4\\x92]TnPP?`\\xf7\\xca#\\xf4\\\\Q?\\x00%Q\\x06\\x88\\xe2V\\xbf\\xf2\\x91\\xc7;\\x8c@V?\\x1c>R\\xfeI\\xe8E?\\x98\\xcf\\x1f\\x95\\xe1\\x14e?\\xd1r\\x10\\x8be\\xc3b\\xbfT1}\\xb6\\x90($?\\x16\\xf7\\xd7\\xae7x^?\\x98\\xf3Vw~\\x9aC\\xbf\\x18U|;\\xbay \\xbf\\xe4\\xc2Dr\\xaa\\xf6c?4_\\x14\\x99\\x9f\\x0c\\\\?\\x9c\\x0c`\\xc3\\xd0\\x94E?2pX9\\xbf\\xe0[\\xbf\\xae\\xbd@\\xb94\\xbbl\\xbf\"\\xdd\\xf0r\\xa9\\xe6]\\xbf\\x10!\\x04\\x98\\xa9@=\\xbf\\xd0\\x072p\\x08\\xf4i?8\\xd0\\xe4\\xfba\\xdbT\\xbf\\xa0\\x90*\\xe5d\\xc3,?\\xa0l\\x1a\\x98\\x93\\xb6T?\\xa0\\x81\\xf8\\x08w?D\\xbf\\x18f4\\x8f\\x80\\xcdG?\\x8c\\xd2\\xc3\\x0c\\x91\\x11S\\xbf F,Q\\xcb`<?\\x00\\x88\\x82e\\xa7\\x94\\x19?p\\x90w)\\x88AU\\xbft\\xdfQ\\xa8\\\\Cr?\\xda\\xb4\\xeb\\x1f\\x1f-h\\xbf\\x08\\xe6\\xfc\\xe2\\xe0\\xccg\\xbf\\x80\\xac\\x9e\\xf2\\x0e\\'L\\xbf\\xd0:\\xfeW\\xc6\\xab4\\xbf\\xff\\xb9r\\x9f\\x11\\xfd\\x90?\\xfc\\x1f\\xc9\\x1a\\x1f6z\\xbf\\xe0d-\\xf9\\r\"a?\\x007N\\xee\\xf7D\\x89\\xbf s\\xcb\\x03e|m\\xbf`I\\xfd7\\x16\\x98E\\xbf\\xc0\\xd0*\\xef\\xc8\\x8d]?r%\\xa1\\x85g\\xacw\\xbf\\x80\\xa9[\\x89\\'\\x7f\\x14\\xbf\\x81Mq| R\\xa0?\\xc8\\xf9\\xf6x\\xa5k`\\xbf\\xc0;\\xeb\\xad/\\x15A\\xbf0~\\xaf\\xdb#\\xe9a\\xbf0\".A\\x1b\\xe9b?\\x0c\\t\\xdfzq\\xdaw\\xbf`\\x00\\xb7p\\x8d\\xd0o?4=V\\xf3\\xf5J\\x81\\xbf\\xf6\\xd3\\xdc_$\\x03c\\xbf\\xc0\\xc6\\xf2Q\\xa3Zi?\\x08hZ\\xd7\\x13\\xb9t\\xbf\\x89\\x17_Aq\\x06h\\xbf \\xd4\\xfe\\x05}5\\x89?*\\x11=\\x00\\xa8\\xa9z?\\xad\\x0b x\\xb0\\x14\\x8f\\xbfx]K\\x08\\xe7\\xb2]?\\xa0\\x89\\xf9\\x02\\xd6\\xe7=\\xbf\\xd5\\x1d\\xbeH\\xaa\\xc6\\x82\\xbf\\xc0g\\xad\\xf5|)$?\\x18\\xd1\\xd1\\xbf\\x96\\xaal?\\x0e\\xad\\xc0O\\xc4kr?\\x80b\\x9b\\x0bj\\xeb2?@\\xe3b\\x95n\\xeb`\\xbfh0V\\x05G\\x86^?\\x00y2veuC\\xbf\\x88F\\xd7\\xa3\\xc8\\xa0s?|(\\xd5o\\xa5S\\x8e\\xbfJ\\x14\\xd7`\\x93\\x1bb\\xbf \\x8ex\\xa6r\\xa7B?\\xac^Kvg\\xff\\x83\\xbf\\x98\\x10\\x99\\xc2\\xaa\\x14P\\xbf\\xb6\\x90\\xc5\\xef\\xe4\\xb9]?!8\\xf7\\x06\\xbd\\xc4\\x8e?p\\x8f\\xc09\\x84\\xa7J?\\x8c\\x91\\xda\\xf1b\\x9eT\\xbf\\xc4\\x0f|K\\xedRx?\\x12\\x8a1}\\x91\\x83y\\xbfG\\x00\\x18.\\x84\\xc1U\\xbf\\xe0\\xa63\\xa9\\xfd\\x955?\\xa2\\xc4\\xb2\\xdd\\x81\\xedl?o,\\xb5\\x0b\\x007>\\xbf\\x14\\xd3<\\x9b}f\\x80\\xbf\\x14\\xc5__\\xd6*e\\xbf\\xa6\\xa7\\x19\\x1bG\\xedo\\xbf\\x90\\x97 \\x06iJ[?,i\\xbf\\xd1\\x7fTq?0\\xb7\\x8a2\\x8e\\xe7o\\xbf*\\xa0\\xde^\\xef\\xddh?,\\t\\x8b1}\\x02\\x85\\xbf\\x18\"\\x90\\x82\\xce\\x98~?\\x1b\\xfb\\xc8%\\xf5\\xd8~?DS\\\\\\xca\\xe4\\x1fV?<\\x9d\\x05\\xc6*rl?\\x90XRa9\\x0cU\\xbfW\\x92H3\\xa7\\xc0v\\xbf\\x80\\xfb\\xdfH\"K(?H:{\\xdc\\xd8\\x90~\\xbf\\xee\\xd7$\\xe0+\\xfe\\x7f?U\\x1d\\x02\\x08\\xd7>\\x92\\xbfpb\\x07B-\\x8d~\\xbfD\\xee\\xbc2\\xd4\\xa0y\\xbf \\x01\\xbc`\\xf6o\\x81\\xbf\\x90\\x1a\\xde\\xcfw\\xffc\\xbf\\x7f\\xb4\\xc2G\\xe3X\\x94\\xbf\\x81\\x912\\xa6\\x81\\'\\x91?Pt\\xc0\\xd4\\xd6pT\\xbf\\x90\\x16\\xdd<\\x0e\\x01\\x8e?]\\xa7\\xfa\\xc7\\xda7\\x99\\xbf\\xcf]\\xf5yl\\xfd\\x95\\xbf\\xc8\\xf9\\xf6x\\xa5k`\\xbf\\x08nc\\xa5mz\\x96?\\xf4\\x7f\\xa0\\x04\\x9eL\\x90\\xbf\\x00\\xdaH\\xcf&\\x1f5\\xbf\\xa4\\x91\\xd5\\x8c\\x9a\\xeb\\x95?\\xcc\\x02\\xc5K\\xc7\\xe0\\x93\\xbfT\\xedQ1_\\n\\x81\\xbf<kt\\xa7\\xd2f\\x8e\\xbfW\\xf4\\xa2*\\xb4\\xa3\\x84\\xbf\\x10\\xd4&K\\xda\\xc8\\x95?>)\\xf7v\\x1c\\x0c\\x92\\xbfn\\xb8^+\\x13\\xba\\x86\\xbf\\xd0Q\\xfb>H\\x19\\x9b\\xbf\\xde\\xeb\\xdd\\x147\\n\\x8e?4=\\x82\\r\\xe9\\x96\\x82\\xbf\\x18\\xe0\\xd1\\'ogS\\xbf&{!\\xc2\\n\\xd5x\\xbf\\xe7T^\\xfb{z\\x83\\xbf\\x00G\\x97~s\\xa5\\x14?\\xe0\\x92<Z\\xbc\\x9b\\x81?x\\x1en\\x19\\r\\xa0p?\\x98\\xc3\\xae*\\x15\\xebi?(5=\\xab\\x802t?d\\x95H\\x1e\\x84\\x94c?h)\\x10\\xd3M\\xf8f\\xbf\\x10\\'*\\x03\\xc0:w\\xbfb\\x8aU\\x07\\x80\\xe5x?H^\\xc5Z\\xb5\\xc9\\\\\\xbf`O\\xcc\\xcd\\x1aNG?\\xc0\\xcf\\xcf\\xc0[\\xd2J?Jyd\\xf7\\xdb\\xb6a?\\xc3\\x81\\xa9W\\x1e\\xaae\\xbf\\xd6\\r\\xc2\\xc8\\xd0\\xc8\\x80\\xbf\\x80\\x87\\xfa>G\\x0e\\x0f\\xbf\\x10\\xa5\\xb6\\x1c\\x12\\xff\\x10\\xbf5\\xe96G\\x19\\x92{\\xbf\\x9e\\xf0\\x03\\xa8\\xe4\\n\\x87?\\xc8\\x91\\x85\\x9a\\xbbs1?Xe\\xad\\xd0+_j?\\x14j\\x80\\x13\\x0eH\\x8b\\xbfyQ\\xb6\\xf5\\x8e\\xbaS?\\xe75\\x9fy#\\n\\x88?\\xf2\\xa0\\xdevS\\xee|?\\x9a\\x07\\x89\\x93_\\xc2:?<\\xefs\\'|DY\\xbf\\x15\\xf4=[x\\x15\\x89\\xbfT\\xf3\\x11\\xfb-\\x0c\\x83?\\xb2\\x19\\x99\\xb2\\xfb\\xf9p\\xbf\\x01F\\x9d\\xb0\\x8d\\xe9\\x8c?\\x1c\\x84z\\xbd\\t\\xc6\\x85\\xbf\\x1aB\\x98\\xab \\xb6z\\xbf\\xb0\\xdc8[%\\xdf7?\\xec\\xd9p/\\x9f\\x12|\\xbf\\xf4\\xf5\\xf9}\\x83\\xfdq?\\x14\\x0c\\x1a\\x85\\xe4\\xbf\\x8a?\\x82\\xba\\x9e\\xc2(\\x04\\x7f\\xbf\\n\\xa6\\xec\\xad\\xb5\\xf5\\x90?b\\xc8\\x02\\x9a\\x1f\\x0b\\x89\\xbf\\xbf\\xa3\\x11\\x8d/\\xa9\\x95?\\x80\\xc2p6\\xa8\\xfc\\x83?\\x12\\xf10\\x14Qm\\x86\\xbf2\\x84\\xfc\\xbc\\x98;\\x8e?\"\\x0b\\x9f\\xc1\\xc9G\\x84?\\x80\\xd5\\x04\\x05u\\x8f\\xa5?\\x8dy\\xa1#\\xae%\\xa6\\xbf\\x95%\\xf3\\xc9\\xb86w?\\x7f\\xe7\\xba\\xdb1{\\x9c\\xbf\\x8e\\xf5\\xf8\\xc9\\x03\\xb8\\xa2?\\x82\\xed\\x8e^\\x8e\\xa7\\x94?\\xc0;\\xeb\\xad/\\x15A\\xbf\\xf4\\x7f\\xa0\\x04\\x9eL\\x90\\xbf\\xc7\\xd5;\\xc4\\xecI\\xb4?X\\x08\\xa6\\xba\\x02\\x06\\xa0?\\x1f:\\x98^\\xe0X\\xb2\\xbf\\x0fJ\\xba\\x8e\\xbf\\xb7\\xaa?\\xd0h\\x19\\x95\\xb4\\xe2f\\xbfVDe\\x99\\x9a0\\xa1?nhw\\xd0\\xa3Q\\xa8?J\\xb3\\x14\\xe7\\x99\\x99\\xb0\\xbfb\\xf0\\x1c\\x129\\x97\\x86\\xbf\\xf0\\xf3\\xde_\\x01\\'\\x95?`z\\xd0t\\x89\\xd3\\xad?\\x943p\\x88 \\x1c\\x90?\\xde+\\xc7e\\x18\\xab\\x9b\\xbf\\xdc\\xb3\\x18\\xdc\\xa5\\x96t\\xbf\\x08+?z\\xecR\\x8a\\xbfJ\\xd6\\xdfs\\xf5\\x06\\x97\\xbf\\x0c\\xda\\xdc\\xb8\\xf1\\xfcv?l\\x1b\\x95L\\xef8x?d]\\x83\\xae\\xefG~\\xbf\\x00Hg\\xbc=(\\x0f?\\xb4\\xc8B\\xc77H\\x88\\xbf\\\\\\xe3\\xa5\\x19\\xaaLr\\xbf\\x98\\x8d\\xabE\"\\x92a\\xbfh]\\xe4>$-\\x86?0h\\xd9Ppv|\\xbf\\xf0Q\\xca\\xe1\\x8aat\\xbf\\xa0\\x08\\xec\\xd9=\\x9bR\\xbf\\xe0\\x1aP\\xf3\\xb7\\xcbp\\xbf\\x003\\x81\\xae\\x822U\\xbf\\xf0\\xc0\\x1ckFVY\\xbf\\x98?j%\\xe6ms?HMpF\\xeb\\xdda?\\xb1\\xbd\\x18\\x16@\\xead?\\xaew\\xcaw\\xd7\\xf9w?\\\\\\xdb\\xd8\\\\\\x81>\\x80\\xbf&\\xe0L-\\xfa=e\\xbf\\xb0\\xebbSG\\x97`?\\xb8\\x97\\xc1\\'F\\x95f\\xbf}76\\x17`\\x82N?\\x866#j\\xd1\\x93\\x83\\xbf\\x9aH\\xe3\\x9d\\xb1\\xec\\x84?\\xb8K\"\\xa4rW|\\xbf@\\x84\\xbb\\xb0aNQ\\xbf\\xc0^\\x86\\t\\xd5RP? \\xd9cw\\x06`g?\\xcen\\xf6\\xba9\\xeeu\\xbf \\x88\\'m\\xe1\\x0fv\\xbf\\x00\\xa4e\\xec\\x90\\\\%?\\x92\\x90\\x9e\\x93\\xb8\\xc9\\x86?Xq\\\\\\xa4L\\xb0j?.\\xec\\x1a\\xc7\\x8a\\xe4k\\xbf\\xa0ju>\\xae\\x92u?x\\xfe(\\x0c\\xd6ir\\xbf(\\xb2jY\\x90\\xed\\x81\\xbf\\xc0\\xf3R\\xf5\\'\\xf8w? \\x19\\x9c\\x91\\x14\\x95Q?\\x80G\\xea\\x97w<C?\\x18 \"n\\xfa\\x92e\\xbf\\xc0\\x10\\x1b\\x8dfe}\\xbf\\xd8L\\xed\\xb5\\x01\\xaeo?pj\\xbeE\\x1b\\x1bk?\\x82\\xa0\\x044\\xday\\xad?\\xb0\\xdbO\\x02\\x15\\x14}\\xbf\\xe0,\\xcfVR\\x11u?\\xcc[\\xa3\\x03T\\xe0\\xa0\\xbf M\\xb5\\xa6\\x06\\x84c\\xbf`\\xa6\\xfc\\xba\\x10\\xb3\\x98\\xbf0~\\xaf\\xdb#\\xe9a\\xbf\\x00\\xdaH\\xcf&\\x1f5\\xbfX\\x08\\xa6\\xba\\x02\\x06\\xa0?\\xec_\\xcc\\x7f\\xd0\\xe3\\xb5?\\xf0\\\\\\x0c5\\xc8\\x1e\\x92\\xbf|\\x89(\\xa1\\xaejk?\\x8c\\r\\x99\\x9e\\x99M\\xa1\\xbf\\xd0e\\xb1\\xd8[\\xd4\\x8a\\xbf8e\\xcf\\xf8:.\\x7f? }TJ\\xae\\xa9\\x96?\\xb0\\xafy\\x1c\\x04x\\x9a\\xbf`\\xd5\\x0f\\xa1\\x18\\rw?\\x00\\x00%\\x84\\xe9\\xc4u\\xbf@\\x91m\\x92\\x88\\t\\x9f?0#:\\x9ddM\\x90\\xbfD13l\\x15\\xb0\\x81\\xbfV\\xac\\x0c-VS\\x9f\\xbf\\xf8S{\\x97\\xb3\\xfb}\\xbf\\xe8\\xfa[\\x8b{\\xbf\\x86?X S\\xfb:\\xac\\x97?\\xf0n\\x04v\\x05}x?\\x80\\x1a\\xbc\\xfe\\x07\\x17\\x82?\\xf0\\xdcFX\\'9\\x88?\\xa8\\x16\\xb9X=\\x9at?\\xc8\\x9fe4\\x9d\\x9e\\x8b\\xbf`\\x9f\\xf1\\x87\\x9e\\xe4\\x86\\xbf\\x00\\xc5[\\xcfz\\xc7=?\\xd0&\\xacs\\r\"h?0\\xe7S\\xc0\\xd5~f\\xbf\\xc0\\x1e\\'d_\\xc3[?\\x08\\xf2\\xbfK\\x9e\\xc2a\\xbf\\xb4c\\xc2\\x99Z\\x8dp?\\xe0\\xd0\\x83\\xc0\\x98\\x08f?\\x800B\\xd0\\x17\\x82-\\xbf\\xb6Q\\x92\\x14n\"d\\xbf\\xd89\\xeeGgmc?\\xd22\\x13\\xd7\\x02\\x9b\\x94\\xbf\\x80a(Hh \"?\\xf0\\xe1\\xba\\xd7\\xb4\\xcc\\x81\\xbfo\\x9d\\xa3\\xce\\x83\"\\x97? \\xb46U\\xc07M?\\x9e\\x91\\xb5;\\xdc\\xb4\\x86\\xbf\\x84\\xfcz\\xf8\\xb5z\\x81\\xbf\\xe8\\xa2\\xa4/\\x8e\\x96B\\xbfH\\x16\\xdc\\xca\\xcf\\x1bg\\xbf\\xf4o\\x10\\x82\\n\\xd7\\x96?J\\xf8G`\\xc9\\x1d\\x87\\xbf8\\xe1\\xbd~\\x91T{?x}p\\x1a\\x93W\\x96\\xbf\\x80\\x9d\\xe0\\x93{\\xf8N?\\x80XW\\xcc8\\x0eV?\\xf0\\xb2a\\xe72\\x1bU\\xbf,{\\xdfue\\xd8{?p\\xd39\\xcbeww?\\xd0]\\x03\\xe3\\xd0\\xa4\\x99\\xbfhU\\xe0\\xb7\\x1b\\x89\\x89?\\xe0\\xae\\x0b\\xb3H/\\x91\\xbf\\x15\\xb1Yd\\xdb\\xae\\x93?\\x00_\\xcf\\xa2\\x9c\\xa6=?\\x07u%\\x8b\\xa1\\x16\\x95\\xbf\\xdc\\xcb\\x03\\xbc_\\xbd\\x87?\\x9c\\x12_\\x06\\x1b\\xa5\\x93\\xbf0\\x13\\xaac{\\xbe\\x8c\\xbf\\xe2>\\x08|\\x8b5\\xa8\\xbf\\x8a\\x08\\x02W\\xec\\xf5\\xa5?\\xc04\\x84\\xe2\\t\\xca\\x7f\\xbf\\xe0%%c\\xcc\\x02\\xa0?\\xf0d\\xfe\\xc8\\x8f\\x0f\\xa3\\xbf\\xf0>Hr\\xc9\\xd8\\x91\\xbf0\".A\\x1b\\xe9b?\\xa4\\x91\\xd5\\x8c\\x9a\\xeb\\x95?\\x1f:\\x98^\\xe0X\\xb2\\xbf\\xf8\\\\\\x0c5\\xc8\\x1e\\x92\\xbf\\\\\\x0f\\x8e)\\xefV\\xc3?\\xba@\\xbej\\xd5\\xdf\\xa6\\xbfP\\x0cQN\\x97I\\x93\\xbf\\xae\\xcd>\\x80\\xff\\xf9\\xb7\\xbf\\xf4 \\xc2io\\xdc\\xab\\xbf\\xf8\\xb9\\x99\\x9dp\\xc8\\xb4?X\\xb9\\xe0\\x12\\xfa\\x92\\xad\\xbf\\x8c\\x86hx\\xbby\\x9c\\xbf\\xa0\\xc2\\x8c\\xbd\\x9ap\\xad\\xbfL\\xf4)K-\\x11\\xaa?xj\\xeb\\x88\\xae\\xc1\\x80?8\\xf7u\\x8a \\x91\\x87\\xbf\\xdc\\x81\\xcc\\x1d\\xde\\xed\\x82?Hv>\\x0f\\xb8\\x0b}\\xbf\\xd0\\n;\\x0e4U~?@\\xa6@\\xb2 ?W\\xbf@\\t\\xb3\\x80\\xdf\\x8f\\x87?\\xe0\\xcdc\\x10\\x97gr?\\xb0\\xf7\\x05\\xc6\\xfd\\x1c\\x94?\\x00\\xc9>\\x8cZ\\x8c\\x83?\\xc0t\\x01M\\xec\\x14t\\xbf\\xc0\\x95\\x92\\x03; \\x91\\xbf\\xbe\\xaav\\xce\\xb3\\x1a\\x85?\\x9ce\"\\x0b\\x06\\xc8J?\\xf2\\x1c\\x12\\xa2{\\xabh?\\xfc\\x01\\xb2yNE>?U@\\xe1\\x0e||}?\\x8c\\xb4\\xf4\\xfa\\x8d\\xbaE\\xbf\\xc1\\n\\xf5R\\x899\\x81\\xbf\\xc3C5\\xab0;k\\xbf^v\\xc5V\\xbe\\xc2n\\xbf\\x12\\xc8|\\xda\\x80b\\x80\\xbf\\xaf\\x89\\x91\\xde\\xf1\\x10\\x91?\\x80\\xc7\\xb1\\xbf\\xd4\\xecH?\\x94\\xefI\\xd5,]w?X\\x10\\x7f\\xcb\\x80\\x1b\\x86\\xbfE\\xd5\\xd7l\\xef\\xe9S?\\xc5\\xd0\\xfa\\\\\\xd1\\xa6\\x8b?6\\xa7\\xffb\\xb6\\x8aB?p\\xfb\\x06]\\xdb\\xc6\\x84?d$8\\xee\\x01\\x82X\\xbfb,\\xe1WG\\xe7\\x89\\xbfV\\x86\\x01\\\\\\xbc-\\x89?\\x16\\x92E\\x8d\\xd1\\\\i\\xbf\\xfff\\xb7\\xf6\\xe8\\xf8\\x91?8 b\\xf1\\x08\\xbe\\x84\\xbf\\xc3\\xd5\\xa5\\x9b\\xaf\\x10|\\xbf`_\\xd1\\xfa\\x0bq\\x83\\xbfp\\xa1\\xd2\\x9e\\x08\\xd4i\\xbf\\xb8w\\xb1!\\xd1\\x18e\\xbf8\\xa0S\\xc77=\\x91?\\xb3\\xec\\xd5{/\\xe2\\x81\\xbf\\xd6 \\xec\\xd9n\\x0e\\x8e?y\\x10\\xd4\\xaa+\\xce\\x81\\xbf\\x16&\\xf8\\x0c@\\xbb\\x99?\\xbcv\\x92\\x0e\\xb8L\\x83?\\x80_\\rgo\\x95\\x93?:l\\x84!\\xa5T\\x90?\\xd1MeA/Y\\x84?]i\\x81\\x9b\"\\xba\\xa2?Y\\xaf\\xb7\\x85\\x9fP\\xa1\\xbf.\\x84z\\x93\\xfd%\\x85?\\x13\\x04\\x98\\x89bN\\xa4\\xbf\\xb7\\xab:\\x19V\\xa7\\xac?\\xa0\\xe2\\xb2(_\\x95\\x9c?\\x0c\\t\\xdfzq\\xdaw\\xbf\\xcc\\x02\\xc5K\\xc7\\xe0\\x93\\xbf\\x0fJ\\xba\\x8e\\xbf\\xb7\\xaa?|\\x89(\\xa1\\xaejk?\\xba@\\xbej\\xd5\\xdf\\xa6\\xbf\\xaaZf\\x14\\x84v\\xbb?\\x8d\\t\\xd0T\\xc5\\xca\\xa2\\xbf\\xb6\\x8e\\xb3\\xa7\\xf0\\xf8\\xb6?\\xbe\\xe8\\x9b\\x9c\\x88W\\x90?\\xcf5\\x1b\\xed9~\\xb2\\xbf\\x98\\x9a\\x16\\x1e\\xb7\\x99G\\xbf\\x05\\xe3\\xcf*_\\xc3\\xaf?\\x9a;\\x12\\x0b\\x90\\r\\xb9?\\x8a\\xdd\\xa8>\\xf9{\\x8b?H\\xeb\\x19qj\\x91\\x89\\xbfn\\xcf\\xc5\\xc6\\x0cAz\\xbf\\x80uHv\\x1di\\x94\\xbf\\x04\\xc9\\x0be\\xd8\\x99\\xa8\\xbf>\\xb1Z\\x19\\xe5Ax?\\xd0\\xd19\\xd5T\\xa8\\x9b?\\xf6PW\\x8f\\x03q\\x90\\xbf \\xde\\xa7;Cs[\\xbf\\x18\\xfe)\\xc2\\xd2r\\x94\\xbf\\xf0\\\\\\xbfFW\\xae\\x05\\xbf\\xb3R\\xdeJ\\xa9\\x05r?\\xc0\\x91I\\xec\\xc6A\\x90?\\x80\\xd7\\x81.\\xbaz\\x84?@ps\\x10\\xbc\\x80a?@\\xa2[5\\x88\\x04\\\\\\xbf(r\\xb2\\xa3\\xe3\\xbd\\x82?\\xa0\\x9e\\xb5K\\x85\\xb0b\\xbf\\x00\\x8b\\xc7\\x8f\\\\\\xc3\\x05\\xbf\\x18\\x06\\x99\\xc0\\xe2t\\x88\\xbf\\xc8\\x9d\\xb2\\xaf\\x9f\\x1bh?\\xd4\\x8dDX,\\x94U?J\\x04\\xec\\x1f\\xf6\\xac\\x87\\xbf\\xa8O\\xeb((\\xfeq?\\xbfF\\xf6\\xbf\\xb6fq?\\xa0\\xd5\\xf9\\xf1\\x90\\xcaw\\xbf\\xd0q:Pi/q\\xbf\\x83=\\x1f\\xa9\\xc8zO\\xbf2\\xbf\\x14\\xf0&k\\x7f?\\xb0,%\\\\W\\xc8a?\\x9b\\xdf\\xa7O\\xff^>\\xbf\\x10\\x0e\\'U\\xb7\\xc1d?\\xc0\\xdbR\\x91\\x91YY\\xbf@\\xb8\\xb0\\xea\\xd2#E\\xbf\\xb8\\x98X\\xc5\\xfd\\xb2c?\\x88\\x19\\x94\\x80\\xbc\\x93\\x80?(\\x07\\xbe$\\x11\\x95p\\xbfZ\\xe6M\\x16e\\xae\\x8c\\xbf\\xdck)\\xe6\\x0eH\\x80?pZ\\n\\xf0\\x7f\\rZ\\xbf0(wP0_r?\\xd8\\x11\\xc9_\\xc5\\xbaq?\\x00\\xbd9\\xd3\\xcd5\\x84?\\xcc\\x19<\\x02C\\x95x\\xbf\\x08\\xec\\x98Z\\x05\\x19\\x87\\xbf@M\\xfb*\\xf2\\xb8w?D\\xfdW\\x06\\xbb\\xaae?\\xa8\\x9b$\\xd4^L\\x88\\xbf\\x1f\\xa3F\\x17\\x9d@\\x85?P\\x97\\x9d\\x12S\\x82u\\xbf4\\x99\\xe2\\xee\\x1b\\x07\\xa0\\xbf\\xc0}M\\x1e\\xc7\\x8bw\\xbf\\xc8\\xcd\\xbe\\x7f\\xb2\\xdd\\x80\\xbf\\x18\\x0e1raT\\xaa?\\x80-\\xbe\\xbf\\xa9\\xc0K?\\x90\\xf3\\x80\\xc4\\xab:\\x9c?`\\x00\\xb7p\\x8d\\xd0o?T\\xedQ1_\\n\\x81\\xbf\\xd0h\\x19\\x95\\xb4\\xe2f\\xbf\\x8c\\r\\x99\\x9e\\x99M\\xa1\\xbfP\\x0cQN\\x97I\\x93\\xbf\\x8d\\t\\xd0T\\xc5\\xca\\xa2\\xbf\\x8a\\x84\\xdf\\xa8\\xaf\\x91\\xb9?\\x98}:\\xc5m\\xe2\\x94\\xbf\\x1c\\x10\\xad\\xdc\\x04I|?\\x00\\xbdSs_\\xd2p?d\\xd0x\\xdf\\xf4\\x92\\xa0?2\\\\\\x07\\x9e\\xc4\\xb0\\x94\\xbf\\xa0X\\x14:\\xf1\\xc2\\x90\\xbf\\x90\\xc2\\t\\x8e3%\\x9c\\xbf\\x94L\\x8a\\x15Rh\\x83?\\xf6\\xaf#\\xca\\nn\\x92?[\\xc8\\x8d\\xaf\\'\\xa9\\xa0?[\\x19+B\\xec\\x1e\\x9f?\\xa4,\\xf4\\xae\\xe9|\\x89\\xbf\\x1aG\\x1aj\\x06\\x9c\\xa6\\xbf\\xb0o\\x17\\xc4\\xad\\x98r?\\xe0\\x98h\\xfb\\xe9}p\\xbf\\x00\\x06W\\x00Ac5?\\x00\\xbb\\xbal\\xec\\xf4S\\xbf\\x00V\\xc1p\\xe6\\xb3D?\\x00\\x04\\x00F\\x97\\xdcp\\xbf(\\xb6\\xf83\\'\\xe5x\\xbf\\xb0\\xf9\\xd5\\xec:QS\\xbf\\x08}\\xeb\\xbe\\xb9\\xe7w?\\xa0\\xc2A}\\xa6\\x00\\x81\\xbfn\\xca\\xff\\x88\\x7f\\xaby?\\xd8 \\xda4\\xe8mQ\\xbf\\xd8\\xe1\\x00* zx?\\xd0$\\x9b\\x98 \\xd1`\\xbfEp\\xbb\\xd2\\xfb\\x95p\\xbf\\x80bZ\\x90`6\\x16?\\xdd\\x99\\t\\x01\\xc7\\xea\\x94?\\xf0\\xea\\xc0\\x14\\xc3\\xeeD\\xbf\\x00l\\xeb\\xc8\\xff\\xa8\\x83?\\xfbRLi\\x1aQ\\x92\\xbf;/\\xdc\\x98\\xc0\\x93O\\xbfd\\xb9Cn}E\\x89?\\x00\\xbbc\\xcf\\x81x/\\xbfh\\xcc\\xcf\\xc1v\\xf4\\x84?P\\xc23\\xafo\\xf8p?\\xb0\\x17-b!\\xe8\\x94\\xbfnv\\xff*(\\xe6\\x8a?`DL\\x1a=\\xc4e\\xbf@\\xa9\\xe2\\xdc_`\\x93?\\x90`@k\\x84\\xcae?\\xc0\\xa0U\\x1cR\\xb71\\xbfX\\x888>\\xbe\\xb1\\x81\\xbf\\xa0\\x16\\xba\\xd6U\"!\\xbf\\xf8`4\\xe20&\\x8a\\xbf.m\\x13\\xc1\\x84\\xe9\\x99?Hq\\xa4E\\xf5\\x0c\\x8f\\xbf\\x16\\t\\xe8\\xb5\\x86\\xf6\\x82?R\\x8fN\\x0f\\xb5\\xcc\\x87\\xbf\\xe0\\xa4\\x1a\\xce\\x19\\x14k\\xbf>\\x95\\x978\\x03K\\x8e?\\xe9\\xe7 \\xc8\\xc9\\x16\\x9b?\\xe4\\xdc;\\x82d\\xdf\\x89?0\\x87*uE\\xa0\\x8c?\\xb4.5\\xe4\\xe6\\xe1\\x98?\\x84\\x9fk\\x00\\xd8\\xb5\\x95\\xbf\\x1cd\\xb8\\xdbF\\x93\\x8b?\\x10\\x0e7\\xc8\\xe3g\\x9f\\xbf\\xb0\\x89A\\xc2\\xfb\\xed\\xa8?(~\\x15\\x8c\\x1c\\x9c\\x89?2=V\\xf3\\xf5J\\x81\\xbf<kt\\xa7\\xd2f\\x8e\\xbfVDe\\x99\\x9a0\\xa1?\\xd0e\\xb1\\xd8[\\xd4\\x8a\\xbf\\xae\\xcd>\\x80\\xff\\xf9\\xb7\\xbf\\xb6\\x8e\\xb3\\xa7\\xf0\\xf8\\xb6?\\x98}:\\xc5m\\xe2\\x94\\xbfe\\x05&\\xba\\xd8\\xf6\\xc2?Y\\xe4\\xf9h\\xea\\x11\\x99?0\\x0f\\xdd\\xdb\\xe2R\\xae\\xbf4\\x1c\\xc8\\x9eR6\\xa8?I\\xa3S\\xd8\\x187\\xad?\\xd08\\xe1P\\xad\\\\\\xb2?\\xee\\xa8/\\x1d\\x17\\x1b\\xa6\\xbf\\xe0\\xed\\x9dnz\\xaf\\x85?@\\xfe /\\xb5\\xa7z?6\\x00]\\x1a\\xa4\\xc6\\x90\\xbf\\xf2\\xe5\\x03\\xae\\xa5\\xca\\x9b\\xbfp\\x19D\\xf7\\xe1\\xcfw\\xbf\\x18\\xb3\\x91Z\\x1b0\\x95?N\\x18\\x9ec\\x0b@\\x95\\xbf@vV\\xb3f]g\\xbf\\x08\\xdf\\xc3\\xc3\\xf1\\x08\\x97\\xbf\\xc0Ds,g\\x1ed\\xbf\\x90\\xe9W\\x97\\xaew\\x80?\\xe8\\x87\\xb9L\\x96\\'\\x93? \\xedH\\xfai\\xceE?`\\x08s\\xf0x\\x84\\x10\\xbf\\x80\\x1e\\x8fRo\\x1cE?\\x00\\xbfl\\xc7\\xfa\\x8d\\r?\\x02L2\\xa2\\xbc\\xc4V\\xbf\\xd4m\\x0b\\xb8,^n\\xbfq\\xa8C\\x9d\\xa1)t\\xbf\"\\xb2\\xcc\\xa6\\xaf\\xc2D\\xbfJ\\xd5I\\xf4\\xe3\\xd4A?\\x84\\xfa\\t\\xc4\\xe5\\xc6[?,\\xaf&\\xcb\\x81\\x1c}?`\\x86\\x97\\xca\\x12m[\\xbf7\\xb76\\xd2EEs?n\\'G\\x9c5\\xa8}\\xbf\\\\\\rC?\\x9bt8\\xbf9\\xd30Fs\\x81\\x88?\\x9a\\xd2\\xb4\\xea\\x82\\x8df?\\x0ee{\\x91$\\xefc?\\x92L\\x1f\\x87\\x8b\\xc5W?\\x8a\\xa1\\x0f\\xd5\\xbf+\\x87\\xbf*\\x0e\\xce\\x1b\\xe8\\x9bu?p\\x03\\xc6\\t\\xff\\xe0f\\xbfd\\xf8\\x1d\\x80\\x1f\\xd8\\x85?\\x8cY\\xeb\\xa8~Zi?y\\x83\\x02\\xc2;*n\\xbft\\x10\\xd0\\x1cl\\xf8M?%\\x9f\\xe8\\xc2#\\xcdi\\xbfp\\x93\\xf5\\x00\\x05Jw\\xbf{M\\xf7\\xf6{\\xf9\\x86?\\xe2\\x1c \\xe7o\\x06\\x81\\xbf%\\xf25\\xf7\\xee\\x9dx?\\xc20U\\x90\\xe1\\xb5\\x88\\xbf`3\\xbd\\x8eo\\xa0E\\xbf\\xfb\\xd7c\\xe0\\x07\\xd2\\x8f?.h3Vo\\x17~\\xbf\\xe2\\x84\\'\\xe9d&\\x7f?\\xdb\\xc8K9n\\x80\\x83?#\\x9f\\xa8\\x8c\\xc05\\x90?\\x15\\xef\\x9dXn&\\x8a\\xbf\\x86&%\\xfd{,w?\\x97h\\x04Z\\xd9S\\x8f\\xbf\\xca\\x07x\\x9f\\xdc\\x0c\\x87?\\x1e\\xc4\\x90\\x13\"r\\x84?\\xf6\\xd3\\xdc_$\\x03c\\xbfV\\xf4\\xa2*\\xb4\\xa3\\x84\\xbfnhw\\xd0\\xa3Q\\xa8?2e\\xcf\\xf8:.\\x7f?\\xf6 \\xc2io\\xdc\\xab\\xbf\\xbf\\xe8\\x9b\\x9c\\x88W\\x90?\\x1c\\x10\\xad\\xdc\\x04I|?Y\\xe4\\xf9h\\xea\\x11\\x99?@\\xe5\\xa7\\x16\"9\\xc0?\\xbc\\xfb?\\x8f\\xefz\\xaa\\xbfr\\xe5\\xfd\\x8b\\x1d\\n\\x82?Pku\\x9e-<\\xaa?\\\\\\x08\\xf4\\xeeY%\\xa1?0\\x80\\xd8\\xae7\\xae\\x94\\xbf\\\\t_\\x8b\\xafV\\xaf?iR\\xaeC\\xe7\\xcbt\\xbfL\\xc6\\xfe\\xeb\\xebIi?u6\\xc9%\"Q\\xa7?\\x1cq\\xdf\\x95\\xadQ~?\\xf2\\t\\xd1\\x19\\x9b\\x90\\x82\\xbf\\xfeE@T\\xd4\\x97\\x93\\xbf.Pr1_,t\\xbfH\\xed\\xa1\\x16\\xea`o\\xbf\\xe0\\xa02\\xd9J\\xfd\\x8c\\xbfdb\\xaf\\x7f\\x86\\x9ah?\\x9a\\xa1:\\xcb\\r\\x1f\\x82?`k\\xfa\\xb4:\\x14t?\\x18\\xbfe\\'8\\xf5\\x85?@BK$!\\x0fw\\xbf`\\xe3\\xc3\\x03\\xc6\\x18s\\xbf \\x01i\\xa6\\xa9(Q\\xbf\\x08\\x7fc>6Av?0:\\x87\\xda\\xfa\\xe9\\x85?\\x18b\\x1d\\xe9i\\x99y\\xbfh\\x1d\"\\xb9\\xe7\\xb5X?\\xd6.\\xab\\xd3\\xd0\\x1b\\x88\\xbf\\xa8\\x10\\xd9\\xcd\\xb5\\xcb\\x9e\\xbf\\x00\\x9a\\xb3\\xde?!g?\\x18\\xaf\\xda\\xbe\\x16\\x00\\x8e\\xbf\\xa9\\\\\\xc4\\xb5\\x8f\\x10\\xa3?@\\xfc\\x10\\xd2y\\x04\\'\\xbfz\\xe0,k\\xbf\\xaa\\x90\\xbf\\x90\\xe2\\xcb\\xbfQ\\xe6{\\xbf=\\x9bM&\\xb8\\xe5h\\xbf\\x00\\x98\\xf2zB\\xe3+?\\xe8{\\xcbtr\\xe1\\xa3?\\xe8]\\x99\\x12\\xb8\\xb9\\x84\\xbf\\x88\\x05\\xad\\x94B\\xb3\\x82?\\x80d\\xff\\x05+2\\x99\\xbf \\xa2t\\xeb\\x12\\xf3p\\xbf@du\\xd4\\xd6\\xe3b?\\x00\\xea3\\xb2\\xc7y]\\xbf\\xa0\\x1dC\\xc2\\xfe\\x17u?8QB\\xf1E\\x97\\x96?\\xa4q\\xa9\\x08A\\x8e\\xa2\\xbf\\xc0\\xaa\\xd6\\x0f\\xa7}t?\\xc4\\x1e\\x0e\\x03l\\xfb\\x98\\xbf8\\x9f\\x85<@\\xb5\\x83?@e.\\xe4\\xf1\\xe0\\x81?>[\\xef\\x89+\\xb8\\xa1\\xbf0\\xfa]\\xf0\\x06\\x1eq\\xbf\\xde\\x1c\\x8c\\xa4\\xde\\x0c\\x90\\xbf\\x80?\\x85\\xee&\\x1dc?\\xc8\\t\\n\\x1f\\xb2K\\xa7\\xbfp\\x80\\xfb\\x9d=S\\x91?\\x80\\xb7\\xa6\\xf0\\xde\\xf2@\\xbfx\\xeb0\\xf18\\x87\\xa4?\\xe00)\\xab\\x88\\xef\\x91\\xbf\\xa0\\xf3\\x9bo8\\xaa\\xa4\\xbf\\xc0\\xc6\\xf2Q\\xa3Zi?\\x10\\xd4&K\\xda\\xc8\\x95?J\\xb3\\x14\\xe7\\x99\\x99\\xb0\\xbf }TJ\\xae\\xa9\\x96?\\x08\\xba\\x99\\x9dp\\xc8\\xb4?\\xcf5\\x1b\\xed9~\\xb2\\xbf\\x00\\xbdSs_\\xd2p?0\\x0f\\xdd\\xdb\\xe2R\\xae\\xbf\\xba\\xfb?\\x8f\\xefz\\xaa\\xbf\\xee\\xc0\\x83\\xdc\\xa5:\\xdb?,f7\\x15`g\\xbc\\xbf<\\xd8e-\\xe7\\xc9\\xa7\\xbfP\\x00\\xa8p9\\x17\\xd6\\xbfD\\xe7pY@Q\\xb7?\\x90\\xb3\\xe1\\xc6\\x11k\\xb6?\\x90\\x9e\\x9e\\xb7\\xd7_\\xa2?\\xc0\\xc7\\x82\\x9b\\xcc\\xebr\\xbf\\xe4\\xd9:\\x9a\\xc8\\xfc\\xb0?\\x98\\xea\\x9b\\xbf\\x84T\\x9f\\xbf\\x00\\xffd{J/W?`\\xf8O\\\\\\xfd\"\\x8d?\\xa0\\xb6\\xd2\\xc3\\xb9N\\x83?hg\\x1d\"(\\xe9\\xaa?\\x80\\xd0\\xb0\\xc1\\x84\\xa2\\x83?\\xe0ms\\x04\\x17{\\x8a\\xbfX|\\xe5\\x18\\xd8b\\xa2\\xbf\\x00\\xec\\xc0\\xd2\\xff\\x884?\\x98\\xac\\x92\\xdf\\x97\\x0fb\\xbf\\x08y\\xac\\xef\\xa30e?HY\\xe3l\\x81\\x90v?@o\\xd9*\\x80\\xde4\\xbf\\x98\\xf4\\xf2+.\\x15Q\\xbf\\x80K\\x99\\xe0\\x8a\\xe8{\\xbf\\xb0\\x06Y\\xca\\x88\\xcfa?&v\\xb3d\\x06)U?\\xb4\\x0b\\xa0R\\xb2`h\\xbf\\x0f \\x12Ms2\\x8e?|Gy\\x9d\\x00N[?@\\xd7\\x03\\x17\\xfe\\xed2\\xbf\\xce:k\\xa0\\xa4\\xfb\\x91\\xbf V\\xd1\\x95\\xab:i\\xbf\\xc7\\xd9.\\x953\\xaes?H\\xe6\\xc7\\x968/o?\\xe0\\xcfS\\x86\\'\\xccH?\\x9c\\xac.`\\xc6Bp?B/\\xac\\xe8%-\\x91\\xbf\\xa0\\xe6\\xb3\\x04\\xc8\\xc8S?\\xcc\\xa2\\x9f\\xbd-\\xbbr\\xbf\\x04Y\\xa1Na\\x0e\\x8f?h\\rQ\\x9f\\xccf|?\\xd0\\x9e/\\xa1,\\xd5r\\xbfP\\x7f\\xd4\\xf0\\x7f\\xbbQ?\\x1aM\\x87\\x13\\x80\\xc5a\\xbf\\x98\\xb8K\\xdc\\xbbz\\x81\\xbf][\\x80S\\xc5!\\x93?\\x90\\xc3\\xd0\\x1e\\xb1(f?\\xd0\\t`U\\x82Cn?\\n\\xa9\\x951z\\x93\\x8b\\xbfh\\xe5\\x03\\xd7\\xc4\\x93\\x8b\\xbf\\x13\\x01\\xc3$\\x9f\\x01\\x8e?\\xd6\\xbf\\x04\\x8c\\xb4\\xe5\\x7f?\\xedP\\xca\\nW\\xe4\\x8d?\\x88E\\x16\\x8a\\x0f2v\\xbf\\xfa\\x11\\xecNa\\x1c\\x91?\\xe0!\\xf6\\xaf\\xecqv\\xbf\\x08 \\xbc\\xafJ\\xfah\\xbf\\xb0^\\xd2\\x942\\xf6\\x82\\xbfd\\xb7\\xa0\\xd6\\x10s\\x8a?\\xe0l\\x9b\\xe8\\xef\\x04\\x90?\\x08hZ\\xd7\\x13\\xb9t\\xbf>)\\xf7v\\x1c\\x0c\\x92\\xbfb\\xf0\\x1c\\x129\\x97\\x86\\xbf\\xb0\\xafy\\x1c\\x04x\\x9a\\xbfX\\xb9\\xe0\\x12\\xfa\\x92\\xad\\xbf\\xa0\\x9a\\x16\\x1e\\xb7\\x99G\\xbf`\\xd0x\\xdf\\xf4\\x92\\xa0?4\\x1c\\xc8\\x9eR6\\xa8?r\\xe5\\xfd\\x8b\\x1d\\n\\x82?,f7\\x15`g\\xbc\\xbf\\xc8\\x95\\x94\\x8cIh\\xc0?\\xacPg\\xbf}E\\x91?\\xf4+_\\xe2\\xab\\xbc\\xba?b\\xa6t\\x9dQO\\xbd\\xbf\\xe6o<\\x08\\x16!\\xa6? \\xc2\\x88aI t?W\\xefU\\n\\x040\\xa0?\\xa8q\\x8a\\xc2O\\xa5\\xa1?0\\xe9\\xf3\\xe6\\xc0F`?\\x84\\xeeQ\\xf0Y\\x00\\x9b\\xbf \\x02\\xaa\\xa0\\x82\\xfa~\\xbf$e)\\x94\\xf8\\xf5\\x85\\xbf\\x10\\x15\\xf4\\x1b\\x84\\x06\\x8e\\xbf\\x98\\xe1\\xd4:@=s\\xbf\\xcc\\xf7`\\xa0Q\\x14\\x88?\\xe0\\x95\\xff\\xb6c\\xe1\\x82?,M\\xc8-\\x0c\\x8cn?\\x00\\xef\\n\\xa5\\x19I(?\\xd1u\\xa1\\xf2\\xdf\\x0el?\\x07r\\xa4*\\xe7\\xd4b?\\x01\\xa5\\x8d\\x9a\\xbdaW?a\\x8a\\x1c\\x85iEF?h\\xa5\\xfd\\xc2\\x94\\xc7k\\xbf\\x1ab\\x87\\xb6J\\x8cS\\xbf >\\xbd4\\xa2sb\\xbf\\x0c4tD \\xa4:\\xbf\\xbc\\xef\\xe8\\xc6Z\\xf8s?\\xb2\\xb3`\\xc36\\x15E\\xbf\\xfb&\\xd6^\\x0b\\xe0l?\\xeeY\\x16\\x8d\\xef\\x17w\\xbfT\\xe4\\xbf\\x8f\\xfa\\x03:\\xbf\\x1c\\x94=\\xd15\\xe4\\x80?\\x12\\xf7\\x959\\x0f\\xf1]?\\xa9\\xfcE\\x12\\xe88]?N\\x905^%\\x96a?&\\x03d`go\\x81\\xbf\\xeep\\xac\\xe8R\\xbcz?\\xf0h\\x8c\\xd0\\x96\\xc5]\\xbfp\\x1e\\xc4\\xb8Y\\xa6\\x83?\\x0c\\x1b\\xec\\x1b\\xad\\xb1E\\xbf\\xa0\\x0fDA\\xa9\\xc6\\x03?@\\x8f\\xe1\\xe6\\x16\\x03q\\xbf\\x01dZh%Tf\\xbf2\\xc0e\\xce\\xbeX\\x7f\\xbf\\xeb\\xbc\\xaad\\x18\\x0f\\x87?8\\x15\\xdc\\xe1\\xfe\\x13\\x83\\xbf\\x92\\x001y7\\x0bo?h\\xd3\\x858\\x02\\x95~\\xbf\\x161\\xe4W\\xecG\\x84?\\xacf\\xdf\\x93\\x19-\\x8d?T\\xc1\\x0f\\x83\\xe4\\x83\\x8e?x\\xdf6\\xb6l,\\x83?\\')\\x96\\x1b\\x87pt?,)-\\x88&Y\\x90?\\x1do\\xcd<N\\x10|\\xbf\\x1c\\'\\x01-\\xda}\\x8b?\\x02\\xd7+k4\\xae\\x92\\xbfm^\\xa0\\x88\\xb6s\\x92?RJ\\xbc3\\x92\\xd4|?\\x89\\x17_Aq\\x06h\\xbfn\\xb8^+\\x13\\xba\\x86\\xbf\\xf0\\xf3\\xde_\\x01\\'\\x95?^\\xd5\\x0f\\xa1\\x18\\rw?\\x8c\\x86hx\\xbby\\x9c\\xbf\\x06\\xe3\\xcf*_\\xc3\\xaf?0\\\\\\x07\\x9e\\xc4\\xb0\\x94\\xbfG\\xa3S\\xd8\\x187\\xad?Pku\\x9e-<\\xaa?>\\xd8e-\\xe7\\xc9\\xa7\\xbf\\xacPg\\xbf}E\\x91?\\xeax\\x90\\xd1\\x8c7\\xbf?\\xf4\\xb9\\x1e\\xba\\x11Y\\xb0?\\xb2K<Z\\x1clT?*\\xa9\\x04\\xb9\\xb1\\xb8\\xa8?\\x84\\xe4\\xec\\xff\\xc1\\xefG\\xbf\\xb4\\x15\\xc1\\xf0\\xa5\\x8d`?\\xe7\\t\\x12\\xe8\\x06h\\xa6?\\xea\\x8a\\xd6M\\xa1\\x95{?\\x1c&*\\x88\\xcc\\xfaz?\\xb3_vO\\xd3\\xd8\\x8f\\xbfC@\\x83\\xf1\\xb9\\x99p\\xbf\\xcf\\x07\\xb2\\xeety\\x80\\xbfft\\xea\\xaf\\xfe_{\\xbf*\\xb7Z\\x86\\xff\\\\\\x80?t\\x87\\xbb\\x9d:+w?\\x80V*\\x94\\x94$b?`)\\x19o\\xbc\\x18\\x83\\xbf@.\\xf4{,\\xb2w?`\\xfb\\xa4\\x90\\xc5\\xf7p?\\xb0#E09\\xe5\\x81?\\xb8m\\xe3\\xc3u\\x98{\\xbf`\\x7f\\x0e\\x19\\xdf\\x91\\x8a\\xbf\\x80\\xcb\\xcdx\\n\\x0f[\\xbf\\x00\\xb1\\xdc\\xce\\xd0\\xbes\\xbf:b3\\xd9a\\xec\\x8d?\\xc87f\\x18\\xa8\\x05\\xa3?\\x00\\xc1p\\x05.\\xd3e\\xbf0^\\x11\\x8fN8\\x96?\\x8dU\\xf3\\xa6Z\\x10\\xa3\\xbfn\\x93\\xbd\\xbfQ}e?\\x1cr\\x81\\x1c\\'M\\x8c?\\xc0\\xf3+\\x90\\x80\\x83h\\xbf{,k\\x07\\x02\\x96\\x80?\\x00\\x90_\\xc8\\xd0\\xe8=\\xbf\\xf8\\x9e\\x92Q}\\xa9\\xa3\\xbf(d\\xedf\\xb0\\x03\\x8c?\\x04\\xa4Pv\\x7f\\x9d\\x8e\\xbf\\xccb\\x10\"\\x95\\x81\\xa3?\\xa0\\xf1\\x86\\x00\\xaayq?@\\xf4\\x10\\x88\\xf2\\xf3V\\xbf }\\x92\\xec\\x01k\\x82\\xbf\\xa0\\xc9\\xb1\\xbb\\xf2\\xf1l\\xbf\\xf0\\xeef\\xd9x\\xe1\\x86\\xbf\\x14\\xfc\\x818\\x8d\\xbb\\xa6?@\\xfby\\x8a\\xf0\\xa3c\\xbf\\xf8\\xb3\\'GAZ\\x91?\\xa0y\\x0eht\\xb9\\x9d\\xbf\\x00\\xb46\\xee|\\xabC\\xbf\\xb5N+\\xb5\\xb49\\xa5?\\xff\\xeb\\xb9;\\xb7\\xe7\\xa0?x\\xe6a\\xbe8\\xa2\\x8c?\\x00\\x82R\\xf0\\xf9\\xe6g?Hg\\xba\\xdfW\\xf7\\xa2? \\xca\\x81\\xed\\xf2\\x1d\\x8c\\xbf\\xc09\\xeb\\xad\\xfa.t\\xbf\\x08\\xa9_\\x1c>\\xe8\\xa5\\xbf\\xe06VN\\x85C\\x98?T\\x0c\\xa4\\x0c\\xc8X\\xa1? \\xd4\\xfe\\x05}5\\x89?\\xd0Q\\xfb>H\\x19\\x9b\\xbf`z\\xd0t\\x89\\xd3\\xad?\\x00\\x00%\\x84\\xe9\\xc4u\\xbf\\x80\\xc2\\x8c\\xbd\\x9ap\\xad\\xbf\\x9a;\\x12\\x0b\\x90\\r\\xb9?\\xc0X\\x14:\\xf1\\xc2\\x90\\xbf\\xd08\\xe1P\\xad\\\\\\xb2?\\\\\\x08\\xf4\\xeeY%\\xa1?P\\x00\\xa8p9\\x17\\xd6\\xbf\\xf4+_\\xe2\\xab\\xbc\\xba?\\xf4\\xb9\\x1e\\xba\\x11Y\\xb0?\\xa6\\xa5E\\xd4\\xba\\xd3\\xdd?\\xe0x\\x87U\\x97\\x12\\xb6\\xbf\\x8a\\xb4\\x98\\xb9;V\\xb5\\xbf\\xe8T\\x9auP\\xa7\\xa4\\xbf0.\\xe6\\xd5Vc\\x8f\\xbf4\\xe0\\xbd\\x1a\\xba\\x8e\\xbd\\xbf\\xf8\\xfd\\xf1t\\r\\x1e\\xaa?\\xa0\\x99<:0\\xa7\\x81?@\\xf0l\\xef\\xa0\\x9a\\x8c\\xbf\\x00H \\x13\\xcb|>\\xbf0\\xb2s,\\xe06\\xa5\\xbf\\x80R\\xea\\x8d\\x96\\x1df? \\xf7D\\xa1\\x9e\\xbcy\\xbf\\xa8\\xc9$\\x83\\x1a\\xe7\\xa1?\\x80\\xca\\x99\\xd3\\xe6\\xdc ?0;a?\\xd9NY?@\\xdf\\xa9\\n7\\xf7_\\xbf\\xdcW>\\x7f\\x9d\\xbdt\\xbf\\xf0W\\xb3\\xa5\\xacw:?P\\r\\xd4\\tR\\x19\\\\?l&\\xa6\\xc9\\xeaL~?\\xd8`\\x85\\xef\\xeaqO\\xbf\\x00\\x04\\x12\\xaf7\\x99:\\xbf\\xf8\\x0c^#\\xa3\\xcfP?\\x9f\\x0f\\xd8\\xa7\\xed>\\x90\\xbfr9\\xfe\\xbb\\xda\\xf4V\\xbf\\x00\\xf0\\xbe\\xbb\\x8b\\xd9\\xd5\\xbe\\'\\xd7c\\x1c\\xde?\\x8f?.\\x17\\x98\\xc2\\x96\\x18j?\\x0b$\\x1e\\x9c^\\x0bo\\xbf`\\x07\\x1aU!82\\xbf\\xd7C_|\\x1d\\xa3t\\xbfP\\x04\\x10\\xf2\\x94\\xdbp\\xbf@<\\xe2\\xa5~\\xf5\\x91?\\xe4\\xbf\\xb2\\xe3\\xec\\xf3d\\xbfJ\\x98\\xa7\\xc0\\xab[q?@630\\xa9\\x0e\\x8d\\xbf\\xf6c$<\\x9f#\\x83\\xbf|\\x19\\xe6<\\xe3Sn?\\xe0\\xd1\\xfb\\xc1h\\xab4?\\xa0\\xe8\\xf0.j\\xd75\\xbf\\xe4\\xb7\\xcaZ\\xcdT\\x84?\\xfc\\xed\\xc9\\xf0\\xd3\\xf6\\x94\\xbfxJ\\x01~B\\xbdd?\\xdc,o\\x1e\\xf7{s\\xbf\\x12\\xc2\\xd7CT\\xa7\\x8b?\\x80X|p~\\x1e\\x90?7\\xec\\t\\xa2\\xdd\\x04\\x8f\\xbf\\x96\\xce\\xfc\\x08y\\x92\\x83\\xbf\\x8ey\\x07\\x81\\x12\\xb1\\x85\\xbf\\xd8\\xe8s\\xb6[3k?\\xd0OQ\\xd8>q\\x7f\\xbf\\xa0I3\\xab\\x86\\xd5h\\xbf8,.\\x8f&\\xbbv?t\\xe5\\xdaN<\\x8b\\x84?\\xf6\\xe8\\xc8hPq\\x84\\xbf\\x02\\xb6y\\xc6\\xb1 \\x89\\xbf.\\x11=\\x00\\xa8\\xa9z?\\xde\\xeb\\xdd\\x147\\n\\x8e?\\x943p\\x88 \\x1c\\x90?@\\x91m\\x92\\x88\\t\\x9f?L\\xf4)K-\\x11\\xaa?\\x8a\\xdd\\xa8>\\xf9{\\x8b?\\x90\\xc2\\t\\x8e3%\\x9c\\xbf\\xee\\xa8/\\x1d\\x17\\x1b\\xa6\\xbf,\\x80\\xd8\\xae7\\xae\\x94\\xbfL\\xe7pY@Q\\xb7?b\\xa6t\\x9dQO\\xbd\\xbf\\xb2K<Z\\x1clT?\\xe4x\\x87U\\x97\\x12\\xb6\\xbfX\\xb3,\\x89J\\xab\\xc0?\\xd2\\xcc\\xe1s\\xf7\\x98\\xa5\\xbf\\xe09W\\xc6\\x9bSD\\xbf\\x14\\xed\\x18\\x11\\xa5D\\x99\\xbf*\\xbd\\xe4\\xa7\\x99\\xb8\\xa5\\xbf U5\\xb5#\\xfcM\\xbf\\xd9.\\xa24<\\x9f\\xa0?P\\xc1\\xb8\\x05\\xca,{?\\x80\\x1a\\x14a\\xad\"\\x82?\\x087\\\\\\x82L\\xef\\x85?\\x18G\\x01|\\x9bM}?\\x9cgi\\x05\\xa6\\xf2\\x81\\xbf\\x0c\\x0b\\xf3\\xfe}\\xdf\\x87\\xbf\\x041\\xfd\\x1c\\xcf\\xec}?y\\x0e\\xe5\\x1ex\\xf0u?@\\xed\\x8dz \\xa0-\\xbf\\xa8\\x97\\x16\\x909@u?\\x0b.\\xae/\\xddth\\xbf,f\\x87\\xb18\\xdcS? &\\xa0\\x00\\xd9\\xb1\\x80\\xbf\\xd8\\xdc\\xef<y0I\\xbf\\x88>\\xa5\\x9a\\x8a\\xb57\\xbf\\x80\\xe0|\\x9b\\x19\\x83\\x81\\xbf\\xa73\\xf9\\x8a\\x9a\\x97q\\xbf\\xc2?\\xdbD+}Q?W\\x83>\\'\\xc7&\\x80\\xbf\\x96S\\x9eL\\xf4dz?Y=o\\xd3\\xd6\\xede\\xbf0}Ep\\xa0d\\x86?(z`\\t\\xfc\\xefP?\\x1b\\xfb\\xc8\"\\xa9\\xf0L?\\xbeJ+\\xbd\\xa1\\x02`?\\xc4h\\x05\\xd1\\x08\\xc5p?\\xf6F\\xbc=>\\xefl\\xbf|\\x82>n\\xd1\\xe7W?\\xf8x\\xedI\\x90\\xeca?P\\xf5K\\x85+\\xc2b?\\xa7\"Y\\x88\\xcf\\x99\\x88\\xbf\\x1c\\xd1\\xd1\\x9b}\\xffT\\xbf\\xc8\\x0fL\\'\\x01C[\\xbf\\xc0\\xce.\\x90f\\x013?H\\xe3+\\x94\\xc4\\xd0l\\xbf\\xa8\\x9e\\x9e\\xcdRQp?Z!\\xee\\t+\\xa3}\\xbf\\x10\\xcc\\x92\\x11REw\\xbfP\\x1c\\x05Q\\x192X?\\xe6P\\x88#u\\xa2u\\xbfl\\xfa\\x18\\x00\\xb0\\x9dj?\\n\\x82\\xfc\\xea\\\\}\\x84?8\\xd7\\xc4\\x83x\\x08c\\xbf\\xd0\\t\\x9bx!ud\\xbf \\x7f\\xdb\\x8b\\x04J~\\xbf\\xf0C\\xa5\\x17\\x9b\\xb0w?\\x80\\x1f(]\\xc8X`?=\\xa1\\xf3w\\x04m\\x95?\\x8c1\\x19`\\xb6%p?\\xad\\x0b x\\xb0\\x14\\x8f\\xbf4=\\x82\\r\\xe9\\x96\\x82\\xbf\\xde+\\xc7e\\x18\\xab\\x9b\\xbf0#:\\x9ddM\\x90\\xbfxj\\xeb\\x88\\xae\\xc1\\x80?H\\xeb\\x19qj\\x91\\x89\\xbf\\x94L\\x8a\\x15Rh\\x83?\\xe0\\xed\\x9dnz\\xaf\\x85?\\\\t_\\x8b\\xafV\\xaf?\\x90\\xb3\\xe1\\xc6\\x11k\\xb6?\\xe6o<\\x08\\x16!\\xa6?,\\xa9\\x04\\xb9\\xb1\\xb8\\xa8?\\x8a\\xb4\\x98\\xb9;V\\xb5\\xbf\\xd2\\xcc\\xe1s\\xf7\\x98\\xa5\\xbf\\xa6\\xa5Q*\\xfb\\xa0\\xc6?F\\xf4cN:p\\x8e?D\\xd6\\xbd\\\\\\xdfp\\xa6?(\\xd2\\xd2H\\x1d\\xde\\xbd?,\\x1a\\xed\\xeei?t\\xbf\\n\\xact\\xef\\xda\\xd8\\x9c\\xbf\\x18\\x9a\\x000\\xb2g\\x98\\xbf\\xdb8\\xb3\\r\\xc0Z\\x8c\\xbf\\x943\\x1f\\xce\\xb2\"\\x87?H\\xf9f3\\xd9Y\\x87\\xbf\\x0e\\xaf\\xb5\\x8a\\x08\\n\\x8d?@\\xb2\\t\\xafN@}\\xbf\\x80\\xd4\\x0c\\xf3\\xfc\\xa6Z?\\xecp\\x02\\xa1?\\xb4a?\\xa0\\xc5\\x15R\\xafc4?\\x80\\xa2\\xac\\xe0=\\xdd4\\xbf@\\xdbo\\x19\\xb1\\xb6\\x1a?\"\\x19\\xca\\xb0t\\nS?\\x10F{_2\\xedU?\\xa0q\\xc0e\\xe6lH\\xbf\\xcd\\xc9\\xc0\\xbd\\xbd\\xb8F?\\x86J\\x05\\x11\\xc6Cf\\xbfX&\\t\\x85\\xfb\\x8fO\\xbf\\xe2\\xecx$\\x85\\xebE?p,\\x19\\xce\\xdf\\x1bO?\\t\\t\\xe8YeDq?T\\xe0G%#\\xc46\\xbf\\xe05\\x82(M\\'0\\xbf\\x80\\xd1$\\xd4\\xb1\\xee.\\xbf\\x0cb\\xe4f.\\x9c\\x04\\xbf\\xa86\\xf6\\xc3\\xef\\xd8H?\\xc8\\xcbF\\xa2\\xb3\\xf3j?\\xf8\\xf6N\\xde\\x1f\\x0eV?\\x08\\xb8P\\x19\\xdb\\x9aQ?\\x80{\\xfc\\xb7\\xaf++\\xbf\\x80\\x86\\xc7\\x93\\xc0\\x0eW\\xbfX\\x98\\xff\\xb4sZ^\\xbf\\xc0*oO\\x11\\xebA?\\xf0)\\xd1I\\xd0\\xc9$\\xbf@$\\xce\\x8b\\xa2\\xf1>?\\xe0\\xf4B\\x88\\x0e5A\\xbf\\x00\\x1fh\\xd9#\\xdc%?Nq(\\x8f:Db\\xbf\\xc8\\x95\\xda\\xa9\\xd91V\\xbf\\xe0\\x0e\\xf8h\\xfb\\xc6G?D0\"\\x9aA\\xdfo\\xbf\\xb4\\x88\\xf7\\x1fb\\xe3t\\xbf\\x94Yw\\xc0\\x80iX?\\xc0\\xd7\\xc4\\xe8v3H?@|\\xb8\\x9a\\x80N\\x80\\xbf\\x00NO\\x8cAjp\\xbf\\xc0y8;\\xc9\\xcb,?x\\xe5\\x074%\\xc5\\x81?\\xc0\\x8b\\xf2\\x15\\xc6_n?b\\xc6O\\xdd\\xc01p?x]K\\x08\\xe7\\xb2]?\\x18\\xe0\\xd1\\'ogS\\xbf\\xdc\\xb3\\x18\\xdc\\xa5\\x96t\\xbf<13l\\x15\\xb0\\x81\\xbf8\\xf7u\\x8a \\x91\\x87\\xbfn\\xcf\\xc5\\xc6\\x0cAz\\xbf\\xf4\\xaf#\\xca\\nn\\x92?8\\xfe /\\xb5\\xa7z?iR\\xaeC\\xe7\\xcbt\\xbf\\x94\\x9e\\x9e\\xb7\\xd7_\\xa2?\\x18\\xc2\\x88aI t?\\x84\\xe4\\xec\\xff\\xc1\\xefG\\xbf\\xe8T\\x9auP\\xa7\\xa4\\xbf\\xe09W\\xc6\\x9bSD\\xbfJ\\xf4cN:p\\x8e?\\x80\\xd1^$Y\\x07\\x98?N1\\xe0{hk\\x86?\\x90_\\xd6\\xee+\\x18\\x92? \\xf3$[:\\xa7\\x91\\xbf\\x14b-\\xa2#\\xaf\\x85\\xbf4\\xec\\xfd\\x82\\xdb\\xb0t\\xbfdD\\xf61vkv\\xbf\\x80(pl\\xednf\\xbf&\\xa4,I\\xce\\x8dx\\xbf\\x04\\xf0\\x02\\x19u\\x1cv?\\x10W\\x90;;\\rl?J\\x9c\\x96\\x96\\xeb\\x81\\x83?\\x16\\xff/%\\x7f\\x9co?$g\\xfa\\x0fjKh\\xbf\\xce\\xb9\\x08\\x91\\xb8!\\x84?\\xe8e\\x83\\x1b\\x92\\xfee\\xbfRa?\\xabO#c?\\x13\\x03u\\xab\\xf4\\xb0\\x8b\\xbf d\\x7f\\x94r\\x16E?j\\xb5\\xd3tt~@\\xbfF\\x9a{\\x04\\xd3\\xe8|\\xbf\\x00^\\xea\\x88\\xbeK3?\\x16/\\xfe1\\x1e\\xb7e?\\x8a\\xe0d !\\xf0\\x82\\xbfZe\\xdb\\x1d\\x07\\xbdk?\\x96\\x84\\xf0\\xcf\\xefyO\\xbf+\\x88\\xfc\\xba(\\xa9\\x84?\\xa0>\\xa6\\xb56\\\\2\\xbf\\x9ct\\xf4 V\\xc9T?p\\\\\\xc3\\xe8\\x01\\x89C?\\xf0a\\x94L\\x0e\\x1bh?l\\xaa\\rw\\xcc[e\\xbf3n\\xae\\xf2Fkj?h\\x1f)fp\\xe7e?v\\xca\\xe6\\x97\\xf1|x\\xbfs5\\xd2\\xd9\\xed\\xc6\\x87\\xbf\\x0ej\\x19g3Ba?\\xf4\\xab\\x1f\\x01\\xa1\\x10R\\xbf \\xd9\\xedty\\xa7Q?\\xa0\\xac\\x89$G\\xa8]\\xbf\\x8cV\\xdf\\xd1\\x0c\\tr?4\\xa9\\xc9\\xcd\\x04iP\\xbf\\xbc% \\x14-\\\\a\\xbfF>\\xea\\x00J+\\x90?\\xa5\\xddA\"_ws\\xbfZ\\xaa+\\xcc\\xb2\\x8ey\\xbfC._I\\x94\\xf6p?\\xf0\\xed\\xa5^\\xba\\x0f_\\xbf\\xae\\xcfU\\x00h\\xec\\x96\\xbf4\\x01\\xd0\\xf2\\x03\\xe2~\\xbf@\\xd8\\x94:\\xc4\\x066?\\x06,H]X<\\x94?0 \\xc3\\xbb\\xceq\\x81?~\\xb8E\\xea\\xf3)\\x87?\\xa0\\x89\\xf9\\x02\\xd6\\xe7=\\xbf${!\\xc2\\n\\xd5x\\xbf\\x08+?z\\xecR\\x8a\\xbfV\\xac\\x0c-VS\\x9f\\xbf\\xdc\\x81\\xcc\\x1d\\xde\\xed\\x82?\\x80uHv\\x1di\\x94\\xbf]\\xc8\\x8d\\xaf\\'\\xa9\\xa0?6\\x00]\\x1a\\xa4\\xc6\\x90\\xbfP\\xc6\\xfe\\xeb\\xebIi?\\xc0\\xc7\\x82\\x9b\\xcc\\xebr\\xbfW\\xefU\\n\\x040\\xa0?\\xb4\\x15\\xc1\\xf0\\xa5\\x8d`?0.\\xe6\\xd5Vc\\x8f\\xbf\\x14\\xed\\x18\\x11\\xa5D\\x99\\xbfD\\xd6\\xbd\\\\\\xdfp\\xa6?N1\\xe0{hk\\x86?\\x8e\\xd0\\xd6\\x01M\\x9d\\xbc?\\x88\\x15$\\x19\\r\\xce\\xa8?H\\xa4A\\xb4)ib?rz?\\xe9\\t\\x9e\\xb9\\xbf\\x00C\\xc8\\xceK\\x05\\x80\\xbf\\x8c\\xb0\\xb0\\x81ot\\x86\\xbfH;\\xec\\xcb\\x8a\\x8b|\\xbf\\\\Z\\n\\x11\\xb4\\x86x\\xbf8L\\xc5x\\x05[\\x85?\\x9c\\xfa\\x84\\xff\\x96\\x17\\x81?\\x08g\\x0b>\\x0fx}?\\x86\\x05\\x0f\"\\x13\\xe5f?\\xfc\\x8b\\xd67\\xd3\\x9dh\\xbfd\\x18\\x9e#\\x13+\\x85? \\xc4a2\\xdd\\xed{\\xbf\\x18\\x94i\\x91\\x8dCD\\xbf\\x9a\\xa4\\xbb\\xea8\\xc8\\x88\\xbfV\\x16\\x0f\\x19T\\x04d?`t\\x80W]\\xd9i?\\x80\\x00\\x0cp}\\xb9\\x00?\\xcaq\\t\\x06_\\x08\\x80\\xbf\\x0c\\x00\\xe5\\xa8k;C\\xbf\"\\x1d\\x02YySy\\xbfc\\xd9\\xe8H\\xa1\\xe5\\x80?LZ\\xb9\\xbd\\xad\\x1d^\\xbfV\\xd6\\xf1\\xc8G\\xecr?h\\x92\\xf6s|\\xd5o?\\xb9\\xa5\\x12\\xe9\\xa9\\x0f_\\xbf\\x0c\\xb3\\xee\\xf2>eS?\\x00\\x02\\x9a\\x05\\xf26r?\\x08G\\x96iv\\xd7g\\xbf~\\x10\\x9c)ryd?p\\x97N\\xbf\\xe5\\x8dT\\xbf c\\x08\\xd3\\xd2\\xcdE?\\x06o\\x18H\\xf6o\\x84\\xbf[?\\xeb\\x91RTx?\\xa5\\xe8)\\xd9SDg\\xbf\\x18Z9\\xae\\x1e(k\\xbf\\xa2;\\xa4\\'\\n\\xdfw\\xbf\\xa0E\\xf8\\xd9G\\x1eK\\xbfR\\x83\\xcc\\x1bY\\xc3h\\xbf\\x90/{\\xa4\\xfe\\x04P\\xbf\\xc8R\\xc4^#\\x17c?<\\xb0\\n\\x16\\xfb\\x0f\\x83\\xbf\\xa6pZ\\xd6L\\x99\\x91\\xbf\\x041\\x0b~0hq?\\x04F\\xdf\\xc0<Gb\\xbf\\xeaU\\x14\\x8a\\x99a\\x80\\xbf\\x1c6Ap+-\\x7f\\xbf8c\\x98\\x9dw\\xb2l?\"\\xe7\\r\\xb4\\x1a\\x86\\x8a?\\x0e\\xc2\\xc6\\x8f\\t\\xba\\x84?\\x0b\\xea\\x97\\xd9\\xfb4\\x85?\\xd7\\x1d\\xbeH\\xaa\\xc6\\x82\\xbf\\xe7T^\\xfb{z\\x83\\xbfJ\\xd6\\xdfs\\xf5\\x06\\x97\\xbf\\xf8S{\\x97\\xb3\\xfb}\\xbfHv>\\x0f\\xb8\\x0b}\\xbf\\x04\\xc9\\x0be\\xd8\\x99\\xa8\\xbf[\\x19+B\\xec\\x1e\\x9f?\\xf2\\xe5\\x03\\xae\\xa5\\xca\\x9b\\xbfu6\\xc9%\"Q\\xa7?\\xe2\\xd9:\\x9a\\xc8\\xfc\\xb0?\\xa9q\\x8a\\xc2O\\xa5\\xa1?\\xe7\\t\\x12\\xe8\\x06h\\xa6?4\\xe0\\xbd\\x1a\\xba\\x8e\\xbd\\xbf*\\xbd\\xe4\\xa7\\x99\\xb8\\xa5\\xbf(\\xd2\\xd2H\\x1d\\xde\\xbd?\\x90_\\xd6\\xee+\\x18\\x92?\\x88\\x15$\\x19\\r\\xce\\xa8?\\x05\\xb4>\\xea\\x86i\\xc8?\\xa4h\\xa6\\x13\\x98\\xac\\x8c\\xbf\\xaa\\x94\\x17\\x87\\xfc\\x11\\xaf\\xbf@\\x00\\xd3\\xe2d\\xd4_\\xbf\\xc8\\xdb\\x86\\xb9\\x908\\x89\\xbfL\\x08\\xcf\\x10\\x89\\xd8\\x8e?\\xc2=\\xd4\\xb7\\x9c\\x05\\x93\\xbf\\x8e\\xe16\\xc2\\x07\\xc7\\x8f?x3\\x91\\xb3\\xcd\\xd4w\\xbf\\x10\\xdc`R\\xd4~[\\xbfZ;\\xd0\\x1a\\x80\\xcdc\\xbf\\xb0\\x88\\xa1\\xf5\\xe7_@\\xbf\\xe0XP\\x9a,\\x99M?P\\x07\\xea\\x96%g3\\xbf\\x84\\'\\xdd\\xbb\\xe3\\x83S\\xbf\\x98\\xe0;\\xbf]\\x98`\\xbf\\xe8\\xecg \\xf7GM?\\xb3\\xd6\\xa1\\xec\\xa7\\xe5F\\xbfl\\xd9WD\\xc9\\xa1n?\\x00\\xa0w\\xac+)$?\\xd0c\\x99}\\xd7%J\\xbf@^e\\xe8.=)?\\xba\\xc89\\xae.\\xect\\xbf\\xd0\\x03\\xe7\\xd8\\xf1\\x1d@?\\xc4%\\xbc\\xa5>\\x86\\\\?P\\xcfDC\\x8dQC?\\x1f\\x9f\\x1fJ\\x1f\\xc1D\\xbf\\xc0\\x14\\xb8\\x12\\xa8s=\\xbf\\xd8\\x83\\\\\\x82\\x90\\x80l\\xbf\\x80\\x15\\xbfq\\xa6\\tV\\xbf\\xacR+\\xf1`$d\\xbfPF\\xc2-\\xdb\\x1dW?\\x00V\\x7f\\xd0\\xc7\\xb2U?\\xc0\\x17\\xd9\\xa9\\xc4dK?@\\x05\\xb7_\\x8cs)\\xbf\\xd8\\xd3O\\x94\\xec\\xd61\\xbf\\x80\\x03Xq=\\x859?H\\xcfL\\xe1\\xf9?U?`\\x89L\\xe4ClF?@\\xc6\\x873\\x90ES?\\xb8\\xd3m\\xe1\\xb8wS\\xbf@\\xcb\\xcb\\xc3v\\x0bA\\xbf\\xe5\\x14_\\xaa\\xef\\xf3s?y\"!b\\xd8\\xe9r?\\x10?j\\xc2\\x87EV\\xbf\\x00\\x0c\\xdbp]\\xe4\\xf3>\\x0c\\xb4\\xd4\\x9a\\x83\\x18~?\\xc0\\xc5{\\x03\\xcf\\xa9Y? \\x1aos\\xd1\\xf9@?\\xe8\\xe1\\x84\\xe7\\x973v\\xbf\\x10\\xc7\\x07\\xd3R-d\\xbf\\xc4\\x18\\xb9w/\\xa9s\\xbf\\xc0g\\xad\\xf5|)$?\\x00G\\x97~s\\xa5\\x14?\\x0c\\xda\\xdc\\xb8\\xf1\\xfcv?\\xe8\\xfa[\\x8b{\\xbf\\x86?\\xd0\\n;\\x0e4U~?=\\xb1Z\\x19\\xe5Ax?\\xac,\\xf4\\xae\\xe9|\\x89\\xbfp\\x19D\\xf7\\xe1\\xcfw\\xbf\\x18q\\xdf\\x95\\xadQ~?\\x98\\xea\\x9b\\xbf\\x84T\\x9f\\xbf0\\xe9\\xf3\\xe6\\xc0F`?\\xea\\x8a\\xd6M\\xa1\\x95{?\\xf8\\xfd\\xf1t\\r\\x1e\\xaa?\\x00U5\\xb5#\\xfcM\\xbf,\\x1a\\xed\\xeei?t\\xbf \\xf3$[:\\xa7\\x91\\xbf8\\xa4A\\xb4)ib?\\xa4h\\xa6\\x13\\x98\\xac\\x8c\\xbf%\\xdf\\x8a\\xc2G\\x01\\x96?\\xe0m\\xed\\x01UwF\\xbf\\xc0\\x9a\\xfd\\xf2\\xdb8[?x\\xa3\\xa4\\xa6\\x00\\x1fn?@\\x1c\\xb6e\\xd8F_?\\xdeR\\xab\\xd2\\xfe\\xa1u?\\xd0V`\\xfc!Hv\\xbf\\x80\\xa1\\xc3\\xb4\\xa4=a\\xbf\\xf0\\xcf\\xfe\\x7fE\\x99\\x87\\xbft:!CK\\xdae\\xbf\\xe2\\xaf\\xee\\x04c\\x91q?]d\\xdb\\x8a\\xaf\\x7f\\x8b\\xbf\\xee\\xe0Y_\\x94\\xf1j?\\x12\\xb3\\x9ef\\x90VV\\xbf\\xe7G\\xeb\\xf1\\xe1e\\x94?\\xd8Q\\x97\\xd8\\x1e\\x1d[\\xbf\\xa9\\x82\\xfa\\xb8\\x83\\xf6S?\\xfc\\xd1/\\xb4r\\xeeo?\\xc0\\xac\\x96\\xdb\\xf5\\x8bK\\xbf>\\x14,\\xe3\\xdai_\\xbf\\x01IT:~\\x90~?\\x80\\xc5\\xee\\xe14\\x87_\\xbf\\xb3\\xd4\\xcd\\xbb\\xd2k5?\\xbdF\\xfa8\\xbc\\xb4\\x80\\xbf i\\xa2,\\xfb\\x1cC\\xbfe3\\xb6yn\\xd1i\\xbf\\x00\\x98S\\x1a\\xba\\x04\\x12?\\x00\\x90/1\\x91z\\xd7>\\x80\\x9f\\xc4\\xda\\xe7{+\\xbf\\x18U\\xafA\\xd5\\x9dP\\xbf\\xc0\\xddh\\xaa$\\x8dn\\xbf`\"S&\\x90\\xf4y?\\xf9\\xdb\\x0e\\x07,\\xe5\\x88?x\\x95<\\xe3x\\x1cm\\xbf`;!\\'|\\x8dX?\\xe0\\x86\\n\\xe0-\\xe9T\\xbfHGHv\\xafqS\\xbf\\x80\\xf70\\x1e\\x82N4?\\x90\\x92\\xb4yKXV\\xbfE\\xc6\\x89\\xf7\\xce\\x14s?\\xdac\\x96l\\xc6\\x89\\x92\\xbf\\x13v!*\\xfe\\x01s?u\\x8e\\x98\\x10:\\xae\\x83?\\xa4;\\'D( w\\xbf\\x00\\xf2\\xe7,X\\x01T?~P>R\\x10\\x89\\x92?\\xa8\\x91\\x12\\xc0\\x87\\x8br?\\xa0}\\xb5\\xab!\\xf3a?\\x00-\\xa0hm1\\x95\\xbf*<.\\x14\\xf1\\x10\\x83\\xbf\\xc8\\xcb\\xe2\\x9f\\x80\\xc2\\x90\\xbf\\x18\\xd1\\xd1\\xbf\\x96\\xaal?\\xe0\\x92<Z\\xbc\\x9b\\x81?l\\x1b\\x95L\\xef8x?X S\\xfb:\\xac\\x97?@\\xa6@\\xb2 ?W\\xbf\\xd0\\xd19\\xd5T\\xa8\\x9b?\\x1aG\\x1aj\\x06\\x9c\\xa6\\xbf\\x1a\\xb3\\x91Z\\x1b0\\x95?\\xf0\\t\\xd1\\x19\\x9b\\x90\\x82\\xbf\\x00\\xffd{J/W?\\x84\\xeeQ\\xf0Y\\x00\\x9b\\xbf\\x1d&*\\x88\\xcc\\xfaz?\\xa0\\x99<:0\\xa7\\x81?\\xda.\\xa24<\\x9f\\xa0?\\n\\xact\\xef\\xda\\xd8\\x9c\\xbf\\x14b-\\xa2#\\xaf\\x85\\xbfrz?\\xe9\\t\\x9e\\xb9\\xbf\\xaa\\x94\\x17\\x87\\xfc\\x11\\xaf\\xbf n\\xed\\x01UwF\\xbf\\xe2\\xf8\\x1e\\xd3\\xbe\\xca\\xbe?\\xd0,`\\x14V\\x99p?l\\xd9^J8\\xd2\\x7f?`\\xe6\\x8c?\\xd2\\xb9^?t\\x97\\x80R-\\xb5|?\\xb44\\xe9\\xe92>w\\xbf\\x10\\xae\\xde\\x98\\n{\\x83\\xbf0\\xb1\\xd8b\\x08\\xd0X\\xbf\\xb0\\xb2\\\\\\xd4E V\\xbf\\x88\\x9f\\xf3\\xf3\\xbbjP\\xbf\\x80\\xa3\\xc7\\xe4.PA?@\\xe3\\x0c\\x9c\\x8d,8\\xbf\\xc4Wk\\x15\\x9c\\x1aF?\\x90\\xc8\\x9e\\x8e\\xff\\xb5Z?\\x00~\\xf7^4\\xbf/?\\rJ;Qx\\xe9I?P\\xdd\\x97\\xcf\\x9e\\x13D?D14\\xb7\\xcd3o\\xbf0\\x8e\\x06Z\\xa1\\xd4-?\\xdc\\x13;\\xd8\\x12\"a\\xbf\\xa2Kq\\xf0r.a?\\x00\\x90\\xb3\\x15\\xdcr\\xe8>\\x1a6\\xea\\xea\\xe6b\\x81\\xbf\\xc0l\\x94P\\xb8S*\\xbf\\xceP\\xca]\\x08Db\\xbf@\\xeb\\x13Og\\xf3\\x13\\xbfX\\x1cV\\xb0\\xdaUm?P*\\x8ec\\xfe\\x81g\\xbf\\xa0#j\\xa8.GJ?\\x00\\xed\\xff\\xf6y\\xe8r\\xbf@n\\xe5\\xd3\\xd48D?h\\x9d\\x8cr\\xc5\\x1ag?\\xdcB\\rR0NV?0\\xaa\\x8c\\x85\\x1f#>?\\xf08k\\xbc6`U?\\xe0\\x82sV1\\xcft\\xbf\\xc8\\xe3\\x92}D^m?\\x1c\\xa2\\xf3w_\\xcbf\\xbf\\x0c\\x12\\xf2x\\xdfej?\\xc0\\x1d\\x93\\x88\\x16\\x9dn\\xbf\\x8a\\xa8\\xcacd\\x03{\\xbf\\x9aK\\xc0\\xbe\\x90\\xaek\\xbf\\xf4\\xe3\\xbe\\xe1\\xe7ld\\xbf\\xf0\\tk\\xf45\\x8fe\\xbf\\xc0\\x0e\\xfb6\\x97\\xf0Y\\xbf\\x14%<.zmt?\\xb5@\\xfbX\\xd9\\xb8r\\xbf\\xf0\\x85\\xecWV\\xacm?\\\\1\\xf7\\x90\\x8f\\xc0\\x84\\xbfx\\xb7\\x7fW\\x0e1a\\xbf\\x0e\\xad\\xc0O\\xc4kr?x\\x1en\\x19\\r\\xa0p?d]\\x83\\xae\\xefG~\\xbf\\xf0n\\x04v\\x05}x?@\\t\\xb3\\x80\\xdf\\x8f\\x87?\\xf6PW\\x8f\\x03q\\x90\\xbf\\xa8o\\x17\\xc4\\xad\\x98r?J\\x18\\x9ec\\x0b@\\x95\\xbf\\xfeE@T\\xd4\\x97\\x93\\xbf`\\xf8O\\\\\\xfd\"\\x8d? \\x02\\xaa\\xa0\\x82\\xfa~\\xbf\\xb3_vO\\xd3\\xd8\\x8f\\xbf@\\xf0l\\xef\\xa0\\x9a\\x8c\\xbfH\\xc1\\xb8\\x05\\xca,{?\\x18\\x9a\\x000\\xb2g\\x98\\xbf4\\xec\\xfd\\x82\\xdb\\xb0t\\xbf\\x00C\\xc8\\xceK\\x05\\x80\\xbf@\\x00\\xd3\\xe2d\\xd4_\\xbf\\xc0\\x9a\\xfd\\xf2\\xdb8[?\\xcc,`\\x14V\\x99p?\\x9dsQ\\xcf\\x83\\x7f\\x90?\\xfcN\\x98\\t\\x0eMs?\\x00\\x86C2\\x12*\\x80?\\x0e\\xa7\\xf9Y\\xba,}?\\xbc\\x10\\x1b\\xbe\\xfd\\x05r\\xbf(\\\\\\xf3\\xda\\x8cX\\x7f\\xbf\\xd0\\x05\\xca\\x99JY]\\xbf\\xa8z!H\\x0b\\xb0P\\xbf\\x00\\x1c\\x1d\\x19j\\'\\x04\\xbf\\x80\\xf1\\x8f\\xc8\\xc0PH\\xbf\\x00\\xa6\\x1c\\x15\\x18 \\x11\\xbf\\x00v\\x8b\\xeaX\\x16%\\xbfP_W\\x0f\\\\\\xc1Y? \\x06=\\xed\\x85I*?\\xc4X\\x87\\'\\xb1\\x80?\\xbf0y!\\x99s\\xf2X?\\xd0\\x1c\\x9b\\r\\x05*Z\\xbf8\\xf4\\x92\\x0c\\xc0\\xf77\\xbf@\\xe3T\\x04\\xe4j5\\xbf\\x00\\'\\x8dJV\\x97I\\xbfk\\xe1\\xe7E\\x10\\xfc3?\\x08\\x00\\x0f\\xf1\\xa2;b\\xbf\\x80\\x82f\\x8d|\\x05\\x16?\\xad\\xa0\\xb7>\\xc4)A\\xbf\\x00\\x94\\x98k\\xd08\\xff\\xbe\\x00\\xa4mO_\\x1e$?\\xc0\\xd9\\xd8\\xa8\\xd3\\xf0!\\xbf`\\x14l\\xa6^\\x02&\\xbf\\x00?\\x81\\x98\\xfe\\x9dW\\xbf Z\\xf6\\xc4\\xf0\\xbbK?\\x946vF\\xab^k?\\x009\\x9c%kZ\\x1a?\\x00{H\\x9dA0B?@\\xb1px`~S? \\xb1[g\\x95\\xa5G\\xbf\\xa0\\x942\\x1aT`W\\xbf@/F)\\xdeiH\\xbf\\x00\\xf7\\xa0$L\\xb41?\\x80\\xafX\\x18\\x88CU\\xbf|\\x9e&\\x8d\\x84Rc? \\xae\\x11\\xb3\\xb5p`?P\\x85\\x98:\\x11\\xc9[\\xbf\\x00L\\'vQ\\xd1\\xf5\\xbe\\xf0\\xfds\\x18\\xf3(c?(\\x02\\xab\\xc7.\\xcax?\\xf0\\x0c$x\\x99\\x9dD\\xbf\\x00B\\xcf\\xcb\\x0b\\xdcH\\xbfd<\\x1d\\x07<q|\\xbf`!\\xee\\x1ddW|\\xbf@b\\x9b\\x0bj\\xeb2?\\x98\\xc3\\xae*\\x15\\xebi?\\x00Hg\\xbc=(\\x0f?\\x80\\x1a\\xbc\\xfe\\x07\\x17\\x82?\\xe0\\xcdc\\x10\\x97gr? \\xde\\xa7;Cs[\\xbf\\xe0\\x98h\\xfb\\xe9}p\\xbf@vV\\xb3f]g\\xbf.Pr1_,t\\xbf\\x80\\xb6\\xd2\\xc3\\xb9N\\x83?$e)\\x94\\xf8\\xf5\\x85\\xbfE@\\x83\\xf1\\xb9\\x99p\\xbf\\x00D \\x13\\xcb|>\\xbf\\x80\\x1a\\x14a\\xad\"\\x82?\\xdb8\\xb3\\r\\xc0Z\\x8c\\xbfdD\\xf61vkv\\xbf\\x8c\\xb0\\xb0\\x81ot\\x86\\xbf\\xc8\\xdb\\x86\\xb9\\x908\\x89\\xbfx\\xa3\\xa4\\xa6\\x00\\x1fn?l\\xd9^J8\\xd2\\x7f?\\xfcN\\x98\\t\\x0eMs?\\x87\\xed\\xfa\\x85k\\xe3x?\\x18;\\xb2\\xcc\\xac\\xefr?\\x14E\"Q\\xcbGr?\\x9c\\x90>\\xb0\\xd9\\rv\\xbf`\\xc3\\xa4\\xf5\\x87Fq\\xbf\\x00C\\xcbJ\\xbf\\x1c=\\xbf\\x00\\x00\\x89~\\xb2\\x8e4? \\x83\\xf6)\\xeb\\xa6X\\xbf\\x003\\x00\\'\\xb9\\xe75\\xbf@aw\\xae8|I\\xbf\\x10\\x98N\\xf33\\x81@?\\x80\"\\xd9\\xddsn2?\\x00\\x17\\xban\\xcfd\\x1b\\xbf`\\x89W\\xc6\\xccd7?\\x00+\\xe7$?\\xe0\\x02\\xbfT>\\x00\\xae\\xb5\\xd1s\\xbf\\x00 \\xfa\\xc9\\x94j\\xec>\\xa8\\xf3k\\xe57\\x12n\\xbf\\x18\\xd816\\x10\\xbeu?\\xa0\\x0f\\xf7\\xcc$r\\n?A\\xb88\\xc2Z\\xeav\\xbf\\x80F0F\\xcf\\xb3%?\\x04\\xbe\\x83\\xb1k\\x9d]\\xbf\\x00\\xa2N\\x9c\\x8cK\\x04\\xbf\\xc0B\\xb2\\x7f-\\xe3w?x\\xb4\\xf2\\x84k\\x08d\\xbf\\x10\\xb7\\xda;\\xe7\\xe0U?p\\x88\\xf72)\\xaas\\xbf \\x18\\xbb,\\x82\\xd6_?\\x00\\x08\\x00\\x9c\\xbek_? )m\\xc3\\xbfbQ?\\xe0l\\xdb\\xa2\\x85\\x87??\\xe0M\\xa6\"\\xf7\\x99k?(\\x8b\"f8L|\\xbf@^/,\\x0b\\xacI?\\x98\\xcd0\\xbeV[r\\xbf\\xe00\\x03R\\x9b\\x94e? \\xc2\\xf9\\x1et\\xafd\\xbf\\xdf2\\xc19\\xe4\\'w\\xbf\\xf0\\xf6B\\t\\xaa\\xa7h\\xbf\\x80\\x05\\xb9\\xaaiKd\\xbf0\\xa7\\x9fW\\xe4\\xc4b\\xbf\\x00\\x89\\xc6\\xe6\\xab\\x807\\xbf\\xb8\\xe6$B\\xee\\xbf\\x82?`2\\xd7\\xca&\\x86a\\xbf`\\xacY\\xff\\xfa*k?\\x80!/\\x0f(u\\x85\\xbfP\\x00\\xc5y;:\\x81\\xbf@\\xe3b\\x95n\\xeb`\\xbf(5=\\xab\\x802t?\\xb0\\xc8B\\xc77H\\x88\\xbf\\xf0\\xdcFX\\'9\\x88?\\xb0\\xf7\\x05\\xc6\\xfd\\x1c\\x94?\\x18\\xfe)\\xc2\\xd2r\\x94\\xbf\\x00\\x08W\\x00Ac5?\\x08\\xdf\\xc3\\xc3\\xf1\\x08\\x97\\xbfH\\xed\\xa1\\x16\\xea`o\\xbfhg\\x1d\"(\\xe9\\xaa?\\x10\\x15\\xf4\\x1b\\x84\\x06\\x8e\\xbf\\xd3\\x07\\xb2\\xeety\\x80\\xbf0\\xb2s,\\xe06\\xa5\\xbf\\x107\\\\\\x82L\\xef\\x85?\\x903\\x1f\\xce\\xb2\"\\x87?\\x80(pl\\xednf\\xbfH;\\xec\\xcb\\x8a\\x8b|\\xbfL\\x08\\xcf\\x10\\x89\\xd8\\x8e?@\\x1c\\xb6e\\xd8F_?`\\xe6\\x8c?\\xd2\\xb9^?\\x00\\x86C2\\x12*\\x80?\\x18;\\xb2\\xcc\\xac\\xefr?\\xd4J\\xaf\\xf0l7\\x90?@\\x1c)1\\x16\\xcer?\\x98\\xcb\\xea\\x95\\x88\\x8bv\\xbf\\xd0\\xd5\\xed\\xe9\\xa0\\x93\\x87\\xbf\\xc0\\xa1\\x01\\xa1jA8\\xbf\\x18u\\x05\\xdcZ\\x0eV\\xbf\\x80U\\xa0O\\x97\\xb91?pi\\x18\\x9c\\xad0\\\\?\\xa0\\xe6\\x82\\xa4\\xc0U#?\\xc4\\x15\\xc67\\xceoP?\\x80\\x16\\'\\xa9sg%\\xbf\\xc0\\xd4\\xb9\\'f\\x81=?\\xba\\xec\\xc6\\xfd:\\x9fW\\xbf\\x94\\xab\\xc5a\\\\\\xa6V?\\x86s8\\xb4\\xa2\\xc5j\\xbf\\x00\\xa0\\xf1\\xa40\\xac\\x18\\xbf\\x100%]\\x15\\xa6O\\xbf\\x00\\xe83R[\\x0eD\\xbf:s\\x9a\\xe2#|0?\\x89zv\\x8f\\x98\\xe9b\\xbf\\x80\\xae\\xd5\\x81\\xe8n\\x11\\xbfub\\x0b\\xc9ESN\\xbfh}\\xc9\\xff>\\x08E\\xbf\\xe0\\xeeh\\xb1\\xfcAT?<`\\xc9\\xcf\\xb5g[\\xbf\\xa0`!\\x11OZB\\xbf@\\xf5\\x86\\x1e\\xb4\\xd3b\\xbf\\xc0X\\xed\\xe6\\xbe\\x859\\xbf\\x10\\xed\\xce\\xde\\xc5\\x16T?\\xd0\\xd1#o\\x0e\\xdc5\\xbf\\xe0\\xd3\\xd7\\x12\\xd9\\\\\\x12?\\x80\\xbf\\xe6\\x17\\xe5vU?<\\x19\\xc2\\xb62\\xd0e\\xbf\\xc0\\x99\\x11}\\xc37g?\\xa6\\x13\\xf6\\xb2\\x13(b\\xbf\\xf0<\\xc0\\x01\\xf2\\xf9S?@F\\x86$\\xe7\\xf6D\\xbf2\\x19\\xbeRkt_\\xbfx\\xd4\\xc9\\x03\\n0n?\\x00\\xce]q+-\\xe6\\xbe\\x00g\\x94l \\xd2C\\xbfxv\\xd1\\x19\\xeeMd?\\xc8\\x95:\\x8b\\x90\\xcac?\\x98\\xd9\\xcb\\x8dG\\x8fP\\xbf\\x00\\x84\\xe2\\x81\\xe6\\xb3\\x0b?\\xa0\\xa5!\\xc8\\xee\\xf6b\\xbf0\\xcau!\\xa8\\x93V\\xbfh0V\\x05G\\x86^?d\\x95H\\x1e\\x84\\x94c?T\\xe3\\xa5\\x19\\xaaLr\\xbf\\xa8\\x16\\xb9X=\\x9at?\\x00\\xc9>\\x8cZ\\x8c\\x83?\\xe0\\\\\\xbfFW\\xae\\x05\\xbf\\x00\\xbb\\xbal\\xec\\xf4S\\xbf\\xc0Ds,g\\x1ed\\xbf\\xdc\\xa02\\xd9J\\xfd\\x8c\\xbf\\x80\\xd0\\xb0\\xc1\\x84\\xa2\\x83?\\x98\\xe1\\xd4:@=s\\xbfht\\xea\\xaf\\xfe_{\\xbf\\x80R\\xea\\x8d\\x96\\x1df?\\x18G\\x01|\\x9bM}?H\\xf9f3\\xd9Y\\x87\\xbf&\\xa4,I\\xce\\x8dx\\xbf\\\\Z\\n\\x11\\xb4\\x86x\\xbf\\xc2=\\xd4\\xb7\\x9c\\x05\\x93\\xbf\\xdeR\\xab\\xd2\\xfe\\xa1u?t\\x97\\x80R-\\xb5|?\\n\\xa7\\xf9Y\\xba,}?\\x0cE\"Q\\xcbGr?@\\x1c)1\\x16\\xcer?\\x96\\xed\\xe8,\\xde\\x84\\x84?\\x80\\x14\\xc4\\xc6\\x95\\x11r\\xbf(\\x85\\xa0n\\xd5\\xe6w\\xbf\\xc0\\x91\\x13\\x04\\'\\xf6G?\\x00\\xf3e\\x8f\\xe4\\xf1)?\\x00\\x9ev\\xaa\\xcc\\xc74?H\\xd3\\x93\\\\\\xebEa?\\x90\\xf8\\x1eQ\\xd0\\xd5J\\xbf\\xa0\\x88\\x93 \\x9f\\xfd=?\\x80\\xf9~8\\xa7\\xca_\\xbf(\\x15>\\x1e\\x00-C?\\xa0*\\xcd\\x0f\\xc4r%\\xbf\\xd02^mg\\x9aI\\xbf@9\\xf4\\xdb\\x80\\xa80\\xbf@mu!D4\\x17\\xbfP\\xae\\xf2\\x03\\xf0\\xbfC\\xbf\\x80|\\x98\\xac\\xef\\x96%\\xbf\\xcd\\xd3\\xe5\\x15v\\x89A\\xbf\\x9a\\xf5@\\x122\\xa7`?\\x00\\xc5\\x87\\xe6\\xfb6&?\\x8cU\\x06\\xc8\\xf5\\xa11?\\x00\\xf1\\xca\\x10\\x8b\\x96 ?\\x00+\\xd0\\xd2wWJ\\xbf\\xa0>{i\\x1e\\xe0?\\xbf\\xc0\\xb0\\x15I\\xb5\\xb5=?\\x0094\\xa9\\xd2\\x0e2\\xbf@\\\\N\\x91\\xd5\\xc4P\\xbf\\xe0$D\\xc2\\x05\\xa5i\\xbf\\x00l\\xed+1\\x0e\\x16\\xbf\\x18\\x1c\\xeb\\xc9\\x838E\\xbf\\xb0Z\\xa5\\x1d%7e\\xbf@#@\\xc2\\xb5\\xda\"?P\\x88\\xdd\\xcc\\xa0\\xb7W?(z\\x1d\\xb1D\\\\Q?\\x88\\x01$\\xfb\\xcdnV?\\xc0\\x80\\x9a\"T\\x81K?\\xd5=\\xf7\\xf46\\xe8e\\xbf `\\x98\\x9fO\\x01C\\xbf(\\x89\\xa8\\x19\\xe3EU?\\x00\\xf6\\x0ce\\xe0\\x8f:\\xbf\\x00\\xfeC\\xa3\\xe4\\x15W\\xbf\\x90\\xdc3\\x11\\xd3\\x14v\\xbf\\x98)\\xaa4\\xd4\\'[?\\xe0|.\\xfa\\x119[\\xbf\\x1c\\xe1\\xe4\\xe8\\xd9\\x96~?\\xde\";d\\xf90\\x80?\\x00y2veuC\\xbfh)\\x10\\xd3M\\xf8f\\xbf\\x98\\x8d\\xabE\"\\x92a\\xbf\\xc8\\x9fe4\\x9d\\x9e\\x8b\\xbf\\xc0t\\x01M\\xec\\x14t\\xbf\\xb2R\\xdeJ\\xa9\\x05r?\\x00V\\xc1p\\xe6\\xb3D?\\x88\\xe9W\\x97\\xaew\\x80?db\\xaf\\x7f\\x86\\x9ah?\\xe0ms\\x04\\x17{\\x8a\\xbf\\xcc\\xf7`\\xa0Q\\x14\\x88?*\\xb7Z\\x86\\xff\\\\\\x80?@\\xf7D\\xa1\\x9e\\xbcy\\xbf\\x9cgi\\x05\\xa6\\xf2\\x81\\xbf\\x0e\\xaf\\xb5\\x8a\\x08\\n\\x8d?\\x00\\xf0\\x02\\x19u\\x1cv?8L\\xc5x\\x05[\\x85?\\x91\\xe16\\xc2\\x07\\xc7\\x8f?\\xd0V`\\xfc!Hv\\xbf\\xb44\\xe9\\xe92>w\\xbf\\xbc\\x10\\x1b\\xbe\\xfd\\x05r\\xbf\\x9c\\x90>\\xb0\\xd9\\rv\\xbf\\x88\\xcb\\xea\\x95\\x88\\x8bv\\xbf\\x80\\x14\\xc4\\xc6\\x95\\x11r\\xbf@\\xa3K\\nr=\\x82?\\xc8\\x8c\\x89?=\\xe2r?\\xa0L\\xd3\\xcb@\\x90h?\\xc0\\xe3f\\xb2n\\x1aI?@~7\\r,kO?\\xc0\\x86\\xf8J\\xce\\xd3Y?@\\x15Dc\\x97\\x7fT? \\xce\\xfb~\\x02\\xb1@\\xbf\\xb0T\\r\\x01.Bi\\xbf\\xb0@B\\xe9\\xb3\\xb6T\\xbf\\xc0\\xf1\\xe3b\\x95fI\\xbf\\xf8\\xff\\x93\\xf4\\x874Q?(\\xb6\\xb9\\xb4e~u?\\x00`\\x9c\\x1c\\xaa\\r-\\xbf\\x00\\xdf\\xb1b\\xa5\\xc6n?\\xf0,\\xdd\\xebE\\x1ce\\xbf\\x88\\x12\\xdb\\xd8c?3?\\xde\\x8c\\xbb\\xb1\\xd8\\xd1u? (\\xdb\\x90\\x18A_\\xbfB\\x9cI#\\x1c\\x1fi?\\x00R\\tt\\x8c\\xf2I\\xbf\\xa8\\xbf]\\x8d\\xdb\\xa1r\\xbf\\xa8\\x82\\x1b\\xa6\\xe9\\x8fi?\\x90\\xd9%\\xc7\\xf4JX\\xbf\\xe0\\x1b\\n\\xbbR\\x8ev? O\\x11\\xc9\\xb1_a\\xbf\\x80\\xa2\\xb8\\xe3Ovc\\xbfP\\xd1\\xe1\\xc5\\x9a\\xbfb\\xbf\\xe0\\xd0=XHL7\\xbf`6=\\x07o\\xb8e\\xbf0\\x8c\\x0b\\\\7\\xefz?`\\xfe[L\\x15\\xe8d\\xbf4\\xf8\\x01up\\x03s? #\\x89\\x80\\xe1\\x8cn\\xbfp\\x8d\\xd5|\\xafSr?\\x99\\xb3\\x1b\\x15Jnt?X\\xd0<\\xf5\\xb1sq?\\x00\\xc71\\x07\\xda]\\x1a?\\xb0\\x1d\\x05\\xa9\\x93,o?\\x80\\xca\\x93?\\xb9XZ\\xbf\\xa0Vs\\xe4\\xdf\\xfe\\x80\\xbf\\xc0\\xbcn\\x9ek\\x18W?\\x10Y\\xcf\\x07d\\xa1{\\xbfh\\x9b\\xb4\\xee\\xec\\xd0\\x85?\\xd0*\\xf1\\x9e,\\x13\\x7f?\\x88F\\xd7\\xa3\\xc8\\xa0s?\\x10\\'*\\x03\\xc0:w\\xbfh]\\xe4>$-\\x86?`\\x9f\\xf1\\x87\\x9e\\xe4\\x86\\xbf\\xc0\\x95\\x92\\x03; \\x91\\xbf\\xbf\\x91I\\xec\\xc6A\\x90?\\x00\\x04\\x00F\\x97\\xdcp\\xbf\\xe8\\x87\\xb9L\\x96\\'\\x93?\\x9a\\xa1:\\xcb\\r\\x1f\\x82?X|\\xe5\\x18\\xd8b\\xa2\\xbf\\xe0\\x95\\xff\\xb6c\\xe1\\x82?t\\x87\\xbb\\x9d:+w?\\xb0\\xc9$\\x83\\x1a\\xe7\\xa1?\\x0c\\x0b\\xf3\\xfe}\\xdf\\x87\\xbf@\\xb2\\t\\xafN@}\\xbf\\x10W\\x90;;\\rl?\\x9c\\xfa\\x84\\xff\\x96\\x17\\x81?x3\\x91\\xb3\\xcd\\xd4w\\xbf\\x80\\xa1\\xc3\\xb4\\xa4=a\\xbf\\x10\\xae\\xde\\x98\\n{\\x83\\xbf(\\\\\\xf3\\xda\\x8cX\\x7f\\xbf`\\xc3\\xa4\\xf5\\x87Fq\\xbf\\xb8\\xd5\\xed\\xe9\\xa0\\x93\\x87\\xbf(\\x85\\xa0n\\xd5\\xe6w\\xbf\\xc8\\x8c\\x89?=\\xe2r?X\\xe5\\xfa\\x1f \\x10\\x8d?\\x94\\x1a\\xd5\\x1c\\x00\\xab\\xc3?\\xe0\\x83:p\\xefUf?\\xdfz\\xb7\\x92\\xb4X\\x9d\\xbf\\xb0\\xaa\\x81\\x1c\\xde\\xd5\\xc3?\\xf27\\xb1}U\\x9f\\x87\\xbf\\x00\\xdd\\x8b\\xf52\\xbcu\\xbf\\x88\\xacR\\x06\\x06\\x9f\\xbe\\xbf\\xc0\\x8d\\nD\\xc3KO\\xbf@\\x0f`\\xa8M#M\\xbf\\x90\\xe5\\x88\\x891\\xa1r?\\xc0\\x92\\x942\\xe7v\\x94\\xbfYz3\\xfc\\xa3\\xff\\x7f\\xbf\\xc0;\\xef\\x9d\\x07\\x94v?\\x84v2\\x17\\x8e\\xb1\\x8e?\\x92\\x81\\xe6u@\\x04c\\xbf\\x82|3\\xc38\\x98\\x98?\\xa0!P\\xe0\\xe08`?b\\x1e\\xe8H\\xc3\\xb0\\x90?1:\\x93p_\\xbd\\x93\\xbf,\\x88\\x13LUQ\\x92\\xbf\\x80\\xdb\\x8fe\\xcf\\xeeN\\xbf(d\\x90\\xa4\\xf2Ga\\xbf\\xc0<YX\\x85\\xb7f\\xbf\\xe0\\xea\\x19v\\x87U\\x80?\\xddm\\xd3\\xff\\xf7\\xe0u\\xbfXa>\\x83\\x03s\\x83\\xbf\\xdc\\xf0[\\xa5U*\\x8e\\xbf\\xa8\\xe4\\xf2\\xfes\\xe0y\\xbf\\xbf*\\xc7]\\xb2\\xed\\x96?\\xe0i-\\t\\xacvt?\\xb0\\xfd\\x1f\\x0f\\xfb2w\\xbf\\x1cs\\xaf\\x15\\xfb\\'\\xa2?\\x00\\x17.1\\xfb\\xb9\\x90?\\xb0\\x8d\\x10\\xcc\\x07*u?j\\xd0x\\xc1g\\xbe\\x9f?\\xa6\\xec\\xbd\\xbaV\\x94\\xab?\\xf8f\\xc5\\x15\\x95T\\x95\\xbf\\xc02|\\x82\\xbe\\x11\\x9a?\\x94DO\\xb9\\xa1\\xe9\\xa1?\\x19\\xe5\\xafa=\\xc6\\xa3\\xbfp\\x9a\\xd2\\xf0\\x94\\xb5\\x93\\xbf@3\\xb0\\xfc\\x0b\\xf2t?\\xfd\\x01\\x91\\xca\\xb8Z\\xb5?U\\xd7\\x90\\xab\\xb6\\xc8\\x95\\xbf\\xaeTz\\xc6\\x04\\t\\xb3\\xbf\\x8c#\"\\x08F+\\xa3\\xbf\\xb0\\xe6\\'a6\\xbf\\xa4\\xbfdnR\\x82NG\\x88?P6\\x01=\\xc7\\xcc\\x96?`\\x85\\xfc\\x1fIm\\xab?\\xc0g\\x9b\\x13\\x92\\xcc\\x89?\\xbc\\x14\\xaa@\\xb1\\xc9\\xa5\\xbf\\x98\\xbd_!\\xa4\\x02\\xaa?\\x98\\x92\\xac\\xe4\\x7f\\x9d\\x96?`\\r0#\\x9e\\xd1\\x87\\xbf\\x10\\x13\\xa1\\xe2[\\xeb\\x91\\xbf\\x00z+\\'\\xc0#\\x9d\\xbf(\\x96\\xa0oHl\\x9c?\\x84\\xf3\\xa4X\\xe2\\xda\\x84?p\\xdcU\\x9a\\xf7\\xe7\\xa6\\xbf\\x80\\xa4\\xd7[\\x11\\xc3\\x8a?\\xd6\\x0b\\xab\\x9d\\x8c\\x17\\x91\\xbf\\xd0P\\x06\\x83\\xd1\\xae\\xa4?`K0\\x93L\\xe3o?\\x04\\x9d\\x9f\\xcb\\xa1\"\\x91?\\xd4\\xc1\\x18A\\x98\\x8f\\x92?\\x10\\xc0S!\\x16\\x8f\\x96?\\xb0H\\x1e\\x9ezhw\\xbfP$\\x1eA\\xe1Z\\x88\\xbf\\xe0\\x83:p\\xefUf?j7\\xaa\\x99\\xc7\\xdb\\x8e?\\x9c\\xcer\\xc9\\xdb\\x1dv?-M\\x85\\x11\\xc8\\xad\\x90\\xbfP\\xa0\"a\\x13\\xa9\\x82?\\xb1\\xe0\\x8d\\x98L~\\x7f?`\\xc0\\xe2?\\x82\\xff\\x88?\\xcd\\xd0\\xff\\xfeG\\xe1\\x82\\xbf\\x98R\\x8a\\xf7)\\xbd4?\\xd2\\xb2\\x0e\\xa3kBl\\xbfn\\xec\\xeb\\xe4;4\\x90?\\xe1\\x92C\\xc4)on?\\xe0wW\\xdak\\xd6[\\xbf\\x0cF\\xe1\\x0e\\x8dB\\x8a?\\x00\\xbd\\xb0rU\\x90\\xf0\\xbe\\xda\\xa8A]6^V?\\xc6\\x9a\\xf5\\x02s\\xb8\\x81\\xbf0i191\\x86`\\xbf\\xf5D\\xbf\\xca\\x93>U\\xbf2\\x9e\\xdf\\xbf\\x08]\\x8f?\\x14\\x12\\xd4@\\xfe\\xddh\\xbf\\xaf\\xf0H\\x9cH*\\x8e\\xbf0\\x19\\xa3\\xfcg\\x19[?\\x04*\\x13 \\x9bWQ\\xbf\\x98PK\\x12!\\xc8_?i\\x14v]\\xad\\ru\\xbf\\xac\\xb3\\x06\\xb4\\xffwH?d\\x1dUv\\xde\\xacP\\xbf \\xe6 \\xa2\\xfd/x\\xbf_58\\xaf\\xa1hq?\\xfe\\t\\xa2\\x7f\\xe2\\xea]?4\\x8c7\\xb4\\xaa\\x07g? U\\x9ff\\x9bd\\x82\\xbf0\\xb2md\\x9cJY\\xbf[\\xe8n]\\xe8tz?\\xf0g&\\xab_\\x8a\\x85\\xbf\\x9c\\xd68qh|h?|d\\xb5~7_\\x8c\\xbf \\xa7\\xaf\\xfd\\x08>b\\xbf\\xb8Tx\\xfe;\\x03K?8w\\xd6\\x93\\x84\\xf0m\\xbf\\xa1\\xf4\\xc5\\xad\\xa8I|\\xbfR\\xee{\\x9a\\x1b\\x01~\\xbf[\\x86L\\x82\\xc8\\r\\x90?\\xa3\\xc8[\\x9a\\x8bFx?BD)\\xf6\\x02Uj\\xbf\\xccod\\x80\\x02it?\\xfft\\xea\\x86V\\\\y?>\\xe6\\x89;\\'\\x16r\\xbf\\x85\\x00\\x87K\\xb1U\\x92\\xbf\\xd4V\\x7fMb\\xf6p\\xbf\\x1c\\x9c\\x1d\\xfa\\x11\\x95p?`\\rn\\xd7\\xd0\\xe4]?\\xb5[\\xfa\\xac\\x1b:p\\xbfXuxa\\xdc\\xa7a\\xbf\\x80/\\x8e\\x9d\\xc4\\xd6T?D\\xeaz\\xac\\x9e\\x10}?\\xb8!\\xd8z\\x11yv?f;(\\xf6\\xb5\\xfcn?\\x88t\\xf2-\\x075G?\\xc25\\xbdPc\\x0f\\x81\\xbf\\xe4\\xd7\\x9d\\x9b\\\\}H\\xbfi\\ng\\xe7\\xd8(v?v\\xc0,j\\x14 |\\xbf\\x964\\xc5v\\xf6\\x19m\\xbf(\\xfd\\x9d}\\x1a\\xc7k\\xbf\\xbdAe\\'\\xb6)w\\xbfp\\x04\\x12\\xc0C\\x07[?\\x16\\x8d~\\xee\\x9b#x?\\xdfz\\xb7\\x92\\xb4X\\x9d\\xbf\\x9a\\xcer\\xc9\\xdb\\x1dv?\\xd2\\x0cP\\xa5\\xc8\\xe5\\x92?o\\x9f\\xbeu\\x9a\\x01\\xa1\\xbf\\x82\\x8bZ\\x93C\\x1av?S\\xa4\\xb9\\x92\\xc5\\r\\x8c?\\x17\\x1c\\xa2K\\x86Y\\x9d?\\xa2\\x02AD\\x95\\x17c\\xbf 4\\xe0\\xe3\\x9a\\x83w\\xbf\\x00CGC\\x89\\xa4\\x15?\\x0b\\x8b\\xe3\\tkRv?w\\xff{\\x7f\\xf9\\xe0t?\\xdc\\x8b\\xa9\\xbd\\xfbnn\\xbf\\x00\\x98\\xf9\\xf3\\xcc/\\xc0\\xbe\\x8d5|Q\\xaa\\xd5`?9\\x1e\\xc6\\xcc\\x9d\\xe9a\\xbf\\xf8-\\xc0x\\xa77T\\xbfx\\x10\\xc4\\x83\\xa3\\xd9\\x8b\\xbf\\xd4S\\xa1M\\xda\\xcax?g\\xec\\x88#@\\x7f\\x86?\\xd2\\xcfy\\x1a\\xbb}{\\xbf\\x9c0\\x03X\\x07(\\x83\\xbf\\x00\\x12\\xce\\xff\\xc9\\xeb`\\xbf\\x0c`<\\xbf\\xa9\\xfcy\\xbf\\xe0\\xe0]\\xa6j$[?t\\x13\\xc7!\\xdb\\xa0R? \\xa3+\\x11h\\rC\\xbf0%\\xa1\\xe1\\xd8(2\\xbf@\\x0e\\xd6\\x1d~\\xbe\\x80\\xbf`D@0e\\x80w?\\x11}\\xae\\xad 5L?r\\xfd\\x17\\x0e\\'iy\\xbf\\x9c\\xba8]Db\\x80\\xbfx\\x0b\\xc5\\xcezCm\\xbf\\xe04:bU\\xdaM\\xbf\\x96\\xbf\\xa5\\x87\\xa5\\xb5\\x89\\xbf2\\x15\\x05\\xef\\x12Mq?\\xe8o5\\xfbX~\\x80\\xbf$u4\\xefpr\\x90\\xbf/P+\\x13@\\n\\x85?\\xf0\\x0e\\x9a\\xa8z\\xe2e?\\x01\\xe6i\\x96\\xc3\\x0f\\x82\\xbf\\xf0\\x8d\\xd5\\xa2\\x93\\x88\\x94\\xbf\\x98\\xa8L\\xe9\\xf7\\xc3\\x8f?\\xaa]L\\xc4By\\x96?\\x06!W\\xf1H\\xf5\\x80?/\\xe4\\x80\\x8e\\xf0\\xb1\\x8a?\\xfb\\xe4\\x1d`\\xc3\\xabs\\xbf\\xd4\\xc2\\x90\\xb8\\x8fex\\xbf\\x96(\\x9b\\x9b1L\\x91\\xbf5\\xb3C\\x87\\x03th\\xbfR\\x94Dg][x?\\x906h\\xea\\x7f\\xb5\\x8d\\xbf\\xb0\\x8c2\\xb1\\'\\xe1T?\\xb8\\x00\\xba\\xf4(\\x9c\\x88?`\\x9b[\\x10\\xacne?L\\xa9\\x12 \\xcc\\xc0\\x91?\\x8byi\\xea\\x19\\x95n?.W\\xbc\\r\\xc2/g?$%\\xe6v\\\\\\x97\\x8b?~\\x05\\xb7N)\\x95\\x81\\xbf?\\xb4EJB\\xeeq?hW\\x91\\xa3\\x99\\xf3S\\xbf9/\\xc9\\x02\\x910m\\xbf\\x14\\xac\\xf4\\x11W\\xa0t\\xbf\\x16\\xbc\\x90\\xc8\\xe6\\xaaw\\xbf`\\x9c\\x1aZ\\xf6fV\\xbf\\x98\\x14r\\x13P\\x8ej?\\x8a\\xf9\\xa4)y\\xadp?\\xb0\\xaa\\x81\\x1c\\xde\\xd5\\xc3?.M\\x85\\x11\\xc8\\xad\\x90\\xbfo\\x9f\\xbeu\\x9a\\x01\\xa1\\xbf\\x1e\\xa1\\xb2\\xb9\\xb61\\xc9?F\\xa2\\x9c\\x1f\\x8fT\\x9d\\xbf.\\x07\\x90\\xe2\\xedA\\x89\\xbf0\\x9c9\\xablV\\xc2\\xbfH>\\x94-\\xd7_\\x8d?\\xd4$[U\"\\xefv\\xbff\\x84\\xe5\\xd6~\\x85\\x91?=9\\x8b\\xf7V\\x9a\\xa9\\xbf\\x9fzFfm(\\x8b\\xbfP6\\xf5\\x92\\x84\\x07s?\\x80v\\x0f\\xd14\\xf4h\\xbf\\\\\\x0f\\xa2hkEj\\xbf\\x8a\\x80\\x17t\\x1e\\xc8\\x99?`q\\xe7\\xa0\\xbd&\\x8b?\\xba\\tJ\\n\\x8e\\xac\\x91?\\xe4\\xc2\\xbb\\x06\\xf96\\x94\\xbf\\x0c\\xc3\\x8e\\x19F\\xfc\\xa4\\xbf\\x00G\\xd9\\xa9%\\xed6?\\x80\\xaep\\xe3\\x19\\xda\\x90?\\x00_\\xdb\\xfe\\xf7\\'\\x87\\xbf\\x90:\\xac\\xc4\\xccx\\x80?\\x04\\x98\\xc7\\xe6\\xb5\\xb0\\x81\\xbf\\xb0\\xee\\xb8\\n\\xf6\\xedc\\xbf\\x9c\\xe5\\xd5\\xfb\\x8b\\xcd\\x90\\xbf\\xc0\\xa0\\x12z\\x01\\xa0\\x81\\xbf\\x9d\\x8a-\\x15}\\x1d\\xa0?@\\x9c\\xd9\\x11\\xae\\x92c?1\\xc1(S\\r\\xfc\\x89\\xbf\\xb4\\xad\\xa38%%\\xa2?P\\xe3\\xa0\\xd0\\xb0U\\x9c?\\x90\\x9c\\xces\\xcdEp?\\xb8bRb\\xf0\\x86\\x98?%\\x1eK2\\xaa\\x08\\xb2?|\\xe2\\xb2.\\xa6\\xf5\\x99\\xbf\\x18K,\\x1b\\xfc\\xf1\\xa5?\\xfbEa\\xb7\\x07\\x9f\\xa4?\\xfcH\\xdav\\xad\\x05\\xa5\\xbf@\\x13[t\\x90J\\x83\\xbfx.\\xe3\\x7f`\\xe2\\x88?*\\x9f\\xb7\\r\\x02\\x9d\\xb8?Kg\\xa2j\\x98I\\xa6\\xbf\\x00\\x16\\x14\\xa1\\x07\\xdb\\xb4\\xbff\\x9c_?\\xcf\\xdd\\xa4\\xbfH\\x97\\xca\\x1f(:\\xa9\\xbfvq\\x90*\\x10$\\x80?\\x80\\x1b\\xe9D\\x1f\\xc5\\x9a?\\xac\\xde\\x0f\\x05\\xfb\\xf7\\xb4?\\xc7\\xa4S\\xc9\\xe9:\\x95?\\xfcb\\x91&\\xf69\\xa9\\xbf\\xb8$S\\xea\\xc1=\\xa6?zB\\x02B\\xac,\\xa0?@\\xdbc\\xb0Y\\x95u\\xbf\\x00qO\\xfa\\x9d\\x8c\\x85\\xbfTw\\xbc\\xde\\xf2S\\xa5\\xbf\\x0e\\x934\\xe1\\xad^\\x94?\\xc0\\xce\\xfd\\x12\\xff)x?0\\x8ax\\x9f\\xff\\xf3\\xa5\\xbf\\xd2\\x8aF$\\x94\\x15\\x94?<\\xe7\"M\\xad\\xbb\\x8d\\xbf0\\xa6=\\x9b\"\\xf1\\x9a?\\x80\\xdb\\xa1r#\\xf6\\x8e?\\x14%\\xdd\\xc2] \\x96?@\\xec\\xb5\\xa3e\\x18\\x96?j>\\xae\\x84U\\xad\\xa1?\\xc0\\xc1\\xca\\x03\\x1f\\xb2\\x7f\\xbf\\xc4\\x14:\\x07\\xf9%\\x92\\xbf\\xf27\\xb1}U\\x9f\\x87\\xbfP\\xa0\"a\\x13\\xa9\\x82?\\x82\\x8bZ\\x93C\\x1av?F\\xa2\\x9c\\x1f\\x8fT\\x9d\\xbf\\xfaz ]o\\xb4\\x87?\\xb7\\xd6\\xb1o\\xee\\tz?\\xbelY[Ym\\x95?\\xec\\xb5\\xb6\\xa7\\xd3\\xb9\\x7f\\xbf0\\xf8\\xeb\\x84\\xe4\\x0eP?\\xc4%CU\\xc8\\x93q\\xbfaHLxo\\xb0\\x8f?\\xb9^\\xf3@C=i?\\x0c\\xdd\\xf7-\\xc7*Q\\xbf\\x8a\\xbd\\x17R}t\\x81?\\x12\\xa6\\xd1>\\x1bcC?\\xec\\xe5:\\xe8\\x07\\xc5A\\xbf\\xf3\\xa0q\\xda\\\\\\xc9x\\xbf\\\\.@5\\xa6\\xcd_\\xbf\"7\\xca\\x8a\\x06\\x00b\\xbf(\\xc8\\xea:\\x8f\\xa4\\x87?\\x00d~\\x96\\xba\\xfe\\xd5\\xbe\\xda\\xe7\\xb6`fa\\x8a\\xbf\\x16n\\x03\\x15\\x0c\\nr?vJ\\xa8Z\\xee;e\\xbf\\xf10ek\\xbf\\xe4V?\\xe2\\x19\\xc7\\tH\\xb6o\\xbf\\xee\\xca\\x98 \\xef0S?R7\\xd4#\\x8f$b?T\\xc5U\\x96u\\xafq\\xbf\\xdc\\x19\\x93\\xb1\\x19\\x01G?\\xedd+\\x91\\xc1\\xdct? ^A\\x95P\\xdfX\\xbf\\x92\\x8caA-#q\\xbf\\x00\\xe9\\x11sF\\xdc\\x0e?M\\x15)\\xdf\\xec\\xf8o?R\\x8d\\xddk<z\\x83\\xbf\\x87-!\\xe7@\\x86q?e\\x03\\xf69p\\xc4\\x85\\xbf\\xe3\\xe9\\xd5\\xc8\\x18Qz\\xbf\\xd6\\xe0\\x0eA(\\x04p?\\x08\\xc3\\xac}\\xa8fk\\xbf_GA\\xae?\\xcfb\\xbf \\n}\\x8e\\xb5\\x04\\x85\\xbf\\xd9\\xbc\\xf0\\x96\\xfe\\xd6\\x85?\\xc4\\x9d\\x98\\xdf]~{?\\xc4\\xa3\\xdaJ\\x02Zl?\\x8e@\\xc3\\x13\\xe6\\x03}?@\\xe7k\\xa2\\xf0)G?\\xf8z\\xd5p\\x1a\\x84_\\xbf\\xe2\\xac\\xc5\\x8c\\nl\\x91\\xbf\\x17PL5=\\xb0a\\xbf\\x8f\\x1a\\xb6\\xb1\\xc8\\xb3\\x80?\\xa0\\xc3e\\xdd\\x91\\xcfQ\\xbfj\\xe6g\\x8f\\xb1\\xd8f\\xbf Q\\xb4f\\xd7\\xbc]?@,3e\\x1a\\xffQ?ZT]l\\x95\\x8ax?\\xf2fs\\x99\\x9b\\xa1{?\\xd4_I%;\\xb5O?\\xc4\\xefD\\xe1(\\xf5e?\\xdex\\xa8o\\x90\\xeas\\xbf\\x8a\\x91\\xadH|\\x99L?\\xc8h\\xff\\x99T\\xd3d?\\x8c\\xd9i7\\xba\\xf4z\\xbfv\\x05E!J\\xdeg\\xbf]\\xee\\xa3\\x0c\\x8e\"c\\xbf\\xec5\\\\\\x8a+\\xcew\\xbf\\x9e\\x94\\xce\\x8a\\x0e\\xf4X?\\xfeQ\\x8c\\x9e7kp?\\x00\\xdd\\x8b\\xf52\\xbcu\\xbf\\xb1\\xe0\\x8d\\x98L~\\x7f?S\\xa4\\xb9\\x92\\xc5\\r\\x8c?.\\x07\\x90\\xe2\\xedA\\x89\\xbf\\xb7\\xd6\\xb1o\\xee\\tz?\\x01\\xea\\x0c\\xf5~\\xeb\\x93?\\xfa\\x9e\\xf3zq\\x13\\x8b??\\x9e\\xc2\\x93\\x9a}q\\xbf\\x85\\x91Wl\\xda\\x81}\\xbf\\xe9j&\\xad\\x82\\xd0R?\\xc5\\x95/\\xfb3\\x84k?\\xb3\\x8d\\x82\\x07\\x91\\xeeu?e\\xe65%O\\x93v\\xbfL\\xb0P\\xb3\\x88\\xedv?\\xa9!^\\xc4\\x8cAa?jG\\xf5\\x0f\\xca\\xa2f?\\xb75\\x81\\xecv;i\\xbf\\x99\\xfb\\x1b\\x8f2\\xa3\\x89\\xbf\\xc0\\xe2\\xaa\\xf4\\xaa\\xe44?\\xdd-\\x93j\\x06\\x95\\x87?\\x90\\xec\\xcam\\xe4\\xb0|\\xbf\\xf4\\x06\\xce_8\\xc3\\x91\\xbf\\xd4\\xadD\\xe4\\xb4+r\\xbf\\xf2-w\\xce\\r]~\\xbfBQ\\x95r\\x18\\x9dA?\\xaf\\x15hM\\x02n[\\xbf\\x92\\x02\\x12\\xac\\xd6\\x95m\\xbfX\\xeeV\\xf1?#3\\xbfx^\\xc4\\xa8o\\xcbw\\xbf\\x9ciA\\x1f\\xa7\\x8az?G2\\xee\\x89E>k?`\\xcb\\x89\\xc2\\x89dc?\\xdc9\\x0e\\'\\x0c<x\\xbf\\x02\\x91\\xc8%\\xd0|S\\xbf{\\x07\\x18\\xa9#\\x9f~?Z<|?\\xfc\\x04v\\xbf\\xda\\x97z\\x95\\x17sZ\\xbf]p\\xb9\\xeec\\x9a\\x82\\xbf\\xc4\\xd1\\x06\\xc3\\xaf\\n}\\xbf\\x8a\\xa5;\\xbb(\\xad]?\\x00\\r%\\\\\\xd1|&?\\xb1\\xf1\\x19\\xaaa\"\\x8a\\xbf)\\\\\\xfc{\\xae+t\\xbf\\x9a0\\xf1\\xcc\\xbf\\xaf\\x8c?\\xd3\\xb6\\x90\\xb7\\xf7-\\x85?\\xfe\\x83j\\x95pja\\xbf\\xd6\\x15\\x979[\\x1e|?\\x0e9\\xb7]\\xd2wz?\\x92\\x9df\\xe5\\x8a^\\x7f\\xbf\\x9f\\x1d\\xe8\\xe6\\x91\\xc2\\x88\\xbf4\\x95\\x1dc\\x95\\xc1\\x81\\xbfz\\xe6\\x10\\x15\\xe3\\xa9k\\xbf\\x0c\\xc4x;%\\x00r\\xbf\\x06\\x89\\x90k/\\x08\\x7f?fAr\\x95\\x13]\\x7f?\\x00\\xc2;\\xe1\\x81\\x8a\\x02\\xbf\\xc1\\x7f`Cd\\x0c\\x84?\\xb6D\\x8c\\xdb\\xc2\\xbb\\x8d?4\\xe7\\xd1Z\\xd6\\xcfv?:\\x06\\x99\\xb5;;~?\\x128\\xa5\\x84\\x13\\x0f\\x7f\\xbf\\xc4\\xcb\\x93\\x8c\\xef\\xe7]?+\\xcb\\x97\\xb8`\\xc5q?7oB\\xaf\\x86\\x81t\\xbf\\xba\\xe4T\\x8dr\\xfeb\\xbf@\\xce\\xddY\\x05\\xf9c\\xbfd\\xf8\\x11o\\x17\\xc4e?y\\xf8pk\\xe0\\xbfe?\\xa6\\xff \\xd8\\x99\\xcah?\\x88\\xacR\\x06\\x06\\x9f\\xbe\\xbf`\\xc0\\xe2?\\x82\\xff\\x88?\\x17\\x1c\\xa2K\\x86Y\\x9d?0\\x9c9\\xablV\\xc2\\xbf\\xbelY[Ym\\x95?\\xfb\\x9e\\xf3zq\\x13\\x8b?\\x82\\xf2\\x0e\\x8f\\x05\\x02\\xc0?^\\r3#X\\xa9\\x83\\xbf0\\xfc\\xeb\\x89\\xbeG]?\\xd4?Z{[)\\x84\\xbf\\xea\\xf2\\x07\\xec\\x00\\xbd\\x9e?P\\x16\\xed\\x84Mu\\x80?\\xa0\\xa9B\\x14\\x90f}\\xbf\\x80\\xa8l\\xd9G\\xc8;\\xbf\\xd8\\x8b\\xc8\\xcdi\\xcfh?\\xe8\\x06\\x89\\x9e\\x87G\\x92\\xbft\\x8fN\\xb6\\xdb\\xd2\\x84\\xbf\\xa0\\xc0s\\xdd\\x03L\\x8b\\xbf\\xc8\\x1c\\x05;d1c?(\\x8ev\\xeb\\xed\\xdd\\x99?\\x80@\\x0bjxt@?\\x1d\\xde\\xab\\x8dDf\\x9e\\xbf\\xc0\\x0b\\xd5hS\\x81r?\\x80~o`\\x7f\\xfc\\x81\\xbf=\\xff\\x13\\x0e9\\x9b~?\\x80V\\t\\x12\\xfa\\xa33?\\xa0\\x15\\xa2\\x89 \\x11\\x8c?,0A`Z<\\x88?I\\xb2#?\\x92\\x0b\\x92\\xbf\\xc0\\xc7\\x83\\xeb\\x9b\\xe0q\\xbf\\x82L\\xe6V\\x9az\\x8e?\\x00\\x03=\\xbc\\x8a\\xcd\\x96\\xbf\\x00e\\x9d\\xca\\xb5J\\x94\\xbf \"\\xd2c\\x92_}\\xbf\\xfc[]\\x1b\\x15\\xd1\\x88\\xbf\\xb6\\x8e4\\x1d\\x9e\\xc0\\xa8\\xbf\\xbctI\\xae\\x89?\\x93?pWL\\xb6\\x83\\x93\\xa1\\xbf\\xeeJ0\\x98.\\xca\\x9c\\xbfj\\xe7\\xeaCF\\xfb\\x9d?@\\xfa\\x1c\\xa0\\xf3\\xa2\\x85?\\x10\\xe5\\xd1\\xf0\\xfb\\xe8\\x85\\xbfg`k\\x9a}j\\xb4\\xbf>y\\x0b]Z\\x06\\x9a?\\xd8\\xd3\\x99\\xdf\\xb8\\xa0\\xaf?\\xbc\\x8d\\xc5\\x05\\xa2\\xe5\\x9e?\\xd8Lz\\x898\\x8a\\xa8?0B\\x9c\\xadn9c?@S\\xfa\\xf3A\\xa5\\x93\\xbf\\xee\\xb3\\xed\\x89\\x0e\\xc6\\xb2\\xbf^\\n\\x9bv\\xa9\\x1e\\x91\\xbf\\x8e\\xa7\\xb0l\\xdc\\xca\\xa8?\\x08\\xee\\x15!{e\\xa8\\xbf\\x1c\\x90\\'}+\\xdf\\x93\\xbf@x\\xf6n\\xe2@\\x83?\\xa0B\\x8bCu\\xe3\\x9b?\\xbc/\\x86\\xf1\\xa2\\x13\\x99?X;\\xbf\\xc3\\x91]r\\xbf<9O&\\xaf4\\x81\\xbf\\xb4m\\x98\\r\\x04y\\xa1?\\xaa\\xc0\\xbcD\\x1c\\xd2\\x92\\xbfPE\\x90\\xba\\x18X\\x8e?\\x80L;\\xb50M\\x99\\xbf\\x10\\x9e\\\\\\xde\\xe6\\xeb\\x8f\\xbf\\xe8k\\xac\\xf6\\xd0*\\x8d\\xbf\\xb8\\x88\\xaeW\\x85\\x01\\x91\\xbf.\\xca\\xaf\\xc3\\xf6&\\x9a\\xbf\\xc0\\xb7/\\x8cu\\x86r?\\x10\\xec\\xd0e\\x87+\\x90?\\xc0\\x8d\\nD\\xc3KO\\xbf\\xcc\\xd0\\xff\\xfeG\\xe1\\x82\\xbf\\xa2\\x02AD\\x95\\x17c\\xbfH>\\x94-\\xd7_\\x8d?\\xec\\xb5\\xb6\\xa7\\xd3\\xb9\\x7f\\xbf?\\x9e\\xc2\\x93\\x9a}q\\xbf^\\r3#X\\xa9\\x83\\xbfh:\\x8e\\xca\\xb3\\xd8\\x82?,d\\xbd\\xff\\xf7\\xe5V\\xbf\\x9c\\x01\\xdc\\x89i\\xf0s?4x\\xc7\\xf8X?\\x89\\xbf\\xc7\\xe0\\x84\\xb7<\\x01Y\\xbf\\xf8\\xae\\x1b@{fQ?\\x92\\xdf\\x8d\\xd9L2\\x83\\xbf`\\xac\\x86O\\xf0^;\\xbf \\xba4\\x08\\xa1#D?\\xacFB\\x95c\\xeez?\\x00\\xdbJ\\xe1\\x15t\\x0c?,\\xd6o\\xef\\xa8\\x15V?\\xcf\\xad\\'d-4\\x82\\xbf\\xc8\\xfdZ\\xa7\\x8f\\xf4Q?x\\xae\\r\\xc5J=\\x86?@?T\\xc7\\xcb\\x82Z\\xbf\\xc0R[Pf\\x87Q?A\\xb4);\"\\xe4c\\xbfU\\r9\\x04 \\xcet? \\x006i\\x10\\xf4-\\xbf\\x90\\xde\\xb3v\\xfa\\xb9U\\xbf\\x8a:\\xf5\\x88\\xddnd?\\xe8\\xad\\x89*P6R\\xbf0\\x7f{,\\xe0ym\\xbfX\\x97\\xf8\\xa7dNm\\xbf\\xdc.\\xdb\\x01\\xe4\\xc9p?\\x90\\x80\\x8c\\xa8\\xc2\\rO\\xbfH\\x9c\\x7f\\xa1\\xa3\\xeaw\\xbf\\xcaZU\\xf1\\'\\xbew?\\xf0\\xf2\\xe0\\xe1o\\xfdR\\xbf\\x18R\\xe9|\\xfcK\\x7f?|\\xe3k\\xf8\\xd2![\\xbfhM/}~\\xb5]?\\xd0zr\\x17\\x8e\\x19z?\\x05\\xad\\xce\\x8f\\xb0\\xe4v?^\\xfeO\\xf0\\x86\\xf2m?s\\x1f\\xd0)2^\\x80\\xbf\\x00a\\x9d\\x99\\xf1~+\\xbf\\xb43\\'j\\xe9\\xcfe?\\x08{\\n\\xc1A\\xa2p\\xbfab\\x86\\x10\\r\\xda|\\xbfp\\xcfd\\x91\\xe7l^?0\\xdc\\xca5\"\\xdc\\x8a?\\xcc\\xdc\\xf1y\\xac\\xbat?h\\x90\\xa1i\\x16\\xael\\xbf\\x10\\x0f8\\x91\\xfc\\xcd\\x80\\xbf\\xf0j\\x13@&\\x98s?\\xc05\\'\\xd4\\xc0oT?\\x80D\\xbc*W\\x13u?\\x80\\xc5\\x02A\\xcfyq\\xbfOwP\\\\\\xad\\x0f~\\xbf|\\xe1\\x18$\\xf7\\xccU\\xbf\\xd8\\xbc\\x17\\xa0\\x19\\'g?`\\x88\\x17qc\\xd8W?\\xe4u\\xf2-\\xff\\xb9\\\\?\\xda,\\xf9<ziz\\xbf\\x16\\xa0s\\xfd\\x189r?\\xd0aN{?~D?\\xa0\\x1d\\n0\\x0e\\x86O\\xbf\\xa6,e\\x1c\\xb7\\xe4p?\\x00\\x18\\x94\\n\\xc5\\xcc0\\xbf\\xc0\\xc8G3\"\\xfa]\\xbf@\\x0f`\\xa8M#M\\xbf\\x9eR\\x8a\\xf7)\\xbd4? 4\\xe0\\xe3\\x9a\\x83w\\xbf\\xd0$[U\"\\xefv\\xbf0\\xf8\\xeb\\x84\\xe4\\x0eP?\\x85\\x91Wl\\xda\\x81}\\xbf0\\xfc\\xeb\\x89\\xbeG]?,d\\xbd\\xff\\xf7\\xe5V\\xbf\\x11\\xb5\\xa4\\xa3S\\xbb}?\\xda\\xdb\\xb9\\xcdB\\xcfy\\xbf\\xea|\\x8f\\xff\\x0c7t?n\\x04\\xe0\\x08:\\x01P\\xbf\\x80;\\xef\\xd2\\xecr/?\\x9a0U[D\\xe2^?\\x02b>vD\\x89S\\xbf$\\x85\\xea\\x977\\xc3S\\xbf\\xa0t$v\\xa1H&\\xbf\\x86\\r\\x0b\\x7f\\xa5\\x14r?\\xe0\\x10<\"r\\x87\\x1a?(;\\xb6\\xd8\\xc3xS\\xbf5\\x0b\\xedo\\xcdFa?\\xb8\\xa2>\\xc4\\xd5$r?\\xa8l\\xbc^\\xbd{l?x~\\xbb\"|bn?\\xfc\\x18r,(\\xb7!?\\x98\\xc0+\\x1a;\\x812?\\x96\\x8b!M\\xc5\\x7f\\\\?\\xc8\\x08k%>\\xa0]?\\x80:R\\xc5\\xaa\\x8dJ?47\\xc2\\xb7\\xda\\xf0_\\xbf~z\\x0b\\x08\\x89ZU?\\xc8\\xab\\x97\\xf9\\xb4\\xc8Q?p\\xb8M\\xdd\\\\\\x98P\\xbf<\\x13f\\xe8\\xe0.^\\xbf!Q\\xc7\\xae\\x08Iy\\xbf\\xa0\\xb3\\x90\\xf4[\\xb20\\xbf\\x80~\\x0eg\\'\\x1a\\x1c\\xbfp.\\x89\\xec7\\xf0Z?\\xb21\\xc9\\xc5=\\x1dO?@\\x08t\\xf8\\xf6\\x9e]\\xbf\\xf0#Fxnk`\\xbf~;\\x00D\\xeb\\xbfb?\\xecOC\\xffaSc\\xbf\\x82u\\x8c\\xc4\\x92jo\\xbf\\nP\\x8a\\x8f(\\x8ah\\xbf\\xee\\xab\\x0b\\xa6\\xd5\\x84s?\\x10T\\xc5\\xe5\\xe1\\x00_?\\xc9\\x89G0 _t\\xbf\\x809\\xb7T:\\xf93\\xbf \\xce\\xeaX\\xfb`Q\\xbf\\x04Z(C\\xc5\\xe4g\\xbf\\xb0\\x9f\\xfbc\\x13\\xe4m?@8{\\x89a\\x0cF\\xbf,\\xad\\x85w\\x8d\\xdcn\\xbf:\\xc7c\\x9c\\x07\\x80\\x80\\xbfX\\xef\\xb0\\xcd\\xf8Gw\\xbf\\xc0\\x0cD\\xea2\\xa1:\\xbf\\xb4\\xa3+\\x18,Gt\\xbf\\xdc>\\xfaC*bX\\xbf\\xb02yW\\xa2\\xcaU\\xbfeh\\xed\\xecW\\xb4u?$(\\x8e\\xc4\\xbcEa\\xbf\\x00.r\\xb3Y\\xc5K?\\x90\\xcd?\\xb4\\xa2\\xdbQ?P&\\xa2\\xc1\\x07P5\\xbfpkT\\xd4}\\xb0O?\\xfeJ\\xd8\\x0b\\x1b`t\\xbf\\xe0\\x12\\x19\\xb8<\\xe4-\\xbf\\x98`3\\x94$\\xaeP\\xbf\\x90\\xe5\\x88\\x891\\xa1r?\\xd2\\xb2\\x0e\\xa3kBl\\xbf\\x00CGC\\x89\\xa4\\x15?f\\x84\\xe5\\xd6~\\x85\\x91?\\xc4%CU\\xc8\\x93q\\xbf\\xedj&\\xad\\x82\\xd0R?\\xd4?Z{[)\\x84\\xbf\\x9c\\x01\\xdc\\x89i\\xf0s?\\xda\\xdb\\xb9\\xcdB\\xcfy\\xbf\\xbf\\xd5\\x16\\xed6\\x10\\xa4?8\\xe0\\xe8;\\x96\\xb3v\\xbfG}\\xa5\\xe5\\xa6/g\\xbfLN\\x9a\\x9c%)\\x97? \\x92\\xa3mR\\x19n\\xbf\\x02\\xd4\\x8d\\xd2\\x1d\"_?Q\\xf4\\xd1\\x14\\x85\\xb2u?@\\x1e\\xbd\\x81\\x1b!>\\xbf:UP\\'\\x05!p?\\xc8\\xees-\\xd3\\x1e\\x89\\xbf@\\x1a\\x85\\x85b\\xd7n\\xbf\\x0e\\xbd\\xee\\xbe\\xebaw?\\x8f\\xa6\\x00\\x080\\x9e~\\xbf\\x80\\xb3\\xfef\\xa2\\xdcM\\xbf@v\\x05\\x8b\\xb3\\xbfn\\xbf\\xba\\x12?\\xfc\\xe6\\xc0j\\xbf@c\\x95\\x19,rB\\xbf06Y\\xf3\\x91VA?\\xb7\\xd4\\xad\\x19]\\xf3\\x88\\xbf\\xcag\\x89n\\x11Fr? \\x8f\\xdf&\\x9c?]\\xbfH\\xe2\\xea\\x8d\\xee?\\x80\\xbf\\xc0\\xf8\\xbb!I&T\\xbf\\x10$\\x1e\\xc5\\xc2t{?^\\xd9\\x9e\\xb5\\x1a\\xd9\\x82?x5\\x96\\x92E\\xe3~?`\\x06\\x07m\\xca\\xa1P\\xbfj\\xf0\\xe0\\x9e_\\x0b\\x80?0z\\xa1\\x14o;w\\xbf\\xcb~\\xb6$\\xc6/j\\xbf&\\xa6H\\\\R\\x01\\x80?pr\\x90\\xb2\\xc4\\x7f\\x81?\\xd3+?\\x99\\xa71\\x8b?\\xc5\\xc2|\\xb5R\\xeb\\x8f?\\xb9\\xb9\\'\\x0e\\x01iu?\\xa0\\x0f\\xeb\\xf4\\x1e\\x92P\\xbf4\\x83\\xca\\xf5\\xdeo\\x8c\\xbf\\xfc\\xa2\\xaa\\x91\\xe5\\xf1\\x92\\xbf\\x04\\x92CNh\\x19S\\xbf\\xc0\\xe2!\\x80\\x87\\xa9j?0\\x0c\\xb0\\xb0J\\x88\\x88?@\\x0f\\x07\\xa5\\x05\\x0b\\x95?\\x80\\x80G\\xbf|\\x858?\\xb0\\x94\\x95\"1_\\x93\\xbf \\x98\\xc3\\xc7\\xf6\\xe6\\x85?\\x84\\xceT\\xf9\\xbc\\xb5\\x89?JS\\x0c\\xa8\\xe7\\x00\\xa3?O\\x02d#M\\x80\\x92\\xbf\\x99\\xe5\\x82H\\xbb`\\x83\\xbfHk\\xea\\x82\\xda\\xf9]?\\xe0~\\x93\\xdf\\x00\\xeaQ?\\xc4\\xe6\\xe5\\x05\\'\\x12\\x80\\xbf\\xdc\\xda\\x19\\xd9\\xedfr?\\x94{\\x86\\xd3\\x8e\\x97\\x8a\\xbfx\\x0f\\xc8\\x9c\\x01\\xa0R\\xbf\\xb0\\t\\xe4\\x92\\xc1%q\\xbf\\xe4\\xa3\\xceZG4\\x84\\xbf\\xfcNT\\xb5\\x92Ly?H\\x1e\\xce\\xbby\\xa3g?\\xbcEb\\xa5\\x15\\xd9\\x86?\\xbc\\x92\\x942\\xe7v\\x94\\xbfn\\xec\\xeb\\xe4;4\\x90?\\x0b\\x8b\\xe3\\tkRv?=9\\x8b\\xf7V\\x9a\\xa9\\xbfaHLxo\\xb0\\x8f?\\xc5\\x95/\\xfb3\\x84k?\\xea\\xf2\\x07\\xec\\x00\\xbd\\x9e?4x\\xc7\\xf8X?\\x89\\xbf\\xea|\\x8f\\xff\\x0c7t?8\\xe0\\xe8;\\x96\\xb3v\\xbf\\xdb(\\xb3\\x02\\xf7\\xa1\\xa2?\\xc8\\x7f\\xa4\\x96F\\x93u?`\\x11\\xe1\\x90Y\\xaf\\\\?\\xda\\xea\\xe1\\x87E\\xd2\\x8b?\\x8c\\xea\\xf2\\\\\\xf0\\n6\\xbf\\xe0`:\\xfaF)8\\xbfV\\xedA\\x13K\\xd2\\x82\\xbf\\x88\\x9e\\x06aZ\\\\Y?\"|N\\x1b\\x08\\x10q? \\xbdB\\xc8M\\x91\\x93?@\\xf2\\x11\\xda\\xc0N<?N\\\\\\xd5\\xf3{\\x92\\x80\\xbf`\\\\D\\x89\\xa83\\x82?\\x18\\xb0\\xbex\\xaa\\xfbd?\\xbf:T\\xf3teh?z\\xa8q/jZu\\xbf\\xd85w\\x04\\x87\\xf5p?\\x98\\xc4\\xa2\\xab\\xb7$`\\xbf\\xe411\\x8f\\xd8,y\\xbf\\xd4\\x1c\\xed\\xd3\\xf8ia?\\'\\x05\\xf8\\xc1i\\xd4l?\\x80G\\xe3\\xc3\\x9f;N\\xbf,2\\xbc\\xcf\\xa5\\x12\\x8b\\xbf\\x08KD\\x0bic`\\xbfxYT\\xec\\xde0a?\\xc4\\xc9\\xe4\\xf6\\xed\\\\\\x93\\xbf\\xe6\\xe7\\x8a\\xd8w\\xdd\\x87?\\xa8\\x8a\\xafw[\\xcd\\x8c\\xbf\\xda\\xca\\xc5\\xe8\\x86\\x12\\x88\\xbf^\\x90>)J\\x16\\x86?p\\x15\\xfa=\\x93h|\\xbf\\xb0\\xb6\\x98>T\\xddr?<\\xd5\\x12\\xfa\\xa1J\\x92\\xbf\\x94\\x1b\\xd1\\xa5\\xd4\\x06\\x91?\\xde\\xcfv}\\xe6\\xe5\\x88?\\x98\\xd4\\xd8\\xd7j\\xd3\\x86? \\x08\\xb7\\xc8\\x90H\\x82?.\\xab|v\\rl\\x87\\xbf@\\xe2_\\xe7\\xf8\\xc0B?TC\\xfd^g+\\x9b\\xbf\\xee\\x14\\xd4\\xb8\\xff\\xdc~?\\xbe1x.\\x16l\\x94?\\xf0\\x9e\\x12\\x7f~\\x98~\\xbf~\\x96=\\x9e\\x8e\\xfd\\x87\\xbf\\x98\\x8d\\xdd, ;t\\xbf\\x10\\xdb\\x06\\x1c\\x1eRz?\\xe8\\x80\\x911\\x0b\\xa3\\x81?Sz\\x04\\xf7m}x\\xbf`\\xfawV\\xa4\\xe5[?\\xa820\\x05`*e?|\\xbb\\xd0x\\xecb\\x82\\xbf\\xc0\\x8e\\xadP\\x93q3?\\x80wj\\xc5^i6\\xbfP\\xe8{\\x90q\\xcb\\x86\\xbfL\\xb4\\xc2\\xdd\\xfc\\xf8\\x81\\xbfx\\x84\\xd3\\xf6\\xb2\\x0b|\\xbf\\x17go\\x03R\\x11\\x91\\xbf\\x80\\x02\\xcc\\x82u`e?rf\\x0f\\xc8\\x14\\xa1\\x86?Vz3\\xfc\\xa3\\xff\\x7f\\xbf\\xe1\\x92C\\xc4)on?w\\xff{\\x7f\\xf9\\xe0t?\\x9fzFfm(\\x8b\\xbf\\xb9^\\xf3@C=i?\\xb3\\x8d\\x82\\x07\\x91\\xeeu?Q\\x16\\xed\\x84Mu\\x80?\\xc7\\xe0\\x84\\xb7<\\x01Y\\xbfn\\x04\\xe0\\x08:\\x01P\\xbfG}\\xa5\\xe5\\xa6/g\\xbf\\xc8\\x7f\\xa4\\x96F\\x93u?ai\\xb1\\x93D\\x98x?\\x06\\x1c\\ne\\xa8:i\\xbfw\\xb8\\xd5u`(f?\\xea\\xa9\\x9f\\xf3\\xcf\\xb2H\\xbf\\x12\\xbc\\xd3\\xc4`\\x17Y?\\xe2aqn\\x07\\xccY\\xbff\\x8c\\xc0\\xcc\\xff\\xfcp\\xbf\\x86\\xa5\\xd4Q\\xc1\\xaax?\\x00\\xff\\xfe\\x00\\x87\\xf3\\x80?\\x1e\\xf1\\xe7w\\xd0\\xeam\\xbf\\xc6\\x11\\x92\\xb66\\xb2-\\xbf\\xc0\\x86\\xad\\xb5c\\xd84\\xbf@4C\\x9eR\\xbdK\\xbflV\\xf6x \\xabC\\xbf*\\x8b>\\x08\\x98\\xb1N?\\x0e\\xa5\\xcd\\xf6\\x97<C?\\xc6\\xaeb\\xba\\xcfue\\xbf\\xc24\\xf2G\\xb3Mu\\xbf\\x05\\xbd\\x9d~\\xf7\\x11t?2\\x87\\xe3\\xb1\\x86\\xcfR\\xbf\\xdc\\xea\\x14\\xa4e\\xb1e\\xbfP!j\\x95\\xe3wz\\xbfy<z\\xcf\\xbdEq\\xbf\\xd5\\xea\\x93\\x85-\\xef`\\xbfX\\x1538\\xaa\\x87|\\xbfH\\xc0\\xd1\\xfb\\xa6\\x82f?@6\\x12{\\x08Ly\\xbf)V\\xe0\\xdb\\x8d\\xa5\\x81\\xbf\\xec8H\\x8bO1v?`m2\\xc7s\\xd0f?\\x1c\\xe3\\x8f\\x84JTE\\xbfVR\\xeb~\\tH\\x7f\\xbf\\xd7\\x1d\\x89Z\\xa5\\xac\\x82?\\xf2\\xc1\\xf6^9a\\x85?\\x02\\xf7mF?\\xb5r?D\\xe6\\x90\\xd3\\xc3\\x13h?_\\xe5/S\\x8a)w\\xbf\\x18^w(\\x92\\xefh\\xbf\\x18v\\xb7\\x1eo\\xd8u\\xbf\\n,2\\x1f\\x9cl8?\\x00xw\\x1do\\x81\\x01?\\xe0\\x9b\\xc7\\x08c\\xf1u\\xbfl\\xcd\\x1db\\xb6Vb\\xbf\\x00\\xea\\x0e?\\x19\\xb5\\x03?\\x80R\\xa8(\\xcd\\xd5?\\xbf\\xf8\\xfd\\xf9\\xfcE\\x86\\x81?O\\x9f+\\xf9\\xf7\\x9fx\\xbf\\x1f\\x84\\xacMy-g?B\\x01]\\xadg]u?B\\x14lI\\x03dy\\xbf\\x95\\x19\\xbfYN1Q?XD\\xaf\\xc9\\xe5\\xedZ\\xbf>\\x82|!\\x12~H\\xbf\\x88\\xa8XS\\xc0gq\\xbf\\xea\\xfe8\\x9b\\x95Or\\xbf\\x7f\\x7fv\\x84\\xb4\\xa8d\\xbf*\\xb2O\\x0c\\x95\\x85]?\\x15N\\xa2r\\x11\\xc4m?\\xc0;\\xef\\x9d\\x07\\x94v?\\xe0wW\\xdak\\xd6[\\xbf\\xdc\\x8b\\xa9\\xbd\\xfbnn\\xbfP6\\xf5\\x92\\x84\\x07s?\\x0c\\xdd\\xf7-\\xc7*Q\\xbfe\\xe65%O\\x93v\\xbf\\xa0\\xa9B\\x14\\x90f}\\xbf\\xf8\\xae\\x1b@{fQ?\\x80;\\xef\\xd2\\xecr/?LN\\x9a\\x9c%)\\x97?p\\x11\\xe1\\x90Y\\xaf\\\\?\\x06\\x1c\\ne\\xa8:i\\xbf\\xd4\\xb5k\\xdf.\\xe1\\x9d?\\xb0\\xcb\\x1d9w([\\xbf\\xb4\\x08\\xed\\xd8\\xba\\x9e[? \\xef\\xb2\\x02\\x99\\xa0P?\\x00k\\xbb\\xa18tI?\\x1f\\xe2K\\xec\\x82\\x01q?Am_\\xdbz\\x9f\\x83\\xbf@\\x11r\\xbe\\xbbhj\\xbf\\xc0G\\xa4\\xbdv\\xc9}?\\xffl\\x1f\\x08\\xac\\xefQ\\xbf\\xe00hI\\xef\\xc1w?\\x00\\x18S\\x039\\xa5\\xf8>=\\x8d\\xca>\\xe5\\xc7a\\xbf\\xc0\\xe5\\xd9r\\xecQ6\\xbf@\\x10\\xe8\\xa3\\xb3c/?<\\xd8\\x97\\xb3^\\x16\\x80\\xbf(\\xbe\\xea\\xe1\\x83rq?\\xd0\\x89mn\\xcf\\xe0j\\xbf%\\\\k\\xa9\\xa7\\x89~\\xbf@\\xc8\\xbf\\x1d\\xf7bl\\xbf\\xd0\\x04\\'x!!u?2\\x8b\\xb4\\xa3u\\xad\\x82?`\\xf3\\x88o\\x84\\xe9:?\\x80\\x1aB\\xd1\\xe2=B\\xbf\\x98\\xfd\\xe3\\xf5\\xbb\\x1ey?\\x00\\xf9\\x16\\xc0\\xaejT?\\xfa\\x1e\\n\\xcf\\x00;{\\xbfx\\x17A\\x93w\\rx?\\x00\\x17\\x9b\\x95\\xf4\\xfcE? 73c>\\x98\\x87?\\xf0\\x98*j\\xf5\\xd9\\x86?\\xfc\\xb9\\xe7\\xf6s\\\\t?\\x00\\x1c@\\xb8K\\x0ei\\xbfp\\xe9\\xc5!\\xc5 n\\xbf\\x88\\xe8\\xe1\\xe4\\n\\xb5\\x8b\\xbf\\\\\\xaa\\xa2\\xcf\\x04c\\x86\\xbf0\\xf5\\x81Y\\xc5\\x08z?\\xb0\\xdb\\x9dxv\\x18\\x87?[\\xf0\\xaa_\\x1a/\\x92?\\x00\\x01\\xe2&3\\xefj?(\\x9cW\\xb7\\xfa6\\x93\\xbftX%\\xb2\\x97r\\x84?hv\\xfa\\xe3\\xf2\\x0e\\x80?\\x80\\x98\\xbd\\xb2N,\\x9a?\\x9c\\x9f\\xb1\\xdc\\xc3\\xdd\\x83\\xbf\\x90\\x00\\xf6\\x88o\\x86}\\xbf`\\x85\\xeb\\xa1\\xa0`F?\\xd0\\x80\\xd3 Z\\xa5a?\\xc0\\x1e\\xaf\\x19\\x83fl\\xbf\\xe8\\xb7w\\x1e\\x92\\xech?p\\xa3\\x00\\x94~1n\\xbf\\x80\\x83\\xe6BTQ,\\xbf\\xc8\\xc7=\\n\\x1c\\xbfk\\xbf\\xe8\\\\\\xcf\\x90\\x04\\x11~\\xbf\\x18o\\x10\\x18\\x00\\xb0f?P5s*\\xaa\\xfec?`\\xe5c\\xa7\\x8e\\xaax?\\x84v2\\x17\\x8e\\xb1\\x8e?\\x0cF\\xe1\\x0e\\x8dB\\x8a?\\x00\\xa0\\xf9\\xf3\\xcc/\\xc0\\xbe\\x80v\\x0f\\xd14\\xf4h\\xbf\\x8a\\xbd\\x17R}t\\x81?L\\xb0P\\xb3\\x88\\xedv?\\x80\\xa8l\\xd9G\\xc8;\\xbf\\x92\\xdf\\x8d\\xd9L2\\x83\\xbf\\x960U[D\\xe2^? \\x92\\xa3mR\\x19n\\xbf\\xd9\\xea\\xe1\\x87E\\xd2\\x8b?w\\xb8\\xd5u`(f?\\xb0\\xcb\\x1d9w([\\xbf\\xf6\\xdc\\xb1-\\x99B\\x96?\\xea\\xd1iWe-K\\xbf\\xc8\\x10\\\\h\\xafQZ?\\x0b\\xbd\\xb9\\xf5\\xf9\\x14\\x82\\xbf\\xb0\\x87<\\x9d\\x1a\\xeaV\\xbfTvo}\\x9f\\xa7X\\xbf\\x06~\\xfa\\x07\\xd4\\xb7\\x8c?\\x96M.DY*t\\xbfX\\xd13m\\xe0\\xcc\\x80\\xbf\\x00`\\x04(^\\x048\\xbfL\\x7f\\xa8i\\x07\\xddv?\\xe8]X\\x00D\\xfe`?\\\\\\x83\\xe2\\x1b\\xafzw\\xbf\\xe8\\xcc\\x15\\xd8Z:R\\xbf\\xecZ\\xfb\\xc99\\x89j\\xbfH{0X\\xf0nw\\xbf\\x8c\\x05B:LG\\x7f?\\x8cf!\\xf8\\xb9\\xc5c\\xbf\\x16gO5O?\\x8e?\\x1c/\\xf2\\xc5\\xd1@\\x8f\\xbf\\xf8\\xce\\x17\\xa8\\xcea{\\xbf\\xfc\\x8d<\\xfa\\x89@{?rE\\x90\\x1d\\xa5\\x88\\x83\\xbf`?\\xb8S]\\x92U\\xbf\\x08\\xc4\\x1e%_\\xfd\\x8e\\xbfW\\xbcUEp<h?<\\x98\\x82\\xd1a\\xd7u\\xbf \\x7f\\x82\\x1c\\xaf\\x7fg\\xbf\\xa6F3\\xac\\x16F\\x81\\xbf\\x10\\x16\\xdb12\\x14f?\\xa2Z\\xb3~\\xee\\x02\\x8b? \\xb5}\\x94\\n\\xb9[\\xbf`\\x9d\\x9d\\x138\\xbe\\x84\\xbfp\\xfa\\xd6!\\x04yj\\xbf(h\\xee\\xfbMs\\x88?\\x10\\x0b;F\\xbf\\xf0l\\xbf\\x80\\x02\\xfe\\xc8R/\\x85\\xbf,\\x03\\x93\\x9471\\x82\\xbfd\\xc2\\xd4\\xa1\\x05\\x1dq\\xbf\\xf0\\xf9\\xa0\\xc6\\xd8]\\x92?\\xe1\\x7f\\x85l\\r\\x02\\x84\\xbf\\x90\\xd7\\xa50\\x1e;m\\xbfX\\x19\\xc4\\xd1\\xb4!\\x85\\xbf.w\\xcbk\\x99F\\x8d?&\\x19\\xc4\\x05H\\x0c\\x81?\\xc6\\xb6Q\\xac8\\xd8s?\\xd0\\xa3\\xfa^\"\\x06b\\xbf\\x9c\\xe9fO\\xff\\x10k\\xbf0\\rO\\x0c\\xbf\\xbe\\\\\\xbf#\\xe8VN\\x1bw\\x89?\\xbf\\xe3\\xe0}qgs\\xbf\\xc4\\xd4V\\xb6\\x80\\x02n\\xbf\\x10\\x86\\x96\\x81\\xed\\x15S\\xbf>\\x9a\\xfe*\\xdb\\x9dq\\xbf\\xa8\\x84{)\\x84\\xa3_?\\xf8m\\xf6\\xba\\xcb,s?\\x92\\x81\\xe6u@\\x04c\\xbf\\x00\\xbd\\xb0rU\\x90\\xf0\\xbe\\x8d5|Q\\xaa\\xd5`?\\\\\\x0f\\xa2hkEj\\xbf\\x12\\xa6\\xd1>\\x1bcC?\\xa8!^\\xc4\\x8cAa?\\xd4\\x8b\\xc8\\xcdi\\xcfh?`\\xac\\x86O\\xf0^;\\xbf\\x02b>vD\\x89S\\xbf\\x02\\xd4\\x8d\\xd2\\x1d\"_?\\x8c\\xea\\xf2\\\\\\xf0\\n6\\xbf\\xea\\xa9\\x9f\\xf3\\xcf\\xb2H\\xbf\\xb4\\x08\\xed\\xd8\\xba\\x9e[?\\xea\\xd1iWe-K\\xbfH\\x1a\\xda\\x10\\x94\\xf5j?\\xf7\\xfc\\xfd\\x95\\xa2\\xd7Q\\xbf\\x00\\n\\xddK\\x02\\x07\\xdf\\xbe7\\xdb\"%/aE\\xbf\\xae\\x07\\xc0\\x8dJn(\\xbf\\x08\\xe5\\x83\\x15\\xadvC\\xbf\\xa0\\xaf\\xfa\\xa3T\\xdd=\\xbfyq\\xec\\xe6\\xe6\\xfcn\\xbf\\xa8\\xb1LM\\x12\\xd4@\\xbf(\\x1f\\xa3\\x8f.\\x99T\\xbfl:\\x82KK\\x03R?\\x87\\x8a{d\\x05MN\\xbf\\xeb\\xb1\\xeer{\\x087\\xbf\\x01tEb\\xafeQ?\\xd4\\xef\\xb4\\xb14\\xdc1?\\xa3\\x8e\\x8f3(\\xc5S\\xbf\\xea&\\xe6\\xb2\\xf2id?\\xc8D<\\xd3\\xba\\x1aW?\\x0c=UG\\xf7TQ?e\\r\\xf8\\xff\\xa8\\x93o? \\x88\\xa0\\x91\\xac\\xdeh?R\\xc1\\xcbZMfE?b\\'\\xcd^\\x03DT\\xbf\\x80\\xb9d@\\x07`-\\xbf{:\\xa3C\\xec\\x91f?p\\xa8\\x1d\\'\\xb1ML\\xbf(\\xa7\\x9d\\xffJ\\x94P\\xbfi\\xe9q\"\\x99nf\\xbfKgr\\xfc\\xbc\\xffP?~\\n+S\\xec\\xf5N\\xbf\\xc0F\\xf2\\xc3A\\x16-\\xbf\\xc8*W9\\xe8\\x9a]\\xbfH\\xf9\\xb2@\\xd8?C?sB\\x89h\\n\\x84w?\\xc0Q\\xd0s\\xbf\\xa0=\\xbf\\xc2?\\x8b\\xc0\\x1f\\xceg\\xbf\\x0e\\xbfz\\x81\\xb2\\x1cp\\xbf\\xacf\\xbb\\xa4\\x91\\xf0Z\\xbf\\x7f\\x93\\\\*;Aq?>YN\\xa5\\xa7\\xf8Q\\xbf\\x10\\xfa+\\xbeG\\xf1B?\\xf4\\xab\\x0e\\x9d\\r\\x99[\\xbf\\x80\\xb3@-\\xe7\\\\X?TGl\\xcdW\\xbdq?\\x80YD5\\xa3g\\t\\xbf\\xe3\\x81\\x9e\\xc5\\x85wf\\xbfR\\xb4\\x0b}\\x99\\xe5V\\xbf\\x00\\xb28\\xd2\\x96A\\xd4>\\xe7c03.\\xccp?h\\xd8\\xd98\\xaf\\xedY\\xbfXD\\xbb\\x0e\\x0e{V?\\xbd\\xe2\\r5\\x06\\xb3S?\\xa2O\\xcf/\\r0T?\\x80B\\xc2\\xb1cDH\\xbf\\xb3\\xe5\\t~;\\x88Q\\xbf||3\\xc38\\x98\\x98?\\xda\\xa8A]6^V?9\\x1e\\xc6\\xcc\\x9d\\xe9a\\xbf\\x8a\\x80\\x17t\\x1e\\xc8\\x99?\\xf0\\xe5:\\xe8\\x07\\xc5A\\xbflG\\xf5\\x0f\\xca\\xa2f?\\xe8\\x06\\x89\\x9e\\x87G\\x92\\xbf \\xba4\\x08\\xa1#D?$\\x85\\xea\\x977\\xc3S\\xbfQ\\xf4\\xd1\\x14\\x85\\xb2u?\\xe0`:\\xfaF)8\\xbf\\n\\xbc\\xd3\\xc4`\\x17Y? \\xef\\xb2\\x02\\x99\\xa0P?\\xc8\\x10\\\\h\\xafQZ?\\xf7\\xfc\\xfd\\x95\\xa2\\xd7Q\\xbf\\x04oI\\xa1\\xee\\xcc\\x97?\\x00\\xd8\\xc5\\xec\\xa9\\xa7\\xd8\\xbe\\xea\\x13\\x08@\\xdb\\xf9d?\\xf8\\x91\"A\\xb9\\x80z\\xbf\\xbc\\xa2\\xb1E\\xd6[`\\xbf*&ZC\\xd3\\x0fp\\xbf\\xc8K7\\x9d\\xd0qw\\xbf\\xd8\\xe9\\xce\\xe3\\xfb1h\\xbf\\xc0\\xa7\\xc4x\\xcc#4\\xbf R\\xc0\\xb22G\\x81\\xbf06m]\\xa0JL\\xbf\"\\x838\\xebjgg\\xbf|\\xd6i\\xd1 \\x80Q\\xbf\\xc7\"F\\x8d\\xddix?li3y\\xe2\\xf6\\x83?\\xca\\xa1=\\x82\\xef\\xa2@\\xbfR\\x03G\\xf3H\\\\\\x88?\\x00J\\x1cJ\\xef\\xc8S\\xbfP{\\xe2c#\\xaf\\x87\\xbfei\\xe5l\\xcf\\xb2\\x83?\\xc1\\xd3\\x86!PX\\x8c?@\\x93fIt\\x01^\\xbf\\xb0\\xb7t\\x15eVz\\xbf4\\xeb)l\\x98p\\x81\\xbf\\xd8\\x80\\xa6\\x1d\\xec\\x1ab\\xbf\\x18*\\x86\\'\\xb4R\\x82?\\x01\\xdb\\x1c\\xbc\\x03\\xf8\\x8d?\\xa0\\x92F\\x84=\\xbc\\x8e?dZP\\xdf\\xcc\\xb2s\\xbf$\\x0eh=|V\\x8a\\xbf\\x90L\\x8am\\x89ka\\xbf\\x10\\x895\\x1fa\\x06\\x83\\xbf\\xce\\x97\\x11\\xc7\\x80\\x19~\\xbf\\xb0\\xef?P\\xd0\\xbdo?\\xac\\x84\\xa7g\\x04\\xfb\\x88?\\x10,\\x80o\\x12\\xfcz?\\xf5\\x89\\xb46\\n\\x89\\x83\\xbf\\xf8/\\xedAWTz?\\\\#\\x17\\xc8\\x11]{?\\xa45E\\xafR\\xe3y\\xbf\\x10[\\x0b\\xa1\\x99\\x1fs\\xbf\\xf6\\x06\\xf7\\x1f\\xaeDw\\xbf\\x04\\xd9\\'\\x98\\x87B\\x80?(\\xbd+G<\\xdey?\\xbc\\x8bH\\xa1\\xf4\\x97~\\xbf\\xdd\\x81m\\nI\\xd4\\x7f?\\xd3c\\xe5\\xfc\\xa6\\xb4q\\xbf\\x00[/\\x17\\xd91V?\\xdc\\xfe\\xc2\\nH\\xc3W\\xbf\\xf4\\x02\\x18\\xbf@\\x82^\\xbfxN\\xbcv1\\x9bX?\\x00\\xac\\x98\\xcf=bI?\\xac\\x0c\\xc9\\xc1\\xeahb?\\x18\\xab(:\\xadpg?\\xa0!P\\xe0\\xe08`?\\xc6\\x9a\\xf5\\x02s\\xb8\\x81\\xbf\\xf8-\\xc0x\\xa77T\\xbfhq\\xe7\\xa0\\xbd&\\x8b?\\xf2\\xa0q\\xda\\\\\\xc9x\\xbf\\xb75\\x81\\xecv;i\\xbft\\x8fN\\xb6\\xdb\\xd2\\x84\\xbf\\xacFB\\x95c\\xeez?\\xa0t$v\\xa1H&\\xbf@\\x1e\\xbd\\x81\\x1b!>\\xbfU\\xedA\\x13K\\xd2\\x82\\xbf\\xe2aqn\\x07\\xccY\\xbf\\x00k\\xbb\\xa18tI?\\x0b\\xbd\\xb9\\xf5\\xf9\\x14\\x82\\xbf\\x00\\n\\xddK\\x02\\x07\\xdf\\xbe\\x00\\xe0\\xc5\\xec\\xa9\\xa7\\xd8\\xbe\\\\M<\\xbe\\x02@\\x87?\\xd0\\xf4Yy\\x9f\\tn\\xbff\\xb72\\xb0e\"Y?,g\\xfcD\\xd4O\\x86\\xbf\\x08*\\x1d\\x84\\xff\\xe7P?!\\xd0\\xb8\\x82\\xc7\\xb7\\x86?\\x00@\\xf3\\xed\\xa1\\xae\\x04\\xbf\\x00c\\xbcLhF\\x17\\xbfR\\xacY\\xb4\\xc2+L\\xbf\\xd5\\x91b:\\xa1\\xd0v?\\xb4\\xdd\\xa7\\x8c\\x1dXl\\xbfp\\x91`\\xd3\\xa8\\x97B?\\xb4\\xd9\\x01\\x84\\xfc\\xa9v?\\xa8-\\x85zzU\\\\\\xbf\\xd6m\\xeb\\xe5\\xffWZ\\xbf \\x84\\xd9R\\x13\\xa2C\\xbf\\x08\\x803i\\x94?y?@\\x18n,,\\x1eF\\xbf\\xad\\xd1\\xd1\\xe6\\x9e\\xc2\\x80\\xbfX\\xa0\\x86\\xebi4\\x89?\\x08h\\xcesYke\\xbf\\x84\\xd11P\\x92(\\x95?\\xf5l\\xd6\\x03m\\x07x\\xbf\\x80\\x99R\\xb9\\xf3\\x9d0?`\\xa9\\xc4\\xbe\\xecul\\xbf\\x18\\xe84B\\xde\\xeei?3\\x98\\x84QS\\xdax?\\xce\\xca\\xbc\\x9a\\t\\xc8\\x85\\xbf\\x98h\\x1a\\x1e\\x0f\\x7fs\\xbf\\xf4\\x9f\\xd7\\xf1\\xc9\\x8d\\x86?`=\\x13\\xaf\\xb5X^?\\xf5\\xa1sV\\xb1\\x89\\x94\\xbf\\xc0\\x8b\\x14\\x964\\x02r?X=\\xd4\\x10\\x08\\x86\\x8d?\\xb4>\\x0f\\xa8+\\x8fy?8\\x02$\\x9e\\xf9\\xc6c?L2\\xcb\\x85\\x8a\\xa8\\x8e\\xbf\\x7f g\\xdc\\xd1P\\x87?\\x90\\xb9%\\xe0\\xe7\\xb6l?\\x80]A\\xc4\\x04\\xa9c\\xbf\\x00\\xcc\\xc6\\xfb\\x9e\\xa07\\xbf\\x10e\\xb3p\\x91\\xaa^\\xbf\\xa0\\x17\\xff1g\\x8a:\\xbf\\\\\\\\\\xe9\\x12c\\xf5p?\\xee\\x17\\xfdX\\x10\\xbfu?@>|waF.\\xbf\\xa0\\xb5\\x1cg\\xb9CK\\xbf\\xfe\\xe9u\\xf7\\xeb\\ts?x!\\xbc\\xfcX\\xac[?x\\x17\\xa5\\xa5\\xff\\xa9c?\\xa0\\xc1\\xc8\\x8a\\x91\\xf5o? \\xd0\\xdb\\xb2\\x8d~0?\\xb8x/e1\\x96s\\xbfb\\x1e\\xe8H\\xc3\\xb0\\x90?0i191\\x86`\\xbfv\\x10\\xc4\\x83\\xa3\\xd9\\x8b\\xbf\\xba\\tJ\\n\\x8e\\xac\\x91?].@5\\xa6\\xcd_\\xbf\\x99\\xfb\\x1b\\x8f2\\xa3\\x89\\xbf\\xa0\\xc0s\\xdd\\x03L\\x8b\\xbf\\x00\\xdbJ\\xe1\\x15t\\x0c?\\x87\\r\\x0b\\x7f\\xa5\\x14r?=UP\\'\\x05!p?\\x88\\x9e\\x06aZ\\\\Y?f\\x8c\\xc0\\xcc\\xff\\xfcp\\xbf\\x1f\\xe2K\\xec\\x82\\x01q?\\xb8\\x87<\\x9d\\x1a\\xeaV\\xbf=\\xdb\"%/aE\\xbf\\xea\\x13\\x08@\\xdb\\xf9d?\\xd0\\xf4Yy\\x9f\\tn\\xbf\\xd6\\x02\\xbf\\x8bL]\\x98?\\x8en\\xb9\\xea\\xe0\\xc3w\\xbf\\xf8-\\x91j6v\\x84\\xbf\\x9d\\xe3\\xd5\\xc00\\xcd\\x82?\\xcc\\x91\\x04\\xe7\\xf7\\xc4Q?\\x88\\x8bL\\xb2\\xb1\\x9ci?\\x14{\\xe7\\xec\\x0e\\xd2r?\\xf4\\x82\\xb9\\xdd\\xb5!7?\\xa0\\xabMK\\x8a#w\\xbfo\\x91\\xd1eS\\x17|?\\x00\\xc7\\x99L\\x18\\xab5\\xbf\"\\xf0\\xb3\\xf04T\\x86?\\x8d(\\x08\\xcd\\xa5\\xcb\\x84\\xbf\\xcf\\x9aS\\xaf\\xcc\\x82p?\\x80v\\x8e\\xc8\\xceji?\\x18\\x88\\xba\\x8f\\xf35\\x85?8\\x83\\xe6a\\xf59}?\\x00\\x8fV\\x88\\x8f\\x05\\x88?0\\xc3!`\\x95I\\x83?\\x8c\\xa4\\r\\xce\\xa5Fp?\\x00sv\\xc8F\\xc1Q?\"\\x94x\\x1e\\x02u\\x96?\\x02\\xcaX\\n\\x8d\\xa1o\\xbf`\\xa4\\xb4D\\x9f\\x85Z\\xbf\\xf4Q\\xfer\\xda\\x7f\\x92?\\xc17w\\x99\\x98\\xe3\\x86?L\\xa0\\x1c\\xb6\\xbe\\xdc\\x93\\xbf\\x16\\xefW0K\\xf0\\x91\\xbf\\xd8\\xabF\\x049\\x94\\x84\\xbf\\x08\\xca\\xe5\\x96q@\\x81\\xbf\\xaaW\\xd98D\\xa7\\x8a?<\\xfc\\xe1S\\xf4G\\x87?\\x10\\x80i\\xe5\\x90pa?\\xa2\\xec\\xa2\\xac8^\\x8c?\\xf4\\xcbe6\\x13s|?\\xf0\\xbf\\x85\\xe9\\xb4G\\x94?\\xc2\\x1a*\\xbaJ\\x88\\x8f\\xbf6w)V\\x07\\x0c\\x86\\xbf\\x1c0\\xd4\\xecE\\xd8\\x88?\\x1c\\xc3\\x95sC\\x06\\x9a\\xbf|\\xce\\x87\\xeaEc\\x84\\xbf-\\x1a\\x9c8,2{\\xbf\\xda`S\\t\\x06\\xf7\\x96\\xbf\\x02c\\xa5\\xfe~\\x9ec\\xbf:\\x8dP\\xe9\\xdb2h\\xbf\\xf2\\t6\\\\\\xbc\\xefz\\xbfb:\\x7fg\\xca\\x15j\\xbf\\x82zDU\\xa3\\xe7s?\\x18\\xd8i\\xef\\xa2\\x03n?\\xb0\\x83\\x04P\\x1e\\x88n\\xbfxe\\xcd/Z\\xf5z\\xbf\\x10\\xdf\\xa6\\x7fzj_?-:\\x93p_\\xbd\\x93\\xbf\\xf5D\\xbf\\xca\\x93>U\\xbf\\xd4S\\xa1M\\xda\\xcax?\\xe6\\xc2\\xbb\\x06\\xf96\\x94\\xbf\"7\\xca\\x8a\\x06\\x00b\\xbf\\xc4\\xe2\\xaa\\xf4\\xaa\\xe44?\\xd8\\x1c\\x05;d1c?,\\xd6o\\xef\\xa8\\x15V?\\xe0\\x10<\"r\\x87\\x1a?\\xc7\\xees-\\xd3\\x1e\\x89\\xbf\"|N\\x1b\\x08\\x10q?\\x86\\xa5\\xd4Q\\xc1\\xaax?@m_\\xdbz\\x9f\\x83\\xbfRvo}\\x9f\\xa7X\\xbf\\xbc\\x07\\xc0\\x8dJn(\\xbf\\xf8\\x91\"A\\xb9\\x80z\\xbfj\\xb72\\xb0e\"Y?\\x90n\\xb9\\xea\\xe0\\xc3w\\xbf\\x9a\\x10\\x97\\xc9F.\\xa4?\\x0eyx1\\x08\\x1b\\x81?n\\xf5(bV\\xb5\\x8e\\xbfWP=\\x90\\xca~\\xa0?\\x9c\\xf6\\n\\xbfr\\x11q\\xbf;\\xf0t\\xcb\\xa6{\\x81? \\'\\xaf\\xfcV\\xcfl?\\x13\\xde\\x86P\\x95\\x1ap?\\xb2%\\xd6\\xa8\\xdej[?$\\x1f\\x98\\x1a^\\x95\\x82\\xbf!\\xc8\\x00\\xb1g\\xf8\\x8b\\xbf{^\\xc7(\\x86\\xfc\\x88?h\\xc6\\xe92\\xd3n\\x81\\xbf\\xb4\\xe3x\\x7f7\\x81j\\xbf[\\x8d_\\x19\\xe8\\x88\\x93\\xbf^\\xa3\\xba\\xb1l\\x13y\\xbf\\xb8\\xa6\\xe2\\x14\\xdd\\x1d\\x87\\xbf\\xf7\\x07\\xc1\\xbb\\x97q\\x8d\\xbf{:\\x0e\\xcc\\x8d\\xf3r?\\x80k\\x19\\xe1\\xb6\\xf01\\xbf\\x16\\x16\\xe9\\xa4\\xca\\xfbz\\xbf\\x024b8\\xc9\\xa7\\x82?\\x80\\xe2\\x95\\x1f\\xc2\\x1bL?\\\\$~\\x81\\\\\\xebk\\xbf\\xb2m\\xa0\\xbf\\x01\\xeb\\x8d\\xbf\\x8aL\\xc0EV\\xd7\\x83?!(6\\x1b.\\xf7\\x92?\\x0by\\xce\\x1b\\x85b\\x88?\\x00\\xd9\\x89{\\xe2\\x83d?\\x93\\xd2\\x9f\\xc7am\\x81\\xbf(\\x82\\xa1\\x95@sa?\\xa4\\x0e\\xc2\\xf40\\xd6p\\xbf\\xdb8\\xef\\xdf\\x91\\x05c\\xbf\\xaa4\\x93y\\xb8e\\x86\\xbf\\xaf\\x9b\\x94\\xc16O\\x95?@H\\xdc\\x067:\\x9f\\xbf`\\x82\\x18\\x15\\xef^i\\xbf\\xedR\\xfcn1\\x0f\\x9f\\xbf\\xc3\\xcf\\xf6\\x17\\x00t\\xa3?\\xcc\\xe7I\\xd6+\\n\\x9d\\xbfL\\\\Kj\\x06\\x89Q?\\xc0T\\x92\\x10\\xcb??\\xbf\\x02\\xfe`\\x04\\xbbc\\x89\\xbf\\x00P\\x9e\\xbf\\x83\\x15\\xbb>\\xa2\\x1b\\x07\\x86\\xeb\\\\}?\\x1d\\xef\\xb6@\\x00\\x7fy?\\xc7\\xe8\\xb7|\\x06Dp\\xbf\\xb8J\\x86\\xa4\\x1b\\xc0b\\xbf.\\xa2w\\x96\\x0f\\xa3e\\xbfD\\xaeQ\"\\xe3\\xc5U\\xbf\\xc8\\xce\\x84}\\xf8\\x98c\\xbf,\\x88\\x13LUQ\\x92\\xbf2\\x9e\\xdf\\xbf\\x08]\\x8f?g\\xec\\x88#@\\x7f\\x86?\\x0c\\xc3\\x8e\\x19F\\xfc\\xa4\\xbf(\\xc8\\xea:\\x8f\\xa4\\x87?\\xdd-\\x93j\\x06\\x95\\x87?(\\x8ev\\xeb\\xed\\xdd\\x99?\\xcf\\xad\\'d-4\\x82\\xbf(;\\xb6\\xd8\\xc3xS\\xbf@\\x1a\\x85\\x85b\\xd7n\\xbf \\xbdB\\xc8M\\x91\\x93?\\x00\\xff\\xfe\\x00\\x87\\xf3\\x80?@\\x11r\\xbe\\xbbhj\\xbf\\x06~\\xfa\\x07\\xd4\\xb7\\x8c?\\x08\\xe5\\x83\\x15\\xadvC\\xbf\\xbc\\xa2\\xb1E\\xd6[`\\xbf,g\\xfcD\\xd4O\\x86\\xbf\\xf8-\\x91j6v\\x84\\xbf\\x0eyx1\\x08\\x1b\\x81?\\n\\xa6\\xa7\\xaf\\x83\\xb5\\xa0?\\xa0\\xe2D\\x0f*E\\x81\\xbf\\xd4\\xca!2f\\xaa\\x83\\xbf\\x00b\\xd3\\x9f \\xf8G?\\xe0}:<f\\xfbP\\xbf\\x92\\x97\\x0fj\\xbcOQ?\\xf8\\xe5)R\\xeb\\xb8\\\\\\xbf\\xe4\\xb2\\xcb\\x91\\xb4\\xd8`?\\x00u\\xcd\\'\\x06+j\\xbf,4\\xbbaGB\\x96\\xbf\\x8c:\\xa2\\x8c\\x89#\\x8b?\\xaa\\xf4v\\xb6h\\xf7h\\xbf\\xa4zJ\\x8bW\\xdf\\x80\\xbf\\x18\\x02\\x92=\\xb5!\\x94\\xbf\\xc0\\x9b\\xc6[\\xec4|\\xbf\\xa0\\xe16\\x98\\xf1\\xe5[\\xbf\\xe48\\xa5@\\xa4\\x85\\x9d\\xbf(\\x03\\x16\\xe9\\x98\\x13}?\\xf8 \\xa8\\xe2\\xe30\\x9e\\xbft\\x12\\x90\\xd7\\xfb\\x95\\x8f\\xbf\\xde\\xeb\\xf0\\xff7E\\x84?\\xe0\\xa4@%\\x0e\\xabw?\\x80MT\\x98&\\xc5\\x86\\xbf hsW\"(\\x96\\xbf(\\x06\\xb2\\x05\\xa0\\x90\\xa2?\\x86\\x10\\xa1i@\\xe2\\x9a?\\x00HS\\x0b\\xaf\\r\\xfb\\xbeP\\x16\\xbd\\xbf\\x8bcq?\\x17\\x19\\xc2\\xcc\\x886y?\\x98S8\\xd2\\x90\\x9b\\x88\\xbf`c{\\xd0P\\x90\\x98\\xbf \\xc7\\xcd\\xf8\\x9fy\\x88\\xbf\\xd0\\xd0\\x8c\\x10Yay\\xbf`\\xb4Fe%jy?0\\xa8Fvs\\xe5\\x8c\\xbf\\x80\\x93\\xa7\\xa3\\xf4\\xb7H\\xbf@|f\\x16\\xebP\\x87\\xbf\\xde^\\xe3\\x91b\\xf7\\x9e?d\\xc1\\xb4\\xea9\\x83q\\xbf\\x90\\xd1\\xe028.}?L?\\xf7\\x1d\\x84\\xcc\\x85?\\xda\\x1d\\x13\\xb0=T\\x8d\\xbfp\\x14\\xf0\\x98L2Y?@8\\x85&\\x93\\x04z?\\xf8\\tF\\xab\\x8bfu\\xbf\\n\\xaf\\x9d\\xc8\\x05\\x9e\\x82\\xbf\\\\\\xf1`9*\\xb2\\x84\\xbf\\x08\\x1b\\xf96$\\xa4}\\xbf\\\\Qe9W\\x06u?\\xf0\\x88\\xd5\\xc1w/}?\\x80\\xdb\\x8fe\\xcf\\xeeN\\xbf\\x14\\x12\\xd4@\\xfe\\xddh\\xbf\\xd2\\xcfy\\x1a\\xbb}{\\xbf\\x00G\\xd9\\xa9%\\xed6?\\x00d~\\x96\\xba\\xfe\\xd5\\xbe\\x90\\xec\\xcam\\xe4\\xb0|\\xbf\\x80@\\x0bjxt@?\\xc8\\xfdZ\\xa7\\x8f\\xf4Q?5\\x0b\\xedo\\xcdFa?\\x0e\\xbd\\xee\\xbe\\xebaw?@\\xf2\\x11\\xda\\xc0N<?\\x1e\\xf1\\xe7w\\xd0\\xeam\\xbf\\xc4G\\xa4\\xbdv\\xc9}?\\x96M.DY*t\\xbf\\xb0\\xaf\\xfa\\xa3T\\xdd=\\xbf*&ZC\\xd3\\x0fp\\xbf\\x08*\\x1d\\x84\\xff\\xe7P?\\x9d\\xe3\\xd5\\xc00\\xcd\\x82?n\\xf5(bV\\xb5\\x8e\\xbf\\xa0\\xe2D\\x0f*E\\x81\\xbf\\x9c\\xf9\\x92z\\xd3\\xef\\x93?g\\xc6\\xf6\\xfd~\\xd5u\\xbf\\x08^>j\\xb7%\\x86?\\x90\\x8c\\x9cZt-\\x80\\xbf\\xc04\\x0csyy\\x16\\xbf@X\\x11\\x9f\\xa0\\xbfA\\xbfV\\x12u\\xc5\\xbe\\xb3b?\\xec\\xd2\\xf6f\\x97gh?\\xf7L\\x1b(\\xc26\\x82?VA\\xbf\\xe5m\\xd9\\x94\\xbf\\x8a:e}\\xb7\\x9fu?\\xf0\\xc9W\\xa9e\\x19\\x90\\xbf\\xc4\\xdc\\x12R\\xa5E\\x9a?\\xde\\x95=\\xe2\\x1b\\xf2\\x95?\\xc0\\xa9\\xf4\\xd0\\x7f32\\xbf\\x88|,/s\\xf1s?\\xc0\\x95\\xc8\\xd3\\xd0Rb?\\xc8\\xcfD*h\\xad\\x85?\\x82\\x0e-\\xcd\\x8c\\x1f\\x81?\\x10\\x1e\\x82(\\xae*Q?\\xb0\\xac \\xa2\\xb4\\x15|\\xbf\\x18\\x02Vc;Hw?@|\\x0e\\xeb\\x90\\xd4}?\\xab \\xc52\\xe0\\x95|\\xbf\\xf4\\x91\\xe1\\x90sP\\x80\\xbf \\x1b\\xa3\\xb6+\\xdc_\\xbf\\x80\\xef\\xc6\\x1dg\\xb6e\\xbf\\xfc\\x8d\\xb6pa:c\\xbf\\xc0\\x06L\\xc0\\xd9\\x90P?\\xd0q8\\xa8\\x07\\x04y?\\xccOm\\xb4\\x94\\x9d\\x85?\\x08\\xd6n \\x0c\\xad\\x8f?\\xb4\\xdc\\xf1\\x18\\xed?\\x96\\xbf\\x01i\\x18y\\xf7k\\x92?\\xd0\\\\\\xb0\\xde\\x1f`i?\\xb0f\\x11\\x94\\x85\\x18\\x9c?z\\xccj\\xd7\\xedM\\xa1\\xbf`\\xf5O^\\x8c\\t@?\\x94#\\xcb\\x1b\\xc6\\xbdm\\xbfPC\\x18\\x07R\\xffT?\\xc2\\x88\\xb9f\\x9d\\x7fp?@\\x89\\x9d\\xccN\\xd23\\xbf\\x16`\\xd9\\xe3\\xae\\xb0\\x89\\xbf\\x90y\\x83t\\xce\\xe9T\\xbfh\\xffvK\\xbf%i?\\x00\\x98\\xeb\\xf3\\x9f\\x1dI\\xbf\\x00\\x93\\xcbt#H(\\xbf`\\x8f\\xaa\\xda\\xdb]Q\\xbf\\x80\\x0b\\x10@B\\xb5Q? d\\x90\\xa4\\xf2Ga\\xbf\\xaf\\xf0H\\x9cH*\\x8e\\xbf\\x9c0\\x03X\\x07(\\x83\\xbf\\x80\\xaep\\xe3\\x19\\xda\\x90?\\xda\\xe7\\xb6`fa\\x8a\\xbf\\xf4\\x06\\xce_8\\xc3\\x91\\xbf\\x1d\\xde\\xab\\x8dDf\\x9e\\xbfw\\xae\\r\\xc5J=\\x86?\\xb8\\xa2>\\xc4\\xd5$r?\\x92\\xa6\\x00\\x080\\x9e~\\xbfN\\\\\\xd5\\xf3{\\x92\\x80\\xbf\\xca\\x11\\x92\\xb66\\xb2-\\xbf\\xf8l\\x1f\\x08\\xac\\xefQ\\xbfY\\xd13m\\xe0\\xcc\\x80\\xbfyq\\xec\\xe6\\xe6\\xfcn\\xbf\\xc8K7\\x9d\\xd0qw\\xbf\\x1f\\xd0\\xb8\\x82\\xc7\\xb7\\x86?\\xcc\\x91\\x04\\xe7\\xf7\\xc4Q?WP=\\x90\\xca~\\xa0?\\xd4\\xca!2f\\xaa\\x83\\xbfg\\xc6\\xf6\\xfd~\\xd5u\\xbf\\xa7\\xa2\\xa0mS[\\xb0?\\xe9\\xa4\\xb5h\\xba\\x10e?\\xcfb\\xe5\\xfbRL\\x90?\\xde\\xcc\\xad\\xe7\\xf4~P\\xbf0\\xee\\x95\\xee\\xef,\\x83?\\x18\\x8c-4\\xa0\\x12\\x11\\xbf\\xee\\x8e\\xdd\\x04\\x9bF\\x87\\xbf2a\\xf7\\xee\\x19zs\\xbfZ<\\x9e\\xbf&[z?\\xc6Vo\\x0e\\xb5\\xb5\\x94\\xbf\\x10\\xe4\\xea\\xb1\\x9d\\xe5|\\xbf\\xd1\\x83N\\xbd\\xa5\\xf9y\\xbf\\x06#L\\xe7&\\xe2s\\xbfC\\xba\\xe1\\xc8C\\xb1\\x98\\xbf\\xcc0\\xe9\\x17.9E\\xbf\\xd4\\xee\\xd63G\\xc0g?\\xf8\\xc3\\xc5\\x95\\x82\\xaf\\x94?o2\\x94\\xad\\x8a/}\\xbf\\x12\\xb2\\x8b\\x88+\\xcdy?\\xc8sV\\xf5\\xfc\\xff[?y\\x00k\\x80\\xffK\\x87?\\xce\\x94WE`Yq?\\xbe\\x00D\\xb9\\x9f\\x92z\\xbf\\x90\\xe8\\\\\\xad\\xab\\xc6_?\\xbaPG\\x98\\x99\\x15\\x8b?\\xbf]\\xb4A\\x00\\xf4\\x8c\\xbfV\\xa1D\\x07\\xba?\\x9d\\xbf\\xbd2\\x0fB\\xc1W\\x8b?\\xd5\\xdd\\xea~\\x044\\x9f?k\\xf5\\t\\xba\\\\Q\\x8f?\\xb7\\xe7\\x00Ky\\xdc\\x8a\\xbf\\xd3m\\xbeG\\x9d-\\x84?B.\\x17+\\xc8\\xf8\\x90\\xbf\\x80\\xf7K\\xb4\\x9c2+?j\\xa9\\xc3\\xf1\\x0c\\xe9\\x94\\xbf\\xa5\\x1d\\x88\\x87\\x94<\\x99?1\\xa8\\xc0@\\x98\\xd2\\xa2\\xbf4Q`\\xfa\"\\x90m\\xbf\\x0e\\x11\\xcf\\x8c\\xbc(q?SQ\\xc2>\\n\\x90P\\xbfo\\xa8z\\xb7D\\x1dT?\\xecCvgH\"M\\xbf\\x9d@&\\x14\\x11y\\x91?s\\\\BQ\\xd1=U\\xbf4\\xbf2FbpB?(\\x97\\xc9\\x15*\\x86t?\\xe2%\\x1d\\xae\\xeb]`\\xbfk\\x11\\x1erG\\xa5\\x81\\xbf\\xc0<YX\\x85\\xb7f\\xbf0\\x19\\xa3\\xfcg\\x19[?\\x00\\x12\\xce\\xff\\xc9\\xeb`\\xbf\\x00_\\xdb\\xfe\\xf7\\'\\x87\\xbf\\x16n\\x03\\x15\\x0c\\nr?\\xd4\\xadD\\xe4\\xb4+r\\xbf\\xc0\\x0b\\xd5hS\\x81r?@?T\\xc7\\xcb\\x82Z\\xbf\\xa8l\\xbc^\\xbd{l?\\x80\\xb3\\xfef\\xa2\\xdcM\\xbf`\\\\D\\x89\\xa83\\x82?\\xc0\\x86\\xad\\xb5c\\xd84\\xbf\\xe00hI\\xef\\xc1w?\\x00`\\x04(^\\x048\\xbf\\xa8\\xb1LM\\x12\\xd4@\\xbf\\xd8\\xe9\\xce\\xe3\\xfb1h\\xbf\\x00>\\xf3\\xed\\xa1\\xae\\x04\\xbf\\x88\\x8bL\\xb2\\xb1\\x9ci?\\x98\\xf6\\n\\xbfr\\x11q\\xbf\\x00b\\xd3\\x9f \\xf8G?\\x08^>j\\xb7%\\x86?\\xe2\\xa4\\xb5h\\xba\\x10e?`\\xa6\\xc9e\\x1f\\xff\\x92?  \\x7f\\x07w\\x14t\\xbf\\x18/\\xef|\\xa2xZ\\xbf\\x00\\xe7\\xcf\\xc4\\xfe\\x07\\x1c?\\xb0\\xb2\\xabqi\\xd2R?@\\xc0A6\\xf2RA?\\x00\\xb00\\x95G\\x06\\xe3>L\\xb4|\\x9d\\xa6R\\x87\\xbf0pdf\\xa0qV?t\\xa2t}\\xf6b\\x96\\xbf\\x00\\x07O\"\\xb6\\xcf\\x90? \\xa9p\\x14\\xd7\\'\\x90?\\xc8%\\xf9C\\x9d@x\\xbf d\\xa6\\xaf\\xc7\\x19p\\xbf\\xa0\\xfdv\\xc4f\\xfdy?\\x80\\x02\\x95\\x04\\xa5pu?Jd\\xcd5\\x17\\xf0\\x81\\xbf\\x00\\xe5\\xf2\\x93\\xad |?\\xa0\\x84\\xb07@)\\x80\\xbf0\\x07\\'9fWz?P ~\\xc9\\x8e\\xa2^\\xbf\\xe6oT\\xdf?\\xbd{?\\x80\\xb9\\xc3/\\x01OB\\xbf\\xa8\\x08\\xd4\\x9b-\\xaa\\x80?\\x80\\xb5\\x13\\x81w\\xecg\\xbf#e*\\xe6\\xb1\\xc3\\x92\\xbf \\xda\\xd7\\xf0\\x93\\rq?\\x00\\x01\\xd4\\xec\\x84\\xb3V?\\x93\\xfb\\x82\\xc1\\xe6\\x94\\x8a?0n\\x8b,\\x8d\\x9a\\x86?\\xb0\\\\\\xa3\\xdb\\x9b\\xac\\x97\\xbf\\x88\\x1a\\xba\\xbe\\xdc\\x01\\x91? 6\\x1a3\\x97\\xc0\\x7f?\\xf0\\xa3\\x1d\\xe8\\x9d|\\x96?\\xe8\\xb9WX\\xafh\\x8b\\xbf\\xc0WM\\xcd\\x1a\\x8b;\\xbf\\xc0\\xde4\\xda!\\xdaV\\xbfH[\\xde\\t(\\x93\\x83?\\x00\\x12U\\xce\\xb6q5\\xbf\\xd0\\x9c\\xab-1(a?\\x80\\x84\\xd7\\xd7>\\xbdm\\xbf`bi\\x9b`\\xd2L\\xbf\\xc0\\x13B\\\\Q\\x04J\\xbf`}\\xc8g\\xb8\\xa7s\\xbf\\x00\\r\\x85\\x97\\xd3e@\\xbf\\x80\\x07\\x19%\\x93\\xc2X?\\x80T\\xca\\x96\\x92\\x0fL?\\xe0\\xea\\x19v\\x87U\\x80?\\x0c*\\x13 \\x9bWQ\\xbf\\x0c`<\\xbf\\xa9\\xfcy\\xbf\\x90:\\xac\\xc4\\xccx\\x80?vJ\\xa8Z\\xee;e\\xbf\\xf2-w\\xce\\r]~\\xbf\\x80~o`\\x7f\\xfc\\x81\\xbf\\xc0R[Pf\\x87Q?x~\\xbb\"|bn?@v\\x05\\x8b\\xb3\\xbfn\\xbf\\x18\\xb0\\xbex\\xaa\\xfbd?@4C\\x9eR\\xbdK\\xbf\\x00\\x18S\\x039\\xa5\\xf8>L\\x7f\\xa8i\\x07\\xddv? \\x1f\\xa3\\x8f.\\x99T\\xbf\\x00\\xa8\\xc4x\\xcc#4\\xbf\\x00c\\xbcLhF\\x17\\xbf\\x14{\\xe7\\xec\\x0e\\xd2r?;\\xf0t\\xcb\\xa6{\\x81?\\xe0}:<f\\xfbP\\xbf\\x8c\\x8c\\x9cZt-\\x80\\xbf\\xcfb\\xe5\\xfbRL\\x90?0 \\x7f\\x07w\\x14t\\xbf\\xa0\\xfd\\x1c\\xf0>\\xed\\x95?\\xb4\\xdc\\xceT\\xda\\x05V?\\x00\\xb6\\xbc*)X\"?(\\xe3\\x84d+\\x96b?8\\xbe\\x88Hd\\x1bq\\xbf\\x00r\\x84\\xc4\\xf1\\xd2&\\xbf\\xc0\\\\\\r\\xe1\\xb8\\x89\\x83?~\\x89\\xbb\\xbf_t\\x7f\\xbf\\x8c9\\xc4\\xa67?\\x93?\\xd0\\x9bR\\xc9W|\\x9b\\xbf\\xb6\\x14\\x94\\xdf\\x8b\\x94\\x93\\xbf\\xc0\\x91\\x1d\\xed\"\\xfc??p\\xdc\\xd7\\xf5\\xe9\\ng\\xbf\\x00\\xd0\\xb0\\x86\\xd76X\\xbf \\x12\\x96\\xa8\\xe6\\x15s\\xbfDK\\x10\\x7f\\xb9v|? \\x8d\\x8f\\xbcVJg\\xbf`q60\\xb1xz?xn\\xe2\\x94\\xe8Ps?`\\xe4\\xef\\xfaIHg\\xbf\\x88\\x84\\x13l-2\\x81\\xbf\\x00<H\\xba\\xc2\\xafV\\xbf\\x00\\xdbg\\x92\\xffM3\\xbf\\xc0\\xb0\\x14y+\\xf1a\\xbf`\\x84~R\\xd4\\xd9l?\\xa0uV\\xbc\\xf8\\x8f|?\\x00\\x94\\x1a`r\\x16X\\xbf\\x12\\xd95\\xe7\\x88\\xe4b?\\xc0`\\x7f\\xf5]#i\\xbf\\x90\\xe7\\xd5\\x08\\xf8Z\\x93?\\xb4N8\\x98\\x06\\x91\\x97\\xbf\\x90J\\x03\\xb5Kr\\x84\\xbf\\x80\\x159\\xe2v\\xcb{\\xbf\\xe0\\x9a\\x82\\x91M\\xc9\\x8e?\\xa4\\x07c\\xab(\\x94~\\xbf\\x18\\xd2Eg(\\xa9k\\xbftW\\xb3\\xd7G.\\x80\\xbf\\xc0\\xbd\\x01\\xbbG\\x8ee\\xbf\\xc0\\rk\\x95\\xd5\\x9dh?\\xe0h\\xfa0r.s?\\xc0\\xb9\\xda\\xbf\\xefR_\\xbf\\xc0\\xe4\\x10\\xc1a.^\\xbf\\x80\\x9am-U\\xa63?\\xd0j\\xcd7\\xd4\\xe4t\\xbf\\xa0\\xc6\\xea\\xdc\\x81\\x91h\\xbf\\x80\\xc7\\x92,\\xfb\\xb0S?\\xe0m\\xd3\\xff\\xf7\\xe0u\\xbf\\x98PK\\x12!\\xc8_?\\xe0\\xe0]\\xa6j$[?\\x03\\x98\\xc7\\xe6\\xb5\\xb0\\x81\\xbf\\xf10ek\\xbf\\xe4V??Q\\x95r\\x18\\x9dA?=\\xff\\x13\\x0e9\\x9b~?A\\xb4);\"\\xe4c\\xbf\\xfc\\x18r,(\\xb7!?\\xba\\x12?\\xfc\\xe6\\xc0j\\xbf\\xc1:T\\xf3teh?lV\\xf6x \\xabC\\xbf=\\x8d\\xca>\\xe5\\xc7a\\xbf\\xe8]X\\x00D\\xfe`?n:\\x82KK\\x03R?!R\\xc0\\xb22G\\x81\\xbfX\\xacY\\xb4\\xc2+L\\xbf\\xf4\\x82\\xb9\\xdd\\xb5!7? \\'\\xaf\\xfcV\\xcfl?\\x92\\x97\\x0fj\\xbcOQ?\\xc04\\x0csyy\\x16\\xbf\\xde\\xcc\\xad\\xe7\\xf4~P\\xbf\\x18/\\xef|\\xa2xZ\\xbf\\xb4\\xdc\\xceT\\xda\\x05V?l\\xd5\\x15QF7\\x81?@MYi\\x8a a\\xbf\\x84\\xd2\\xe2R\\xd5\\xbfO?\\x80=\\xa8|r\\xdc\\x1c?\\xd0i\\x1fC\\x1b9/\\xbf\\x97LR\\x93U\\xedi\\xbf\\xbc\\xc6\\x14)9\\x85_?VIS\\xf1\\x11:i?\\x06Sd\\xb1\\xba\\x94e\\xbf5\\xb8\\xc9\\x02\\x89\\\\y?\\x80\\x94\\x94O\\x03\\x9d/?\\xd0\"(\\xd4\\t\\xd6g\\xbf\\xd0\\xf8\\xddk\\x83\\xed^?p\\xe14m\\xdc\\xb2z?\\xd2\\xc9\\xc4\\x97\\x90\\x89\\x80? p\\xe5\\x1e\\xe3\\xad7\\xbfjT\\x9e0\\\\\\xce\\x84\\xbf\\x8ao\\x87\\x9b\"\\xee}\\xbfh\\xab\\xa5r>+q\\xbf\\xb2\\xcd\\x19\\xbd\\x1b:[\\xbf\\x17\\x8e\\x93\\x00\\xb37g?\\x90E\\xf5`\\xf1\\x96C?\\x16QR\\xe6\\xd21}?}EO\\x83\\x0f5h?\\xc0(\\xc5U\\x87\\xdbJ?\\x02&Po\\xd4\\xff\\x85\\xbf^\\xb8\\x89n(vH\\xbf\\x92)\\x94@\\xe9\\x11\\x83?H=k;a\\x0fq?\\xbc\\x81\\xd2M\\xb8\\x8b\\x84\\xbf(\\xe3\\x1fD\\xf1\\xf6e?0\\xf6Qi[\\x1fj\\xbfF]\\xaa\\x04^\\xa5y?\\x1c\\xff!hu\\xceh\\xbf\\x86\\xce\\xde\\xf0F\\x16^\\xbf\\xa5\\xa8S@\\xc0\\x1fq\\xbf\"h\\xbbz\\x90ry\\xbf\\\\iF\\xf6/A3\\xbf\\x164\\x0b{L\\xcaq?>\\xb8\\x01\\\\\\xd3\\xde\\\\\\xbf\\xb2!\\xfd\\xde\\xd4\\xc9[?\\x86\\xe2$\\x0f\\xf4xX?f%\\x8eS\\x95\\xf4b\\xbf\\xef\\'`\\x15\\x82\\xf1a\\xbfp\\x06`R\\x95X/\\xbfPa>\\x83\\x03s\\x83\\xbfi\\x14v]\\xad\\ru\\xbft\\x13\\xc7!\\xdb\\xa0R?\\xb0\\xee\\xb8\\n\\xf6\\xedc\\xbf\\xe2\\x19\\xc7\\tH\\xb6o\\xbf\\xaf\\x15hM\\x02n[\\xbf\\x80V\\t\\x12\\xfa\\xa33?U\\r9\\x04 \\xcet?\\x98\\xc0+\\x1a;\\x812?Pc\\x95\\x19,rB\\xbfz\\xa8q/jZu\\xbf*\\x8b>\\x08\\x98\\xb1N?\\xc0\\xe5\\xd9r\\xecQ6\\xbf\\\\\\x83\\xe2\\x1b\\xafzw\\xbf\\x86\\x8a{d\\x05MN\\xbf06m]\\xa0JL\\xbf\\xd5\\x91b:\\xa1\\xd0v?\\xa0\\xabMK\\x8a#w\\xbf\\x13\\xde\\x86P\\x95\\x1ap?\\xf8\\xe5)R\\xeb\\xb8\\\\\\xbf0X\\x11\\x9f\\xa0\\xbfA\\xbf0\\xee\\x95\\xee\\xef,\\x83?\\x00\\xe7\\xcf\\xc4\\xfe\\x07\\x1c?\\x00\\xb6\\xbc*)X\"?@MYi\\x8a a\\xbf*\\x87r4\\x8a\\x1f\\x7f?\\x80h\\x01\\xba\\x0e\\nQ\\xbf\\xb0\\xd7\\x90\\xe0\\x8d\\xa1L\\xbf8:\\x80\\xd7O\\xffc\\xbf\\xd0\\xd4\\xa5\\xf0\"OP?\\xac7\\xa2\\xae`\\xe8i\\xbfH\\xd9\\\\F\\x16\\xabx\\xbf@\\xef\\x14\\xaa\\x83\\x02@\\xbf\\xbcs\\xd6\\x14\\xc5\\xacj\\xbf\\xa3\\x18c\\xde\\x9c\\xc7\\x87\\xbf\\xc0\\xe4\\xbdX\\xc7.M\\xbf \\xc1\\xaf\\xabDaR\\xbfX\\xb6\\x1d\\x8e\\x12\\xa4s?\\xb1z\\xad\\xab\\x1c\\xd6\\x82\\xbf\\x00\\xf8\\x99/\\xf5\\xfcq?\\xf0e@\\xc1R*x?\\xc0\\x10P9\\xb2\\x07,\\xbf\"F\\x95d\\x00\\tr\\xbfL\\x1a\\x1f\\t\\xf9\\xf6F?\\xc4\\xd7F\\x04\\xee\\x13\\x80?\\xb6\\xcfY\"\\xf5L\\x82?\\xa0\\xf9\\x8b5\\xeb4^?`|\\xc3\\xbe[n\\x8b\\xbf\\xf0\\xc7\\xa23\\x01[r\\xbf<\\xa1$W\\xea*\\x81?0q\\x9a\\xe2\\x9e\\x87U\\xbfp\\xa1\\x86\\x11N\\x0e\\\\\\xbfL\\x81\\xb1\\x17/\\xb5\\x90\\xbf\\x88\\x9a\\x88\\xac\\xb0vy?\\x00x\\xb6\\x8c\\xd8\\xe4\\xf7\\xbe H\\x8ag\\x8bva\\xbfn2\\xcdX\\xa0yq?\\xe8G\\xb1m`\\xeb\\x80\\xbf\\xf0\\xc0\\xf4H\\xc5\\x1cO?Z+m\\x0e\\xfd\\x05\\x84? j\\x9b\\xbeQ\\x8bl?\\xbc\\xa6\\x12e\\x84\\x07X?\\xb4\\xef@2G\\x83t\\xbf\\xac\\xc1/\\xfe\\x9d\\x8dq?P\\xbfuRz\\xc2c\\xbf\\x18\\x1d\\xb7\\x8d\\xf6\\x84g\\xbf\\xf0.\\xd2\\xd0\\x05\\xc7@?\\x049\\x13S\\xc1\\xc6`?\\x18-\\xd4\\xebi\\xe4V\\xbf\\xdc\\xf0[\\xa5U*\\x8e\\xbf\\xac\\xb3\\x06\\xb4\\xffwH? \\xa3+\\x11h\\rC\\xbf\\x9c\\xe5\\xd5\\xfb\\x8b\\xcd\\x90\\xbf\\xee\\xca\\x98 \\xef0S?\\x90\\x02\\x12\\xac\\xd6\\x95m\\xbf\\xa0\\x15\\xa2\\x89 \\x11\\x8c?\\x10\\x006i\\x10\\xf4-\\xbf\\x96\\x8b!M\\xc5\\x7f\\\\?06Y\\xf3\\x91VA?\\xd85w\\x04\\x87\\xf5p?\\x0c\\xa5\\xcd\\xf6\\x97<C?@\\x10\\xe8\\xa3\\xb3c/?\\xe8\\xcc\\x15\\xd8Z:R\\xbf\\xed\\xb1\\xeer{\\x087\\xbf\"\\x838\\xebjgg\\xbf\\xb4\\xdd\\xa7\\x8c\\x1dXl\\xbfp\\x91\\xd1eS\\x17|?\\xae%\\xd6\\xa8\\xdej[?\\xe4\\xb2\\xcb\\x91\\xb4\\xd8`?V\\x12u\\xc5\\xbe\\xb3b?\\x10\\x8c-4\\xa0\\x12\\x11\\xbf\\xb0\\xb2\\xabqi\\xd2R?0\\xe3\\x84d+\\x96b?\\x80\\xd2\\xe2R\\xd5\\xbfO?\\x88h\\x01\\xba\\x0e\\nQ\\xbf+\\t\\xf8A\\xb0\\xb5}?@\\xbf\\xf0\\xf0\\xcf\\xe78\\xbf\\x80/i\\xf2GTS\\xbfxs?U\\x81\\x8dg\\xbf;\\xd90\\x9a\\xed\\xd4O?\\xcc{h\\n\\xfb\\x03s\\xbf\\xe0^\\xe1\\x8fU\\x8cd\\xbf0\\xb4\\x16\\xa7\\xb6sJ\\xbfX2%\\x1e\\xde\\x87Q?u3\\x02\\x17\\xe4\\x10\\x80\\xbf\\xd4\\x97\\xd6\\xaf\"\\xdfv?\\xacC\\xf0{\\xad\\xd0\\x81\\xbf\\x0cr\\xba\\xe6\\x9fIm?\\xda\\xae\\x9c\\x9f\\xf3\\x8bu?8\\xbc\\xb9L\\xdevv?}\\xacl\\x86tuw?>\\x03\\x0b\\x1a\\xacB\\x88\\xbf<\\xbb0?\\x88\\xffC\\xbfD\\x92[\\x9af\\xdd\\x7f?\\x00\\xe5#\\xe1\\xaf\\xe2*?PV)\\xef\\x96:j?B\\xac\\x8e\\xf88\\x17{?\\x80x/1xMK?\\x9c\\x87\\x18\\x9cM\\x0e\\x85\\xbf\\x94\\xf6\\xcb\\xc6\\xfc\\x84l?\\xa85\\xc2\\x9b\\xc8\\x12\\x7f?\\x00\\xbb\\xebsM\\xb8X?\\x00J\\xee\\xc1\\x9aK\\x8c\\xbf\\x887\\xafr\\x8cEi\\xbf\\x80~Om2#\\x84?\\x9813\\x81EFc\\xbf\\xba\\xa4T\\xa4\\xc5L\\x87\\xbf\\xf3\\xed\\x1b\\xef\\x8f\\xe1p\\xbfLu\\x90\\xcd\\xd7\\xa2e\\xbf\\xa6\\x1a\\x85/\\xb6B~\\xbf\\xba\\xbc\\xe9\\x94\\xe1Fd?\\xb9\\xd6\\x83\\xc1\\xbe\\xcb\\x80\\xbf(\\x8d\\xee\\xe8z\\x86e\\xbf8\\xdf\\xd2\\x8aJzX\\xbfP\\xe8\\xdas\\x03\\xb5j\\xbf\\xa7l\\xee\\xf6\\xfd\\xe4v\\xbfj\\x9e\\x9a\\x0fm\\x81a\\xbfz%n%\\xe83p?\\xb8\\xe4\\xf2\\xfes\\xe0y\\xbfd\\x1dUv\\xde\\xacP\\xbf0%\\xa1\\xe1\\xd8(2\\xbf\\xc8\\xa0\\x12z\\x01\\xa0\\x81\\xbfR7\\xd4#\\x8f$b?X\\xeeV\\xf1?#3\\xbf,0A`Z<\\x88?\\x90\\xde\\xb3v\\xfa\\xb9U\\xbf\\xc8\\x08k%>\\xa0]?\\xb7\\xd4\\xad\\x19]\\xf3\\x88\\xbf\\xa0\\xc4\\xa2\\xab\\xb7$`\\xbf\\xc6\\xaeb\\xba\\xcfue\\xbf<\\xd8\\x97\\xb3^\\x16\\x80\\xbf\\xecZ\\xfb\\xc99\\x89j\\xbf\\x01tEb\\xafeQ?|\\xd6i\\xd1 \\x80Q\\xbfp\\x91`\\xd3\\xa8\\x97B?\\x00\\xc7\\x99L\\x18\\xab5\\xbf$\\x1f\\x98\\x1a^\\x95\\x82\\xbf\\x00u\\xcd\\'\\x06+j\\xbf\\xec\\xd2\\xf6f\\x97gh?\\xee\\x8e\\xdd\\x04\\x9bF\\x87\\xbf@\\xc0A6\\xf2RA?8\\xbe\\x88Hd\\x1bq\\xbf\\x80=\\xa8|r\\xdc\\x1c?\\xc0\\xd7\\x90\\xe0\\x8d\\xa1L\\xbf@\\xbf\\xf0\\xf0\\xcf\\xe78\\xbf9F\\xd0\\x1caR\\x91?\\xa2\\xef\\xa1\\xa0\\xc3\\xd2e?8[nq\\x10_y\\xbf\\x04\\xe6\\\\&S\\xb3\\x88?\\xc0\\xe1M\\xc5[\\xabM\\xbf,\\xa7A\\x97\\x95`\\x80?\\x00X\\xfa\\x9f\\xd1\\xa27\\xbf\\x1c\\xf0\\xf8\\x0b\\x1c\\xf1k?\\x14\\xb3[\\xee^/z?\\xb6\\xed\\x9d\\xf5\\xb1\\xcd\\x81\\xbf\\x00H\\xe0\\xf1\\x8923\\xbf0\\x01IS\\xf3*\\x80?\\xb2\\xab\\x9c\\xaf?\\xfb\\x81\\xbf\\x00\\x98\\xd1\\x8e(WD\\xbf;\\x8b\\xad\\x89\\x82A\\x81\\xbfm\\xf0V\\x99\\xa0\\xa4y\\xbf\\x17\\x9c\\xbf\\xa4?\\x12\\x83\\xbf\\x14\\x85\\xebS\\x82]y\\xbf\\xe0$ZO\\x00\\xf5b?\\xf0:Oq\\xd3i\\x87?\\xca~Z\\xf9P_\\x8e?\\xb0\\xba\\xa36\\x1ftu\\xbf8|\\xc5\\xf5;\\xfe{\\xbf\\xbf~E-\\xdb\\xb4\\x93\\xbf\\x006\\x98\\'\\xb822?\\xc8oy\\xc6\\x15A\\x86?0~h\\xe4Q\"n?\\x90\\xffGE.\\x9f}\\xbf\\xa8%I\\xd1\\x99\\r\\x8e\\xbfL\\xa5\\xd1\\x8f\\x05\\x08v\\xbf\\xcdn\\x8d\\xa8\\x1f\\xd9\\x95?\\xa2\\x8cj\\xe5wwj\\xbfLw\\xd5\\x11\\x92\\xa1r\\xbfu?h\\xcdT\\xa1\\x84?\\x88I\\\\\\xc8\\xbc\\xbbg\\xbf\\xd0 \\x99N\\xfc\\xe9t?\\xb2D\\xf6:\\x11\\x96e\\xbf2\\xc867,\\x96}?6\\xdf\\x8c6\\x08\\x9c\\x83?\\xb0\\x08\\xbc\\xde@\\x89O\\xbf\\xdc\\x05\\xae\\x9c\\xc0\\x99g\\xbf\\x9c\\x08\\x11\\\\}\\x0c\\x82\\xbf\\xbf*\\xc7]\\xb2\\xed\\x96? \\xe6 \\xa2\\xfd/x\\xbf@\\x0e\\xd6\\x1d~\\xbe\\x80\\xbf\\x9c\\x8a-\\x15}\\x1d\\xa0?T\\xc5U\\x96u\\xafq\\xbfx^\\xc4\\xa8o\\xcbw\\xbfI\\xb2#?\\x92\\x0b\\x92\\xbf\\x8a:\\xf5\\x88\\xddnd?\\x88:R\\xc5\\xaa\\x8dJ?\\xceg\\x89n\\x11Fr?\\xe411\\x8f\\xd8,y\\xbf\\xc24\\xf2G\\xb3Mu\\xbf(\\xbe\\xea\\xe1\\x83rq?H{0X\\xf0nw\\xbf\\xd4\\xef\\xb4\\xb14\\xdc1?\\xc7\"F\\x8d\\xddix?\\xb4\\xd9\\x01\\x84\\xfc\\xa9v?\"\\xf0\\xb3\\xf04T\\x86? \\xc8\\x00\\xb1g\\xf8\\x8b\\xbf,4\\xbbaGB\\x96\\xbf\\xf7L\\x1b(\\xc26\\x82?2a\\xf7\\xee\\x19zs\\xbf\\x00\\xc00\\x95G\\x06\\xe3>\\x00r\\x84\\xc4\\xf1\\xd2&\\xbf\\xd0i\\x1fC\\x1b9/\\xbf8:\\x80\\xd7O\\xffc\\xbf\\x80/i\\xf2GTS\\xbf\\xa2\\xef\\xa1\\xa0\\xc3\\xd2e?d\\xbb\\x91\\xc1\\x92\\x19\\x98?\\xcc\\xf5]W\\xa3\\xfe\\x86\\xbf\\xaf\\xe39\\xa4\\xff\\'v?v9\\x98\\xcc\\x988\\x89?B\\xcf1%\\xf4\\xf9\\x8e?\\x1e\\xb17\\xe7\\x1f\\xb6p?G\\xf4V,z\\xe8\\x85?~!\\x8a\\xc4\\x17\\xb8\\x9a?\\x90Q\\xd0\\x85\\x9a\\xecp\\xbf\\xac\\xca\\xf9\\xfa<[\\x95?\\x9e\\x02\\x17l\\xf6K\\x8b?\\xa3\\xe6\\x19\\x19\\xba\\x19\\x82\\xbf \\x1b\\xf7\\x9b\\xd6p\\x7f\\xbf\\xae\\xb6\\'N\\xde\\x8d\\x88?\\xc1/\\xa3\\x05\\xf2\\xb5\\x93?\\xb5\\xb2^\\xf9,j\\x9d\\xbf\\xc4is\\xbd&\\x98\\x99\\xbf\\x90\\xef\\x8f6\\xb3\\xb7^\\xbf\\x80\\x0e*\\x81\\xdf\\x9dK\\xbf\\x92\\x89\\xe5\\xd7\\xfeSo\\xbfP\\xe0)\\xc8\\xe6e\\x89?\\xe8\\x14\\xdf\\xb2\\xe9\\xf1\\x8a?\\xdf)e!n\\xf0\\x8f?\\x04\\xbe\\xbe\\xfe\\xaa\\xa8\\x8a?\\xb0r\\xef\\xb7\\xc4\\xc0~\\xbf\\xcc\\xd3\\t\\xfe\\x8d\\x83\\x8b?\\xc0v\\x05(#-Q?6\\xc3$\\xc7\\x01\\xb8\\x92?\\xd81\\xcds\\xbf[\\xa0\\xbf\\x14\\x8c\\x07z\\xb9I\\x82?\\x8au\\xe0\\x97ZAr\\xbf/\\xdb\\xb0\\x04\\xb6\\xc7\\x8b\\xbfsi;\\xd6\\xe8E\\x86?t\\xde\\xf8\\x96\\xc9;d\\xbf\\xe4tR\\'\\x8d\\x08y\\xbf\\x9c\\x87\\xd0\\x18R\\x00Y\\xbf!\\x91\\xda\\x14\\x12lz?\\x9c\\x1c\\x18\\x83!\\x84\\x80?@\\x92r\\x1b]\\xb9W?\\xc0.\\x98\\t;Oq\\xbf \\tj0\\xb0\\xc1C\\xbf\\xe0i-\\t\\xacvt?`58\\xaf\\xa1hq?`D@0e\\x80w?@\\x9c\\xd9\\x11\\xae\\x92c?\\xdc\\x19\\x93\\xb1\\x19\\x01G?\\x9ciA\\x1f\\xa7\\x8az?\\xc0\\xc7\\x83\\xeb\\x9b\\xe0q\\xbf\\xe8\\xad\\x89*P6R\\xbf47\\xc2\\xb7\\xda\\xf0_\\xbf \\x8f\\xdf&\\x9c?]\\xbf\\xd4\\x1c\\xed\\xd3\\xf8ia?\\x05\\xbd\\x9d~\\xf7\\x11t?\\xd0\\x89mn\\xcf\\xe0j\\xbf\\x8c\\x05B:LG\\x7f?\\xa3\\x8e\\x8f3(\\xc5S\\xbfli3y\\xe2\\xf6\\x83?\\xb8-\\x85zzU\\\\\\xbf\\x8d(\\x08\\xcd\\xa5\\xcb\\x84\\xbf{^\\xc7(\\x86\\xfc\\x88?\\x90:\\xa2\\x8c\\x89#\\x8b?TA\\xbf\\xe5m\\xd9\\x94\\xbfZ<\\x9e\\xbf&[z?L\\xb4|\\x9d\\xa6R\\x87\\xbf\\xc0\\\\\\r\\xe1\\xb8\\x89\\x83?\\x93LR\\x93U\\xedi\\xbf\\xd0\\xd4\\xa5\\xf0\"OP?xs?U\\x81\\x8dg\\xbf8[nq\\x10_y\\xbf\\xcc\\xf5]W\\xa3\\xfe\\x86\\xbf\\xd0\\xda\\xc7_\\x0cK\\x9f?2x\\x80\\xb7\\xa8_\\x87\\xbf\\\\\\x99\\xbc_e\\x87\\x92?xC\\x80\\x8ahM\\xa0\\xbf\\xae*\\x1f\\xf1\\xb4\\x95\\x9f\\xbf\\x18UE|\\xe5MS\\xbf\\xcc\\xea\\x9b\\xcc\\x0bb{\\xbf\\x80!\\xe4\\xb1eR\\\\?\\xa0A\\x90j|\\x81\\x90\\xbf\\x0e\\xdbr\\xf7t\\xf4\\x95\\xbf\\x00e\\xf3\\xd6F{c?p\\x8d\\xd2W\\x19W\\x88?\\x90<\\x95U\\x9a\\x9bn?z\\x84\\x15a4\\xe0q\\xbf\\x9c%\\xb7\\xa1!I\\x8c?\\xd8,\\xa2\\xd0\\xbd\\xde\\x81?@\\xa2\\xffe`\\x98b?\\x80&\\xde\\xf9\\xdc\\xe8m\\xbft\\xefeW0\\xde~\\xbf`rkD@\\x8bc?\\xc0\\xea\\xd4\\'\\x12fV\\xbf\\xceG\\xcc\\x071+b\\xbf,$_\\xab\\xa7\\x12\\x93\\xbf\\x9c\\xdc\\xacGo\\x80\\x93?\\x95/-5K\\xc9\\x90\\xbf \\xa0\\xdd\\x08\\xf6\\xb5S\\xbf\\xb8e\\xdanc\\xe8\\x98\\xbf5\\xb3)\\x8e\\xe0X\\xa4?lPOR9\\x02d\\xbf\\xb8\\xb7\\xe8\\x03\\x12q{?0\\x12c\\xb9\\x9d@m?\\x003\\x05\\xcd\\xaa\\x00k\\xbf8e\\xd8\\x86v\\xf1Q?(p\\x01\\xc5\\x12\\x94\\x87?4/o\\xb9\\xa2\\x91a?~0\\x91\\x8f1j\\x80\\xbf\\xe8\\xaf(\\r\\xf5\\x9fj\\xbf\\xc04\\\\j\\x9a\\xc5C\\xbfpkV\\xa7z\\x14s?\\xd8\\x0f\\xfb\\x02\\xe4\\x8dg?\\xb8\\xfd\\x1f\\x0f\\xfb2w\\xbf\\xfe\\t\\xa2\\x7f\\xe2\\xea]?\\x11}\\xae\\xad 5L?0\\xc1(S\\r\\xfc\\x89\\xbf\\xecd+\\x91\\xc1\\xdct?G2\\xee\\x89E>k?\\x82L\\xe6V\\x9az\\x8e?0\\x7f{,\\xe0ym\\xbf~z\\x0b\\x08\\x89ZU?I\\xe2\\xea\\x8d\\xee?\\x80\\xbf\\'\\x05\\xf8\\xc1i\\xd4l?2\\x87\\xe3\\xb1\\x86\\xcfR\\xbf%\\\\k\\xa9\\xa7\\x89~\\xbf\\x8cf!\\xf8\\xb9\\xc5c\\xbf\\xea&\\xe6\\xb2\\xf2id?\\xc8\\xa1=\\x82\\xef\\xa2@\\xbf\\xd6m\\xeb\\xe5\\xffWZ\\xbf\\xcf\\x9aS\\xaf\\xcc\\x82p?h\\xc6\\xe92\\xd3n\\x81\\xbf\\xaa\\xf4v\\xb6h\\xf7h\\xbf\\x8a:e}\\xb7\\x9fu?\\xc7Vo\\x0e\\xb5\\xb5\\x94\\xbf0pdf\\xa0qV?~\\x89\\xbb\\xbf_t\\x7f\\xbf\\xbe\\xc6\\x14)9\\x85_?\\xac7\\xa2\\xae`\\xe8i\\xbf;\\xd90\\x9a\\xed\\xd4O?\\x04\\xe6\\\\&S\\xb3\\x88?\\xaf\\xe39\\xa4\\xff\\'v?2x\\x80\\xb7\\xa8_\\x87\\xbf\\xca\\xbd\\x81a\\x8a5\\x95?\\xc0\\x05\\xb4\\x92\\x94\\xf7\\'\\xbf\\xdb\\x88\\x9b%>?\\x89?\\xd2\\xc3R\\xf7\\'#\\x84?\\t\\x0ff \\xf2\\x94}?O\\xf3l5K\\x9c~?\\xcdb\\xf6m$\\x0cu\\xbf`9h\\xa5r\\xf8X?\\x8e\\x99\\xc6\\xe3<h\\x89?\\xa0Wxo[jy\\xbf,I\\xdb\\x8f\\xd3\\x80z\\xbf/\\xe7\\xaf\\xd09@x\\xbf\\x9cy\\x00\\xfd\\xcd|g\\xbf\\xc0\\x92\\xda\\x9f;\\xb1\\x86\\xbf\\x8c\\xdb,\\x96\\x81\\x93x\\xbf@o\\xc5\\x1d\\xbd\\xb3d?\\\\a\\x02\\x18\\xff\\x94\\x8a?\\x1a\\xef4G4\\xdc\\x8c?.\\x14\\xcf\\xd3\\xf3&{\\xbf\\xf6~\\xd6\\xe1\\xdd}\\x8c\\xbf\\xce\\xa9\"3\\x84.\\x90\\xbf\\x96\\x913r\\xdbP~?\\xe0]\\x06Q?\\x1dG?\\xd0<\\xf3d\\xbe\\xc5g?c]\\x84KN\\xd3\\x86\\xbf0\\xaaO\\x89\\'$r\\xbf\\x93.\\xa5\\'\\xcd\\xf9\\x91\\xbf\\xda\\xce\\xec\\xa6\\x84\\x8d\\x8c?\\x87\\xa6\\xa8\\x8e\\xbf\\xec`\\xbfL\\x0f\"\\x9f`9\\x82\\xbf%\\xe0\\x1f\\xa7\\x0f-w?\\xce\\xae\\x10\\xce\\x83<s\\xbf\\x00o(@EX\\x03\\xbf\\xde\\xd8\\xfdp\\x8b\\xe5\\x7f\\xbf\\t\\x9b\\xe3j\\xa0Rw?\\xfa>\\xf0\\xfd;\\x8ct?\\xfd\\xb8\\x8c\\x03\\xca_s\\xbf\\xcbM\\x9b\\x90\\xd0\\xebe\\xbfL\\xdcT\\xb2\\x93\\xdc_\\xbf\\x1cs\\xaf\\x15\\xfb\\'\\xa2?4\\x8c7\\xb4\\xaa\\x07g?p\\xfd\\x17\\x0e\\'iy\\xbf\\xb0\\xad\\xa38%%\\xa2? ^A\\x95P\\xdfX\\xbf`\\xcb\\x89\\xc2\\x89dc?\\x00\\x03=\\xbc\\x8a\\xcd\\x96\\xbfX\\x97\\xf8\\xa7dNm\\xbf\\xc8\\xab\\x97\\xf9\\xb4\\xc8Q?\\xc0\\xf8\\xbb!I&T\\xbf\\xc0G\\xe3\\xc3\\x9f;N\\xbf\\xdc\\xea\\x14\\xa4e\\xb1e\\xbf@\\xc8\\xbf\\x1d\\xf7bl\\xbf\\x16gO5O?\\x8e?\\xc8D<\\xd3\\xba\\x1aW?R\\x03G\\xf3H\\\\\\x88? \\x84\\xd9R\\x13\\xa2C\\xbf\\x80v\\x8e\\xc8\\xceji?\\xb4\\xe3x\\x7f7\\x81j\\xbf\\xa4zJ\\x8bW\\xdf\\x80\\xbf\\xf0\\xc9W\\xa9e\\x19\\x90\\xbf\\x10\\xe4\\xea\\xb1\\x9d\\xe5|\\xbf|\\xa2t}\\xf6b\\x96\\xbf\\x8c9\\xc4\\xa67?\\x93?VIS\\xf1\\x11:i?H\\xd9\\\\F\\x16\\xabx\\xbf\\xcc{h\\n\\xfb\\x03s\\xbf\\xc0\\xe1M\\xc5[\\xabM\\xbfn9\\x98\\xcc\\x988\\x89?X\\x99\\xbc_e\\x87\\x92?\\xc0\\x05\\xb4\\x92\\x94\\xf7\\'\\xbfr\\xdat\\\\\\xeb\\xc2\\xaf?\\xa4\\x88\\xdf@v\\xa2\\xa0\\xbf\\xd0\\xb9\\x1b\\tR.\\x9f\\xbf=\\xd4\\xd5\\xa0\\xa7\\x01\\x93?p\\x18\\x8bt\\x99\\xab\\x93?\\x00\\x87\\xff\\xe2\\x05\\xab\\x8b\\xbf\\x00C\\x1fK\\xf3 Z\\xbf\\x0f\\tu}e\\t\\x93?\\xc2\\xe8\\xa3A+\\x9a\\x95\\xbf\\x00\\xf9\\xb7N\\x1fs`?\\x00\\xe5&\\xfb\\x16\\x87:\\xbf\\xb0\\xc9\\x1d+\\xd0Z\\x97?8F\\xd4\\xfbl\\xe0\\x99\\xbf\\xfc\\x9d\\xb5D|\\x0f\\x99\\xbfx\\xdcS[\\x87f\\x8d\\xbf\\x00\\x12m\\xd8^r[\\xbf\\xeb&\\xb0\\xfd\\x0f\\n\\x96?`\\x8e\\x93\\x0b\\xef\\xb5v?\\x00\\x8e\\r\\x17\\x83\\x99??L;fuw\\xc0\\x89\\xbf\\x88PK\\x9c\\xb9\\xd4\\x85\\xbft9x,K\\xc3\\xa6?\\x8cdo+\\x0f+\\x98\\xbf\\xf0\\xfbE\\xacN7\\x92\\xbf\\xf8\\xdf\\x958\\xb0J\\xa0\\xbf\\x9e+\\xa5q\\xa8I\\x90?|\\x0e$\\ry\\xb6\\x91?X\\xfd6\\xe2l\\xdac?\\xa2\\xee\\xb8\\xb3|\\x03\\x9a\\xbf\\xc0\\xe0\\x16v\\x00\\xbb\\x81?8DN\\xf9a\\xc5u\\xbfPA#\\x00\\xb5|\\x93?\\xd0\\x0e\\xb8\\x12\\x86\\xc9s\\xbf\\xc0yp\\xf9\\xb5kY?l\\x07\\xc5\\x0b\\xd2\\x91\\x89?\\xb0\\x90\\x92\\xf7\\xd3\\x0bl\\xbf\\xf0\\x9e\\xa7R\\x9b\\xbfg\\xbf\\x80(\\xc7J\\xb44J?\\x00\\x17.1\\xfb\\xb9\\x90? U\\x9ff\\x9bd\\x82\\xbf\\x9c\\xba8]Db\\x80\\xbfP\\xe3\\xa0\\xd0\\xb0U\\x9c?\\x92\\x8caA-#q\\xbf\\xdd9\\x0e\\'\\x0c<x\\xbf\\x00e\\x9d\\xca\\xb5J\\x94\\xbf\\xdc.\\xdb\\x01\\xe4\\xc9p?p\\xb8M\\xdd\\\\\\x98P\\xbf\\x00$\\x1e\\xc5\\xc2t{?,2\\xbc\\xcf\\xa5\\x12\\x8b\\xbfR!j\\x95\\xe3wz\\xbf\\xd0\\x04\\'x!!u?\\x1c/\\xf2\\xc5\\xd1@\\x8f\\xbf\\x0c=UG\\xf7TQ?\\x00J\\x1cJ\\xef\\xc8S\\xbf\\x18\\x803i\\x94?y?\\x18\\x88\\xba\\x8f\\xf35\\x85?W\\x8d_\\x19\\xe8\\x88\\x93\\xbf\\x18\\x02\\x92=\\xb5!\\x94\\xbf\\xc8\\xdc\\x12R\\xa5E\\x9a?\\xcd\\x83N\\xbd\\xa5\\xf9y\\xbf\\x00\\x07O\"\\xb6\\xcf\\x90?\\xd0\\x9bR\\xc9W|\\x9b\\xbf\\x06Sd\\xb1\\xba\\x94e\\xbf@\\xef\\x14\\xaa\\x83\\x02@\\xbf\\xf0^\\xe1\\x8fU\\x8cd\\xbf,\\xa7A\\x97\\x95`\\x80?B\\xcf1%\\xf4\\xf9\\x8e?xC\\x80\\x8ahM\\xa0\\xbf\\xdb\\x88\\x9b%>?\\x89?\\xa4\\x88\\xdf@v\\xa2\\xa0\\xbf\\xbc\\x83\\xfb\\xf8\\xf59\\xb1?4\\x0f\\x03\\xe9\\xa7\\x94\\xa6?@\\xc7[\\x9cdNd?l\\xaa\\xcc;\\xaf\\xdd\\x98?\\x80s\\n\\x89\\xbe\\x91^\\xbf\\x80{\\xae\\xa2\\x003\\x9d?\\xf4\\x82\\x13s\\xb7\\xc5\\x88?\\x90\\x0bt\\xa0\\xb2Nq\\xbf@,\\xfd\\xe63\\xdb\\x90\\xbf FW,\\'\\x1dv?d\\xbd\\xb6O\\x873\\x9c?\\xec\\xd9\\xd1\\x86=7\\x8b\\xbf\\xc8\\x91\\x0e\\xbd*A\\x9a\\xbf\\x00\\x0ct\\x80\\xc5\\xbbx\\xbf@\\xca\\x99!\\xe0\\xf5\\x85\\xbf0\\x08\\xe2\\x97HOi\\xbf\\x00-\\xd6\\xec\\x1dal?\\xb0\\x91\\xf9\\xe7*(\\x9c?T\\xd5h_v\\xe5\\x83? \\xce\\xb6\\xaf\\xf9\\xcev?\\xf0|\\xd4\\xf6\\xd8\\xcc\\x90\\xbf\\xa0\\xddx+H\\xb9\\xa3? \\x1b\\xa4\\xd3\\x02\\xce\\x8b?P,s\\xbf\\xeb\\xc2\\x91?82\\x8e\\xf0\\x81\\x1f\\xaa\\xbf\\x10\\xb6\\xb7\\xc1IK\\x83?0\\x0f\\x95\\xa4\\xca\\x1ff\\xbf\\xc0\\xf1\\xdf\\'R\\x9cl\\xbf\\xfc\\xa1\\xea\\xf9\\xe1Y\\x8c?\\x18\\xd5MN\\x8d\\n\\x7f\\xbf(\\x818\\xf29\\xb3\\x82\\xbfX\\xa3l\\xeb\\xc5p|?p\\x03\\x0c#\\x850\\x8a?0\\xf6\\xea?\\xc9\\xfa\\x81?\\x18J\\xdc/\\x1aG\\x8b?\\xc0\\xef\\xb0\\xd2\\xda8b\\xbfp\\x9a\\x9e\\x1d\\xbc\\xb8\\x85\\xbf\\xb0\\x8d\\x10\\xcc\\x07*u?0\\xb2md\\x9cJY\\xbf\\x80\\x0b\\xc5\\xcezCm\\xbf\\x90\\x9c\\xces\\xcdEp?\\x00\\xe9\\x11sF\\xdc\\x0e?\\x04\\x91\\xc8%\\xd0|S\\xbf0\"\\xd2c\\x92_}\\xbf\\x90\\x80\\x8c\\xa8\\xc2\\rO\\xbf4\\x13f\\xe8\\xe0.^\\xbf^\\xd9\\x9e\\xb5\\x1a\\xd9\\x82?\\x08KD\\x0bic`\\xbfy<z\\xcf\\xbdEq\\xbf6\\x8b\\xb4\\xa3u\\xad\\x82?\\xf8\\xce\\x17\\xa8\\xcea{\\xbff\\r\\xf8\\xff\\xa8\\x93o?P{\\xe2c#\\xaf\\x87\\xbf@\\x18n,,\\x1eF\\xbf8\\x83\\xe6a\\xf59}?^\\xa3\\xba\\xb1l\\x13y\\xbf\\xc0\\x9b\\xc6[\\xec4|\\xbf\\xde\\x95=\\xe2\\x1b\\xf2\\x95?\\x08#L\\xe7&\\xe2s\\xbf \\xa9p\\x14\\xd7\\'\\x90?\\xb6\\x14\\x94\\xdf\\x8b\\x94\\x93\\xbf5\\xb8\\xc9\\x02\\x89\\\\y?\\xbcs\\xd6\\x14\\xc5\\xacj\\xbf0\\xb4\\x16\\xa7\\xb6sJ\\xbf\\x00X\\xfa\\x9f\\xd1\\xa27\\xbf\\x1e\\xb17\\xe7\\x1f\\xb6p?\\xae*\\x1f\\xf1\\xb4\\x95\\x9f\\xbf\\xd2\\xc3R\\xf7\\'#\\x84?\\xd0\\xb9\\x1b\\tR.\\x9f\\xbf4\\x0f\\x03\\xe9\\xa7\\x94\\xa6?\\x9e\\xcd4\\x1a6\\xdc\\xb2?\\x9c#\\x0cy\\x0e\\xa9y\\xbf@R\\xff=2mk?\\x80#\\xcd\\x05\\x1cqp?@uH~\\x077\\x98?_\\x06\\xd1\\xa2\\x8d\\xb5\\x96?\\xd0\\x8c)\\x9d\\xd0\\xbbZ?8\\xd3\\xe0\\x08~\\x04\\x9d\\xbfpo[\\x9f\\xd4r\\x90\\xbf\\xd6\\x03\\xbd\\x95\\xdd\\x98\\x95?\\x14x!\\xf3}pe?x\\xa6\\xdd\\x83\\xf8\\x83y\\xbf0P\\x9ePN\\xf4\\x87\\xbf\\xd8\\x11\\x8cw\\xda\\x87\\x81\\xbfb\\xd9\\xb2\\x85\\x0f\\x06l?\\xb0\\xceu\\xe4\\x9fz~\\xbf`\\xdcf\\x1b\\xc4\\x82s?\\x0cR{[V\\x93T?\\xec\\x03\\x0c\\xff\\xcd\\xf7\\x80?p\\xde\\xbbh\\x06\\xfa\\x9a\\xbf!5\\xaa\\xa6\\xdc\\x89\\xa0?\\xd0i\\x81I9\\x9b\\x89?,\\\\ \\x064{\\x9e?`x\\xc4\\x1f}\\xf8\\xa3\\xbf\\x08\\xbd\\xe1\\xe0C\\xb1P?\\xf0\\x86\\xaf\\xf6\\x9b\\x0e[?\\xe0\\xf1Z \\x03\\x0fW\\xbf878!8Fx\\xbf\\x1c\\xd5\\xbf\\x99t\\xf6s\\xbf\\xf0\\x08V\\x06\\xc4\\xf3f?\\xe0\\x8d\\xa7\\xc5Wc5\\xbfD\\xa9E\\x12\\xf9Z\\x7f?\\xf8\\'mDU\\xf2a\\xbf@\\xa5\\x13\\xca,]\\x84?\\x90\\xf7*\\x89Q\\xb2P\\xbf\\xd0O\\x8cw_{i\\xbfj\\xd0x\\xc1g\\xbe\\x9f?[\\xe8n]\\xe8tz?\\xe04:bU\\xdaM\\xbf\\xbcbRb\\xf0\\x86\\x98?M\\x15)\\xdf\\xec\\xf8o?{\\x07\\x18\\xa9#\\x9f~?\\xfc[]\\x1b\\x15\\xd1\\x88\\xbfH\\x9c\\x7f\\xa1\\xa3\\xeaw\\xbf!Q\\xc7\\xae\\x08Iy\\xbf{5\\x96\\x92E\\xe3~?xYT\\xec\\xde0a?\\xd5\\xea\\x93\\x85-\\xef`\\xbf@\\xf3\\x88o\\x84\\xe9:?\\xfc\\x8d<\\xfa\\x89@{? \\x88\\xa0\\x91\\xac\\xdeh?gi\\xe5l\\xcf\\xb2\\x83?\\xac\\xd1\\xd1\\xe6\\x9e\\xc2\\x80\\xbf\\x00\\x8fV\\x88\\x8f\\x05\\x88?\\xb8\\xa6\\xe2\\x14\\xdd\\x1d\\x87\\xbf\\x90\\xe16\\x98\\xf1\\xe5[\\xbf\\xc0\\xa9\\xf4\\xd0\\x7f32\\xbfC\\xba\\xe1\\xc8C\\xb1\\x98\\xbf\\xc8%\\xf9C\\x9d@x\\xbf\\xc0\\x91\\x1d\\xed\"\\xfc??\\x80\\x94\\x94O\\x03\\x9d/?\\xa3\\x18c\\xde\\x9c\\xc7\\x87\\xbfX2%\\x1e\\xde\\x87Q?\\x1c\\xf0\\xf8\\x0b\\x1c\\xf1k?F\\xf4V,z\\xe8\\x85?\\x18UE|\\xe5MS\\xbf\\t\\x0ff \\xf2\\x94}?=\\xd4\\xd5\\xa0\\xa7\\x01\\x93?@\\xc7[\\x9cdNd?\\x9c#\\x0cy\\x0e\\xa9y\\xbf\\x1c\\xae\\xf5\\x1ea\\x9f\\xa9?\\xac6\\xd9\\x85X\\xb6\\x84?\\x06\\x8e\\x05;\\xc9\\xbdw\\xbf^\\xd9\\x8a\\xc0\\xc2O\\x91\\xbf\\xf9\\x04\\xe3\\x9fx,\\x9a?B\\x85\\x03\\\\\\x85\\r\\x86\\xbf\\x00\\x80\\xf0\\xd8N\\xd1s?\\x0er\\xfd\\x8f\\x1c6\\x80?H\\x0f\\xef0Yf\\x92?\\x8d\\x8aH.\\xef)t\\xbf9\\xdd\\xe8\\x10C\\x1c\\x9a\\xbf\\xee\\xd7>\\xb1v\\xa1\\x99\\xbf 9\\x1eP8\\xc5\\x80\\xbfis\\x95\\xde\\x8f\\xe3\\xa6?\\xec\\xed\\xe2\\xc2\\xdf>\\x8c?X\\xac*\\xe1\\x8f\\tq\\xbfS\\x14\\xbbCT\\xd7r?\\x14Ow\\x04\\x145|\\xbfdE\\x8dE\\xf5\\x97\\xad?\\xd4eQ\\xef\\xc84\\x94\\xbf\\x80\\x12\\x9d\\xc5y\\xc10\\xbf\\xb0=\\xfa\\xd1\\x00Qc\\xbf\\xbc\\xab\\xee\\xc5\\x1ex\\x87\\xbf\\x892\\xd7\\xee\\xac\\x1e\\x9b?\\x10\\xaa8\\xe6\\xd0@h\\xbfA\\xd6\\xe1J\\xcd\\xfd\\xa0\\xbffB\\xe1\\xf7\\xa4\\xcay\\xbf\\xb8dn\\x07FwP\\xbf\\xf2-v\\x99~\\xc9\\x83?\\xac\\xed\\x80\\xe9\\xe2*\\x89\\xbf\\xa5\\xe1\\x84\\xedRX\\x81?\\xd0\\xd2\\xa7\\x18\\xe7\\x05\\x88?\\xac\\x97?k9{`?\\xf77\\xb4\\xf63\\x90\\x81\\xbf\\x80\\xf1\\x01\\x88[\\x0b ?\\xa6\\xec\\xbd\\xbaV\\x94\\xab?\\xf0g&\\xab_\\x8a\\x85\\xbf\\x96\\xbf\\xa5\\x87\\xa5\\xb5\\x89\\xbf%\\x1eK2\\xaa\\x08\\xb2?R\\x8d\\xddk<z\\x83\\xbfZ<|?\\xfc\\x04v\\xbf\\xb6\\x8e4\\x1d\\x9e\\xc0\\xa8\\xbf\\xcaZU\\xf1\\'\\xbew?\\xa0\\xb3\\x90\\xf4[\\xb20\\xbf`\\x06\\x07m\\xca\\xa1P\\xbf\\xc4\\xc9\\xe4\\xf6\\xed\\\\\\x93\\xbfX\\x1538\\xaa\\x87|\\xbf\\x80\\x1aB\\xd1\\xe2=B\\xbfrE\\x90\\x1d\\xa5\\x88\\x83\\xbfT\\xc1\\xcbZMfE?\\xc1\\xd3\\x86!PX\\x8c?X\\xa0\\x86\\xebi4\\x89?0\\xc3!`\\x95I\\x83?\\xf7\\x07\\xc1\\xbb\\x97q\\x8d\\xbf\\xe48\\xa5@\\xa4\\x85\\x9d\\xbf\\x80|,/s\\xf1s?\\xc40\\xe9\\x17.9E\\xbf\\x10d\\xa6\\xaf\\xc7\\x19p\\xbfp\\xdc\\xd7\\xf5\\xe9\\ng\\xbf\\xce\"(\\xd4\\t\\xd6g\\xbf\\xc0\\xe4\\xbdX\\xc7.M\\xbfu3\\x02\\x17\\xe4\\x10\\x80\\xbf\\x1c\\xb3[\\xee^/z?~!\\x8a\\xc4\\x17\\xb8\\x9a?\\xd4\\xea\\x9b\\xcc\\x0bb{\\xbfO\\xf3l5K\\x9c~?p\\x18\\x8bt\\x99\\xab\\x93?l\\xaa\\xcc;\\xaf\\xdd\\x98?@R\\xff=2mk?\\xac6\\xd9\\x85X\\xb6\\x84?\\x98,\\xc7H\\xd0k\\xab?|\\xd1T$\\xdee\\x8a\\xbf\\x90U\\xb1\\x83\\x89\\xf7\\xa3?\\xb4\\x94\\x8d\\xd2I$\\x90?\\x9d\\x12\\\\\\xd1?\\xa0\\x93\\xbf \\xff\\xdcf^\\xb3\\x8b\\xbf\\xfc^:\\x1f\\xc2\\x07\\x84?\\x14\\x9d\\xe6C\\xab\\x08\\xa5?\\xde\\x9d\\xce\\xbf+\\n\\xa5\\xbf/1\\x14\\x97jz\\xa5\\xbf\\xa0=\\x0fO\\xc2\\nZ\\xbf\\xc0\\xadZ\\x9b\\xf2xi\\xbf \\xd4MT\\x86\\x02\\x87\\xbf\\x10\\x83y\\xb5\\x95g\\x8f?0_~:b\\x81\\xa1?&\\xac\\x9fM~\\xfe\\x83?\\x80\\xfb\\xc6y\\xc0#v\\xbf\\x00\\x95D3\\xc6\\xd6y?3\\xb3\\xdf\\x15\\xe2\\x7f\\x97?\\xc0\\x1eIX\\xaa\\x96c\\xbf0Ay\\xd6\\x88l\\x88\\xbfv\\x0c*\\xef!\\x12\\x9d\\xbf\\x0c\\x18pS\\xeab\\x91?\\xa0\\xd4d&A\\x94P\\xbfX\\x16\\xaf\\xc7\\xee\\xf5\\x98\\xbf\\xde\\n\\xa6\\xb4\\xffb\\x93?8p\\xbd\\x90-\\xf8\\x85\\xbf\\xd8\\x92\\xe8\\x15\\xca\\xf0}?\\xe8^-\\x99\\x17Yv?\\x9c&k\\xa1\\xf1o\\x8d?\\x1e\\xb4\\xa9A\\x02\\xff\\x92?\\xb2\\x86\\x9c\\xe8\\xd6\\xca\\x89?\\xcc\\x10[\\x9a\\x9b+w\\xbf\\x1c\\x14R\\xa8\\xa8\\xd7\\x8b\\xbf\\xf8f\\xc5\\x15\\x95T\\x95\\xbf\\x9c\\xd68qh|h?0\\x15\\x05\\xef\\x12Mq?|\\xe2\\xb2.\\xa6\\xf5\\x99\\xbf\\x87-!\\xe7@\\x86q?\\xde\\x97z\\x95\\x17sZ\\xbf\\xbctI\\xae\\x89?\\x93?\\xf0\\xf2\\xe0\\xe1o\\xfdR\\xbf\\x80~\\x0eg\\'\\x1a\\x1c\\xbfj\\xf0\\xe0\\x9e_\\x0b\\x80?\\xe6\\xe7\\x8a\\xd8w\\xdd\\x87?H\\xc0\\xd1\\xfb\\xa6\\x82f?\\x98\\xfd\\xe3\\xf5\\xbb\\x1ey?P?\\xb8S]\\x92U\\xbfb\\'\\xcd^\\x03DT\\xbf@\\x93fIt\\x01^\\xbf\\x08h\\xcesYke\\xbf\\x8c\\xa4\\r\\xce\\xa5Fp?{:\\x0e\\xcc\\x8d\\xf3r?(\\x03\\x16\\xe9\\x98\\x13}?\\xc0\\x95\\xc8\\xd3\\xd0Rb?\\xd4\\xee\\xd63G\\xc0g?\\xa0\\xfdv\\xc4f\\xfdy?\\x00\\xd0\\xb0\\x86\\xd76X\\xbf\\xd0\\xf8\\xddk\\x83\\xed^? \\xc1\\xaf\\xabDaR\\xbf\\xd4\\x97\\xd6\\xaf\"\\xdfv?\\xb6\\xed\\x9d\\xf5\\xb1\\xcd\\x81\\xbf\\x90Q\\xd0\\x85\\x9a\\xecp\\xbf\\x80!\\xe4\\xb1eR\\\\?\\xcdb\\xf6m$\\x0cu\\xbf\\x00\\x87\\xff\\xe2\\x05\\xab\\x8b\\xbf\\x80s\\n\\x89\\xbe\\x91^\\xbf\\x80#\\xcd\\x05\\x1cqp?\\x06\\x8e\\x05;\\xc9\\xbdw\\xbf\\x80\\xd1T$\\xdee\\x8a\\xbf\\xac\\x8cN\\xfe\\x0b\\x8c\\x99?\\x00\\xdf\"\\xabP6C\\xbf\\xda\\xc8N\\x04\\xac6\\x96\\xbfF\\xe0\\xac\\xceHn\\x96? \\x11Q\\xf4\\xd3\\xfas\\xbfz\\xe1\\xd2\\x86e\\xf2\\x93?\\x82\\xe1]X\\x18\\xec\\x8e\\xbf\\x02\\x1d2\\x05\\x95\\x1e\\x89?\\x0e\\x9f\\xbe\\xe5\\x0fY\\x90?X*\\xab\\xb4\\xf4\\x1b\\x8c?\\x00x\\xf5\\xd1\\x1f2e?\\x9c\\xa3\\x8b\\xf49\\xa8\\x9f\\xbf\\x00\\x86\\x90\\xba#\\xfc\\x86?\\x00)\\x1d\\xe7\\xa1w\\x8b\\xbf\\x87\\xcc\\xee>\\xf5\\xd4\\xa0?\\x0c\\xcaT(\\x95i\\x99?\\x10\\xa3\\xa1\\x15\\xe1>\\x96\\xbf\\xf0\\x1d7\\xd9\\xbc#\\x89\\xbf \\x05\\xfbY\\x80\\xa9\\x8e?\\x802Ml.\\xb4\\x97?Dm\\xac\\xf2\\x1c\\xa3\\x81?\\x17\\xf8*\\x86\\xe3\\x1b\\x9b\\xbfP\\xb2[A\\x89PX\\xbf\\xa0\\xf9\\xbd#\\xc1\\xfc~?\\x9d\\x81m{\\xab\\xb0\\x93\\xbf\\xc0:d\\x908\\xbau?\\x94VsW\\x8f\\xcf\\x88\\xbfd0\\x81\\xc3\\xf3\\xe3f\\xbf\\x1401\\xb7\\xa7q\\x81\\xbf\\x08\\xff}\\xd14\\xee\\x89\\xbf`\\x16\\x11R\\xe0\\x90{\\xbf\\xc0\\xf7\\x8f\\xef\\xf8\\x0bg?\\xb0\\xe8/J~\\x87\\x89?\\xc02|\\x82\\xbe\\x11\\x9a?|d\\xb5~7_\\x8c\\xbf\\xe8o5\\xfbX~\\x80\\xbf\\x18K,\\x1b\\xfc\\xf1\\xa5?e\\x03\\xf69p\\xc4\\x85\\xbf]p\\xb9\\xeec\\x9a\\x82\\xbfpWL\\xb6\\x83\\x93\\xa1\\xbf\\x18R\\xe9|\\xfcK\\x7f?p.\\x89\\xec7\\xf0Z? z\\xa1\\x14o;w\\xbf\\xa8\\x8a\\xafw[\\xcd\\x8c\\xbf@6\\x12{\\x08Ly\\xbf\\x00\\xf9\\x16\\xc0\\xaejT?\\x08\\xc4\\x1e%_\\xfd\\x8e\\xbf\\x00\\xb9d@\\x07`-\\xbf\\xb0\\xb7t\\x15eVz\\xbf\\x84\\xd11P\\x92(\\x95?\\x00sv\\xc8F\\xc1Q?\\x00k\\x19\\xe1\\xb6\\xf01\\xbf\\xf8 \\xa8\\xe2\\xe30\\x9e\\xbf\\xc8\\xcfD*h\\xad\\x85?\\xf6\\xc3\\xc5\\x95\\x82\\xaf\\x94?\\x80\\x02\\x95\\x04\\xa5pu? \\x12\\x96\\xa8\\xe6\\x15s\\xbfp\\xe14m\\xdc\\xb2z?X\\xb6\\x1d\\x8e\\x12\\xa4s?\\xb4C\\xf0{\\xad\\xd0\\x81\\xbf\\x00H\\xe0\\xf1\\x8923\\xbf\\xac\\xca\\xf9\\xfa<[\\x95?\\xa0A\\x90j|\\x81\\x90\\xbf`9h\\xa5r\\xf8X?\\x00C\\x1fK\\xf3 Z\\xbf\\x80{\\xae\\xa2\\x003\\x9d?@uH~\\x077\\x98?b\\xd9\\x8a\\xc0\\xc2O\\x91\\xbf\\x90U\\xb1\\x83\\x89\\xf7\\xa3?\\x00\\xdf\"\\xabP6C\\xbf\\x18\\x80\\t\\xee\\x05\\x12\\xb4?\\x108\\xe0HCAo? \\xbfl\\x11-\\xe1u\\xbf\\x90U\\xaf\\x1a\\xe3\\xf7\\xa6\\xbf\\x00\\xa4\\x1a\\x94k\\xa5_?\\x8c\\x1b3\\xb4A\\x1d\\x9b?\\\\\\xaf\\xadN\\xb7\\x1b\\xa0\\xbf0#\\xf1\\x99V\\xf5\\x99\\xbf\\xa0\\xaai\\xc1u\\x0b\\x98?`\\x1c\\x1d\\x80\\xf4\\x13\\x86?\\x11\\xf8\\x8bo\\xcd\\xb4\\xab\\xbf\\xf0x\\xac\\x04\\xf7\\xad\\x91?\\xf0\\xbd~\\xf2X8\\x9b?\\xa2\\xfb\\reA\\x9a\\x9c?\\xb0~`\\n\"\\x03\\x9b?\\xb0k\\xa1\\x0e\\xb3#\\xa8\\xbf\\xd4\\xcb\\xf0E\\xaf\\xb6\\xa0?\\x80X-\\xdf\\xa3\\t\\x81?\\x00\\x90tfE\\xd8\\x81?\\x90Z&O\\xe2\\x1a\\x95\\xbfX\\xcc\\x9f\\x9f\\xa7\\xd3\\x81\\xbf\\xa0-\\x0b5\\xb4rh\\xbf\\x00\\xc0(\\xe2p\"\\xfd\\xbe\\x00(e!Z,\\\\? \\x12\\x00\\xe0>%x\\xbf\\x00&\\xf5\\xb8G\\xbaB?(adN\\x8c\\xff\\x83?\\x08i-s\\\\\\xe8\\x84?p/Fv\\'\\x0e\\x84?\\xe0\\x10O\\xb5\\x07\\xda\\x85? (\\x01\\x83\\xae\\x01i\\xbf0\\xbd\\xa3\\xe5\\x8a2\\x87\\xbf\\x94DO\\xb9\\xa1\\xe9\\xa1? \\xa7\\xaf\\xfd\\x08>b\\xbf$u4\\xefpr\\x90\\xbf\\xfaEa\\xb7\\x07\\x9f\\xa4?\\xe2\\xe9\\xd5\\xc8\\x18Qz\\xbf\\xc4\\xd1\\x06\\xc3\\xaf\\n}\\xbf\\xf0J0\\x98.\\xca\\x9c\\xbf~\\xe3k\\xf8\\xd2![\\xbf\\xb21\\xc9\\xc5=\\x1dO?\\xcd~\\xb6$\\xc6/j\\xbf\\xda\\xca\\xc5\\xe8\\x86\\x12\\x88\\xbf)V\\xe0\\xdb\\x8d\\xa5\\x81\\xbf\\xfa\\x1e\\n\\xcf\\x00;{\\xbf[\\xbcUEp<h?{:\\xa3C\\xec\\x91f?4\\xeb)l\\x98p\\x81\\xbf\\xf5l\\xd6\\x03m\\x07x\\xbf\"\\x94x\\x1e\\x02u\\x96?\\x16\\x16\\xe9\\xa4\\xca\\xfbz\\xbfr\\x12\\x90\\xd7\\xfb\\x95\\x8f\\xbf\\x82\\x0e-\\xcd\\x8c\\x1f\\x81?o2\\x94\\xad\\x8a/}\\xbfJd\\xcd5\\x17\\xf0\\x81\\xbfDK\\x10\\x7f\\xb9v|?\\xd2\\xc9\\xc4\\x97\\x90\\x89\\x80?\\xb1z\\xad\\xab\\x1c\\xd6\\x82\\xbf\\x0cr\\xba\\xe6\\x9fIm?0\\x01IS\\xf3*\\x80?\\x9e\\x02\\x17l\\xf6K\\x8b?\\r\\xdbr\\xf7t\\xf4\\x95\\xbf\\x8e\\x99\\xc6\\xe3<h\\x89?\\x11\\tu}e\\t\\x93?\\xf8\\x82\\x13s\\xb7\\xc5\\x88?_\\x06\\xd1\\xa2\\x8d\\xb5\\x96?\\xf8\\x04\\xe3\\x9fx,\\x9a?\\xb4\\x94\\x8d\\xd2I$\\x90?\\xda\\xc8N\\x04\\xac6\\x96\\xbf\\x108\\xe0HCAo?\\xc5K\\xc5\\xc9\\\\k\\xb4?\\xfa\\x0c$vLt\\x9f\\xbf\\x10\\x88\\xa0j.>}\\xbf\\x98\\xe8\\xd5\\x96\\xb9\\xa7\\x99\\xbf\\xf8\\xfa\\x17y\\xa5\\x0e\\x97?\\x9b\\xbf\\x9e\\x80\\xc2\\xfe\\xa1\\xbf\\xe3\\xbd\\xa5k\\xfcj\\x9f\\xbfYB\\xdbO_\\xfb\\xa4\\xbf\\x84\\xb6\\x9c\\xa8\\xb9\\x87u\\xbfJ$\\x88x\\xd1\\xbe\\xb3?dF\\x85\\x8e\\xd3L~\\xbf\\xe0H\\x7f\"E\\xa7M?\\x99\\xbe\\xffwg\\x85\\x9e\\xbf\\xdb;\\xc7/HH\\x88\\xbf\\x150\\xd2\\xc9\\r{\\xae?\\n\\xb0\\x92\\xed4\\xab\\x91\\xbf.\\xa0\\xac-\\xd7<\\x99\\xbf\\x00\\xb16\\xa2!\\x88\\x83\\xbf\\x16\\xfd\\xbe\\xd9N\\xb1\\xa3\\xbf\\xb62\\xda\\xf81E\\x91?\\xaai\\xbe\\x98^l\\x83\\xbf\\xeb8\\xdf\\x19\\xbd\\x90\\xa5\\xbf\\x9as\\x08#\\xa3\\xa8h?O\\x7f)\\xa5\\x18\\xb0\\x80\\xbf*\\xe5\\xb1\\xb6\\xa6\\xe9\\x84?\\xdd8K\\x14jfs\\xbf\\xd4\\xbee\\x049\\t\\x95?\\x95Z\\xcc$eN\\x96?Z\\xda\\xd65=\\x9et?\\x08\\xb9\\xe0-\\xb9\\x90\\x90\\xbfs\\x81h\\x01\\xcaw\\x8c\\xbf\\x19\\xe5\\xafa=\\xc6\\xa3\\xbf\\xc0Tx\\xfe;\\x03K?/P+\\x13@\\n\\x85?\\xfdH\\xdav\\xad\\x05\\xa5\\xbf\\xd6\\xe0\\x0eA(\\x04p?\\x8a\\xa5;\\xbb(\\xad]?j\\xe7\\xeaCF\\xfb\\x9d?hM/}~\\xb5]?@\\x08t\\xf8\\xf6\\x9e]\\xbf$\\xa6H\\\\R\\x01\\x80?^\\x90>)J\\x16\\x86?\\xec8H\\x8bO1v?x\\x17A\\x93w\\rx?<\\x98\\x82\\xd1a\\xd7u\\xbft\\xa8\\x1d\\'\\xb1ML\\xbf\\xd0\\x80\\xa6\\x1d\\xec\\x1ab\\xbf\\x80\\x99R\\xb9\\xf3\\x9d0?\\x02\\xcaX\\n\\x8d\\xa1o\\xbf\\x004b8\\xc9\\xa7\\x82?\\xde\\xeb\\xf0\\xff7E\\x84?\\x10\\x1e\\x82(\\xae*Q?\\x12\\xb2\\x8b\\x88+\\xcdy?\\x00\\xe5\\xf2\\x93\\xad |? \\x8d\\x8f\\xbcVJg\\xbf p\\xe5\\x1e\\xe3\\xad7\\xbf\\xfc\\xf7\\x99/\\xf5\\xfcq?\\xda\\xae\\x9c\\x9f\\xf3\\x8bu?\\xb2\\xab\\x9c\\xaf?\\xfb\\x81\\xbf\\xa3\\xe6\\x19\\x19\\xba\\x19\\x82\\xbf\\x08e\\xf3\\xd6F{c?\\x9fWxo[jy\\xbf\\xc2\\xe8\\xa3A+\\x9a\\x95\\xbf\\xb0\\x0bt\\xa0\\xb2Nq\\xbf\\xd0\\x8c)\\x9d\\xd0\\xbbZ?C\\x85\\x03\\\\\\x85\\r\\x86\\xbf\\x9d\\x12\\\\\\xd1?\\xa0\\x93\\xbfF\\xe0\\xac\\xceHn\\x96? \\xbfl\\x11-\\xe1u\\xbf\\xfa\\x0c$vLt\\x9f\\xbf\\xc1\\xeb\\x93\\xa3\\xf2\\xd1\\x9e?\\xc0\\xaa\\xec/S\\xd2x?\\xe4\\xb5\\x89\\xf4\\xfb&\\x91?\\x9c\\xc4\\x99\\x0e\\x9a\\xf6\\x98\\xbf\\xa3l\\x1b!\\xd2\\\\\\x92?\\xdc\\xca\\xcdX~\\x0c\\x9e?\\x90\\xd3W\\x89\\x8d\\xa6\\x94?0_\\x92\\x05\\xd0\\xdfx?\\xa8\\x0b\\xaf\\xe1G\\xa7\\xa1\\xbf\\xc0d\\xb2T\\xdf\\xf0s?h\\xc8\\xeb\\xce*\\xfe\\x86\\xbf\\x9e\\xc8\\x0fBo\\x85\\x9c?\\x88q\\x1b~\\x16\\x9c\\x95?<C<\\xf8\\x88\\xff\\xa0\\xbf,\\xa9\\x00\\xb7:\\x8d\\x81\\xbf\\xd0(^\\xdc\\x9a\\x8b\\x92?\\xe4\\x85\\x93C\\xfdU\\x97?\\xac\\x7f\\xa7\\xfc\\xc0\\xe3\\x8f?t\\xedsqz\\xcb\\x9c\\xbf\\x00\\xad\\xb2\\xfb\\xb9M\\x1f\\xbfv@\\xc7\\xa4\\x98s\\x91?8\\x8f\\x81 \\xfc\\x98\\x92\\xbf\\xba\\xc1d\\xa9\\x97\\xc5\\x81?-\\x18G\\xd0W\\x94\\x90\\xbf\\x0c\\x9c\\xa6\\x9d*\\nd\\xbf\\x91!\"\\xc8v%\\x88\\xbf\\xb7\\x04A\\xff\\x07\\xef\\x90\\xbf\\xe2f\\x81\\x15\\x05\\x9a|\\xbfx\\x13\\xe5W\\xcc,s?*\\x88?\\xcf\\x84z\\x88?p\\x9a\\xd2\\xf0\\x94\\xb5\\x93\\xbf8w\\xd6\\x93\\x84\\xf0m\\xbf\\x00\\x0f\\x9a\\xa8z\\xe2e?\\x80\\x13[t\\x90J\\x83\\xbf\\x08\\xc3\\xac}\\xa8fk\\xbf\\x80\\r%\\\\\\xd1|&?@\\xfa\\x1c\\xa0\\xf3\\xa2\\x85?\\xd0zr\\x17\\x8e\\x19z?\\x00$Fxnk`\\xbfpr\\x90\\xb2\\xc4\\x7f\\x81?p\\x15\\xfa=\\x93h|\\xbfXm2\\xc7s\\xd0f?\\x00\\x19\\x9b\\x95\\xf4\\xfcE? \\x7f\\x82\\x1c\\xaf\\x7fg\\xbf0\\xa7\\x9d\\xffJ\\x94P\\xbf\\x10*\\x86\\'\\xb4R\\x82?`\\xa9\\xc4\\xbe\\xecul\\xbf`\\xa4\\xb4D\\x9f\\x85Z\\xbf\\x80\\xe2\\x95\\x1f\\xc2\\x1bL?\\x00\\xa5@%\\x0e\\xabw?\\xc0\\xac \\xa2\\xb4\\x15|\\xbf\\xc8sV\\xf5\\xfc\\xff[?\\xa0\\x84\\xb07@)\\x80\\xbf`q60\\xb1xz?jT\\x9e0\\\\\\xce\\x84\\xbf\\xf0e@\\xc1R*x?8\\xbc\\xb9L\\xdevv?\\x00\\x98\\xd1\\x8e(WD\\xbf \\x1b\\xf7\\x9b\\xd6p\\x7f\\xbfp\\x8d\\xd2W\\x19W\\x88?,I\\xdb\\x8f\\xd3\\x80z\\xbf\\x00\\xf9\\xb7N\\x1fs`?@,\\xfd\\xe63\\xdb\\x90\\xbf8\\xd3\\xe0\\x08~\\x04\\x9d\\xbf\\x00\\x80\\xf0\\xd8N\\xd1s? \\xff\\xdcf^\\xb3\\x8b\\xbf \\x11Q\\xf4\\xd3\\xfas\\xbf\\x90U\\xaf\\x1a\\xe3\\xf7\\xa6\\xbf\\x04\\x88\\xa0j.>}\\xbf\\xc0\\xaa\\xec/S\\xd2x?\\xe02=]\\xda&\\xab?\\x90\\xc7\\xa5)\\n\\xec\\x83?p\\x0c\\xda\\xd2\\x90Z\\x8b\\xbf\\xd4\\xf8\\xff\\xcd0\\x1bp?\\xe85\\xf9\\x0f&b\\x91?\\xc0R\\x8e\\n\\xd5\\xb8\\x85\\xbf@\\xc2+\\xb9l\\x8b\\x7f\\xbf\\xeb\\xd3\\xd7&(\\xf9\\x9c?\\xc0pa\\xc2\\x1a\\x1c\\x82\\xbf \\x8b\\x9aG#\\xdd\\x82?\\x02\\x87\\xc3\\xb9\\xd7\\x0f\\x8c\\xbfP\\x7f\\x962\\xebX\\x9a\\xbf\\xa0\\x7f\\xea\\n\\xda\\xeb\\x96?\\xd0\\xcb\\x87\\xb8\\xd0\\n\\x92\\xbf\\x00\\x17\\xb4\\x93\\xaeLq\\xbf\\x00\\xaf\\r\\xef\\x91\\x91r\\xbf\\x80?@\\xa8M\\xa2\\x87?\\xe0K\\x8e\\xda\\xf3pm\\xbf\\xc0\\x85\\xb6EK\\x11[\\xbf\\x00\\xc0\\x96\\x04\\\\\\xc2:?@q\\x9e\\xc2\\x8a\\xb5z?p\\xb2\\xc7\\x14\\xe2\\xb9~?\\xe0\\xe1\\x14\\xb4\\x8a\\x1b\\x87\\xbf\\xc0\\x04\\xd1\\x9b\\xe6sD?\\x10T\\xae\\xfe\\xd6\\xeew\\xbf@(\\x96uR)t\\xbf\\x00}\\xee\\x1a\\x13FZ\\xbf\\x00\\x00H\\xf6\\xf3\\xf3\\xd4\\xbe@\\x16?\\xf6@R`?@3\\xb0\\xfc\\x0b\\xf2t?\\xa1\\xf4\\xc5\\xad\\xa8I|\\xbf\\x01\\xe6i\\x96\\xc3\\x0f\\x82\\xbfx.\\xe3\\x7f`\\xe2\\x88?_GA\\xae?\\xcfb\\xbf\\xb1\\xf1\\x19\\xaaa\"\\x8a\\xbf \\xe5\\xd1\\xf0\\xfb\\xe8\\x85\\xbf\\x05\\xad\\xce\\x8f\\xb0\\xe4v?~;\\x00D\\xeb\\xbfb?\\xd3+?\\x99\\xa71\\x8b?\\xa8\\xb6\\x98>T\\xddr?\\x10\\xe3\\x8f\\x84JTE\\xbf 73c>\\x98\\x87?\\xa6F3\\xac\\x16F\\x81\\xbfi\\xe9q\"\\x99nf\\xbf\\x05\\xdb\\x1c\\xbc\\x03\\xf8\\x8d?\\x18\\xe84B\\xde\\xeei?\\xf4Q\\xfer\\xda\\x7f\\x92?\\\\$~\\x81\\\\\\xebk\\xbf\\x80MT\\x98&\\xc5\\x86\\xbf\\x18\\x02Vc;Hw?z\\x00k\\x80\\xffK\\x87? \\x07\\'9fWz?xn\\xe2\\x94\\xe8Ps?\\x8ao\\x87\\x9b\"\\xee}\\xbf\\xc0\\x10P9\\xb2\\x07,\\xbf}\\xacl\\x86tuw?<\\x8b\\xad\\x89\\x82A\\x81\\xbf\\xae\\xb6\\'N\\xde\\x8d\\x88?\\x90<\\x95U\\x9a\\x9bn?/\\xe7\\xaf\\xd09@x\\xbf\\x00\\xe5&\\xfb\\x16\\x87:\\xbf FW,\\'\\x1dv?po[\\x9f\\xd4r\\x90\\xbf\\x0er\\xfd\\x8f\\x1c6\\x80?\\xfc^:\\x1f\\xc2\\x07\\x84?z\\xe1\\xd2\\x86e\\xf2\\x93?\\x00\\xa4\\x1a\\x94k\\xa5_?\\x98\\xe8\\xd5\\x96\\xb9\\xa7\\x99\\xbf\\xe4\\xb5\\x89\\xf4\\xfb&\\x91?\\x90\\xc7\\xa5)\\n\\xec\\x83?|\\x82\\xdc\\tk\\xec\\xad?\\x834\\xdc\\x80\\x9a\\xd3\\x84?\\xff\\xf8\\xa6oG(\\x8d\\xbfT `\\x12\\xec2\\x87\\xbf\\xec\\x1d`\\xa0X\\x9f\\x8a?\\x98t\\xd7\\x93\\xbd\\xb7\\x8f\\xbf\\xb9\\xe0\\x9cws\\x95\\xa2\\xbf$&i\\xf7\\xee\\xd2\\x9f?p\\xd52PO\\xd0\\x8a?~\\x0e\\xd5\\x054\\x92\\xab?P\\xd2I\\xa1;\\xc8\\x90?\\x00\\xf1\\x90\\x85\\x18yF\\xbf,i\\xa2PZ\\x84\\x8b\\xbf@\\xa8%/?\\x86q?t\\x05H\\x16\\x82\\xb4\\x98?\\xe0e\\xfc2\\xaal\\x86\\xbfcc\\xf0\\xa11\\xd9\\x95\\xbf\\xc6!\\xabP/\\xc5p\\xbf@Cbi?\\xe0x\\xbf\\xe8\\xda\\x90\\xe7\\x8d\\xd0l\\xbf\\xb0$\\xc1\\x07\\x1b\\x9cp?$\\xa1\\x83\\x18\\x0f\\xdd\\x94\\xbf\\xe8\\x1d\\xbfv\\xe9Z^\\xbf\\xe8\\xdc\\xdc\\x17\\xcf\\xd3}\\xbf\\x80\\t#-\\x1c5|\\xbf(\\xb5fT\\xbc\\xd1z\\xbf \\x14\\x1a\\x12WmD?RI\\xcd\\x95\\x8a\\xcf\\x88?\\xfd\\x01\\x91\\xca\\xb8Z\\xb5?T\\xee{\\x9a\\x1b\\x01~\\xbf\\xf0\\x8d\\xd5\\xa2\\x93\\x88\\x94\\xbf*\\x9f\\xb7\\r\\x02\\x9d\\xb8? \\n}\\x8e\\xb5\\x04\\x85\\xbf)\\\\\\xfc{\\xae+t\\xbfg`k\\x9a}j\\xb4\\xbf\\\\\\xfeO\\xf0\\x86\\xf2m?\\xecOC\\xffaSc\\xbf\\xc5\\xc2|\\xb5R\\xeb\\x8f?<\\xd5\\x12\\xfa\\xa1J\\x92\\xbfVR\\xeb~\\tH\\x7f\\xbf\\xf0\\x98*j\\xf5\\xd9\\x86?\\x0e\\x16\\xdb12\\x14f?Kgr\\xfc\\xbc\\xffP?\\xa0\\x92F\\x84=\\xbc\\x8e?3\\x98\\x84QS\\xdax?\\xc17w\\x99\\x98\\xe3\\x86?\\xb2m\\xa0\\xbf\\x01\\xeb\\x8d\\xbf hsW\"(\\x96\\xbf<|\\x0e\\xeb\\x90\\xd4}?\\xce\\x94WE`Yq?P ~\\xc9\\x8e\\xa2^\\xbf`\\xe4\\xef\\xfaIHg\\xbfh\\xab\\xa5r>+q\\xbf$F\\x95d\\x00\\tr\\xbf>\\x03\\x0b\\x1a\\xacB\\x88\\xbfm\\xf0V\\x99\\xa0\\xa4y\\xbf\\xc1/\\xa3\\x05\\xf2\\xb5\\x93?z\\x84\\x15a4\\xe0q\\xbf\\x9by\\x00\\xfd\\xcd|g\\xbf\\xb1\\xc9\\x1d+\\xd0Z\\x97?d\\xbd\\xb6O\\x873\\x9c?\\xd6\\x03\\xbd\\x95\\xdd\\x98\\x95?H\\x0f\\xef0Yf\\x92?\\x14\\x9d\\xe6C\\xab\\x08\\xa5?\\x82\\xe1]X\\x18\\xec\\x8e\\xbf\\x90\\x1b3\\xb4A\\x1d\\x9b?\\xf8\\xfa\\x17y\\xa5\\x0e\\x97?\\x9c\\xc4\\x99\\x0e\\x9a\\xf6\\x98\\xbfh\\x0c\\xda\\xd2\\x90Z\\x8b\\xbf\\x834\\xdc\\x80\\x9a\\xd3\\x84?\\xdb\\x95\\xe8\\x1c\\xeap\\xb4?\\xe5\"\\xd2\\xc6v-\\x95\\xbf\\xfe\\xee\\xfb\\xa1\\x1a)\\xac\\xbf^03\\x19V\\x1a\\x9e\\xbf@\\xe7\\xe2cnz\\xa4\\xbf\\xe2<\\x05\\xe4\\xdc~v?l\\xca\\xeeU\\xc0-\\x8b?q\\x84\\x94\\x8e5h\\xab?\\x8e\\xdcR\\xf1KI\\x84?\\xe5p\\xf4\\te\\xd2\\x9e\\xbfWi\\x8b\\x82T\\x1f\\xa0?~\\xd8k\\xabm\\xa0\\x9c?4\\x1f[\\xc4\\x10\\xd0q\\xbf\\xd8\\xfba\\x84\\'S\\x87\\xbf\\xfa\\nn\\xa9\\x9a\\xa9\\x9f\\xbf\\xec\\xa2\\xe4]\\x806\\x94?p\\x9e)\\xb6w\\xbd\\x80?F_\\xb0_7\\xde\\x9a\\xbf?bl\\xf2\\xa4R\\x90?B\\xcc\\x8c\\xd4\\x006\\x8a\\xbf\\x89ad\\xfc\\x92W\\x94?\\xde\\xa7\\x1d\\x1f\\xe7\\x18\\x80?^\\xfc\\x9f\\xbd\\x830\\x86?\\xa2\\xd39H\\x9e\\xdf\\x8c?\\x96g\\xf1\\x1cq\\xbf\\x94?\\xf8 \\xa2\\xf4\\xd2\\xcbX\\xbf\\x89`\\xf5|\\xcbS\\x83\\xbfU\\xd7\\x90\\xab\\xb6\\xc8\\x95\\xbf[\\x86L\\x82\\xc8\\r\\x90?\\x98\\xa8L\\xe9\\xf7\\xc3\\x8f?Lg\\xa2j\\x98I\\xa6\\xbf\\xd9\\xbc\\xf0\\x96\\xfe\\xd6\\x85?\\x9a0\\xf1\\xcc\\xbf\\xaf\\x8c?>y\\x0b]Z\\x06\\x9a?s\\x1f\\xd0)2^\\x80\\xbf\\x82u\\x8c\\xc4\\x92jo\\xbf\\xb9\\xb9\\'\\x0e\\x01iu?\\x94\\x1b\\xd1\\xa5\\xd4\\x06\\x91?\\xd7\\x1d\\x89Z\\xa5\\xac\\x82?\\xff\\xb9\\xe7\\xf6s\\\\t?\\xa2Z\\xb3~\\xee\\x02\\x8b?~\\n+S\\xec\\xf5N\\xbfbZP\\xdf\\xcc\\xb2s\\xbf\\xce\\xca\\xbc\\x9a\\t\\xc8\\x85\\xbfL\\xa0\\x1c\\xb6\\xbe\\xdc\\x93\\xbf\\x88L\\xc0EV\\xd7\\x83?(\\x06\\xb2\\x05\\xa0\\x90\\xa2?\\xab \\xc52\\xe0\\x95|\\xbf\\xbe\\x00D\\xb9\\x9f\\x92z\\xbf\\xdeoT\\xdf?\\xbd{?\\x88\\x84\\x13l-2\\x81\\xbf\\xb2\\xcd\\x19\\xbd\\x1b:[\\xbfL\\x1a\\x1f\\t\\xf9\\xf6F?<\\xbb0?\\x88\\xffC\\xbf\\x17\\x9c\\xbf\\xa4?\\x12\\x83\\xbf\\xb5\\xb2^\\xf9,j\\x9d\\xbf\\x9d%\\xb7\\xa1!I\\x8c?\\xc0\\x92\\xda\\x9f;\\xb1\\x86\\xbf8F\\xd4\\xfbl\\xe0\\x99\\xbf\\xec\\xd9\\xd1\\x86=7\\x8b\\xbf\\x14x!\\xf3}pe?\\x90\\x8aH.\\xef)t\\xbf\\xde\\x9d\\xce\\xbf+\\n\\xa5\\xbf\\x02\\x1d2\\x05\\x95\\x1e\\x89?\\\\\\xaf\\xadN\\xb7\\x1b\\xa0\\xbf\\x9b\\xbf\\x9e\\x80\\xc2\\xfe\\xa1\\xbf\\xa3l\\x1b!\\xd2\\\\\\x92?\\xd4\\xf8\\xff\\xcd0\\x1bp?\\xff\\xf8\\xa6oG(\\x8d\\xbf\\xe5\"\\xd2\\xc6v-\\x95\\xbf\\x9cAd\\x82\\x7f\\xc5\\xb1?\\x94n\\xc3\\xd4=\\x06\\xa1?X\\xbb\\x05\\x85k\\'Z?X\\xfcr@\\x13\\xd3o\\xbf\\x08\\ty\\xbf\\x049\\x82\\xbf\\x81\\x07\\xaa\\xbb\\xd8\\xcf\\x8d\\xbf\\xcc\\x07\\xe9{\\x89j\\x8f\\xbf\\x8cM\\x0b\\x977\\xb2}\\xbf\\xd7\\xfb\\x98K\\xd2\\x85\\x87\\xbfn\\xb9\\xbbKei\\x93\\xbf4\\x0c\\xb779\\x16h?\\x81\\x89oi\\xae[\\x8c?\\x90\\xa0\\xb8\\x86\\x94\\x17h?\\nl\\x92\\xc7\\x8c\\xcd\\xa1?\\r\\x12\\xf3a\\xbfp\\x87\\xbf\\xdeb\\xc8\\x87\\x01\\x83\\x89?\\xa0\\xfa\\xd4\\xcb{\\xb5\\x9c?\\rX\\xc4\\x19a&\\x91\\xbf\\x8a\\xc4\\x81\\xbdn\\x96q?\\x8a]\\xe5\\x9e6\\x86u?\\x90s\\x93\\xc3\\x8f3*\\xbfF\\x87\\x02:\\xb6V\\x8e\\xbf\\x1c\\xf9\\x1a;\\x94G\\x95\\xbf\\xec\\xf9<HQzb\\xbf.\\x97\\xa5\\n\\x0b\\x86\\x87?\\x047\\t{\\x82N\\x89?\\xaeTz\\xc6\\x04\\t\\xb3\\xbf\\xa3\\xc8[\\x9a\\x8bFx?\\xaa]L\\xc4By\\x96?\\x00\\x16\\x14\\xa1\\x07\\xdb\\xb4\\xbf\\xc6\\x9d\\x98\\xdf]~{?\\xd3\\xb6\\x90\\xb7\\xf7-\\x85?\\xd8\\xd3\\x99\\xdf\\xb8\\xa0\\xaf?\\x00a\\x9d\\x99\\xf1~+\\xbf\\nP\\x8a\\x8f(\\x8ah\\xbf\\xc0\\x0f\\xeb\\xf4\\x1e\\x92P\\xbf\\xde\\xcfv}\\xe6\\xe5\\x88?\\xf3\\xc1\\xf6^9a\\x85?\\x00\\x1c@\\xb8K\\x0ei\\xbf \\xb5}\\x94\\n\\xb9[\\xbf\\xc0F\\xf2\\xc3A\\x16-\\xbf$\\x0eh=|V\\x8a\\xbf\\x98h\\x1a\\x1e\\x0f\\x7fs\\xbf\\x16\\xefW0K\\xf0\\x91\\xbf!(6\\x1b.\\xf7\\x92?\\x86\\x10\\xa1i@\\xe2\\x9a?\\xf4\\x91\\xe1\\x90sP\\x80\\xbf\\x88\\xe8\\\\\\xad\\xab\\xc6_?\\x00\\xb9\\xc3/\\x01OB\\xbf\\x00<H\\xba\\xc2\\xafV\\xbf\\x17\\x8e\\x93\\x00\\xb37g?\\xc4\\xd7F\\x04\\xee\\x13\\x80?D\\x92[\\x9af\\xdd\\x7f?\\x14\\x85\\xebS\\x82]y\\xbf\\xc4is\\xbd&\\x98\\x99\\xbf\\xd8,\\xa2\\xd0\\xbd\\xde\\x81?\\x8c\\xdb,\\x96\\x81\\x93x\\xbf\\xfc\\x9d\\xb5D|\\x0f\\x99\\xbf\\xc8\\x91\\x0e\\xbd*A\\x9a\\xbfx\\xa6\\xdd\\x83\\xf8\\x83y\\xbf9\\xdd\\xe8\\x10C\\x1c\\x9a\\xbf/1\\x14\\x97jz\\xa5\\xbf\\x0e\\x9f\\xbe\\xe5\\x0fY\\x90?0#\\xf1\\x99V\\xf5\\x99\\xbf\\xe3\\xbd\\xa5k\\xfcj\\x9f\\xbf\\xdc\\xca\\xcdX~\\x0c\\x9e?\\xe85\\xf9\\x0f&b\\x91?P `\\x12\\xec2\\x87\\xbf\\xfe\\xee\\xfb\\xa1\\x1a)\\xac\\xbf\\x94n\\xc3\\xd4=\\x06\\xa1?3qr\\x0eZT\\xb0?\\xce\\xb2\\xdb\\xfe\\x0er\\x94?X\\xe8\\xe4n\\x92$\\x96?_\\xc81\\x04j]\\x8b\\xbf0\\xabD\\xd7\\x0e\\xc9\\x93\\xbfR\\xe6\\xa5\\xedH(\\xa1\\xbf\\x90$\\xe3\\xf7\\x0f\\xfax\\xbf\\xf8\\x9f[\\xb2\\x8b\\x15\\x89?\\xfc\\xe9\\x82\\xf8]c\\xa6\\xbf\\xdc\\xf6\\x1f\\x91\\xfaT\\x8e\\xbf(r\\xd5\\xab/\\xff\\x82? \\xf7\\x7f\\xfbA\\x1c\\x90?D\\xb1_\\x07H\\xe1\\xa1?J\\x18\\x08\\x8dl\\xb6\\xa0\\xbfp\\x9d\\xf5g\\xb2\\xe6T?$\\xe3Y#\\x82\\xcd\\xa0?bg\\xcfJ9\\xfa\\x97\\xbf\\xb4\\x1d\\x8b\\xc5\\x9e=\\x89?\\xb0\\x8a\\x0c\\x9b\\xb6K\\x92\\xbf\\x80+\\xc4\\x89Z\\x83^\\xbf>\\x80\\x1d\\x8c\\xf2\\x90\\x90\\xbf\\x18\\x03\\x0f\\xcf\\x0e;\\x97\\xbfH\\x0e\\xb2\\x0c\\xady\\x86\\xbf\\xa0\\x16\\xf2k\\xa4\\xcf{?\\x98\\xcd\\x1b\\xfdCi\\x8a?\\x8c#\"\\x08F+\\xa3\\xbfFD)\\xf6\\x02Uj\\xbf\\x06!W\\xf1H\\xf5\\x80?j\\x9c_?\\xcf\\xdd\\xa4\\xbf\\xc4\\xa3\\xdaJ\\x02Zl?\\xfe\\x83j\\x95pja\\xbf\\xbc\\x8d\\xc5\\x05\\xa2\\xe5\\x9e?\\xb43\\'j\\xe9\\xcfe?\\xee\\xab\\x0b\\xa6\\xd5\\x84s?4\\x83\\xca\\xf5\\xdeo\\x8c\\xbf\\x98\\xd4\\xd8\\xd7j\\xd3\\x86?\\x02\\xf7mF?\\xb5r?\\x90\\xe9\\xc5!\\xc5 n\\xbf`\\x9d\\x9d\\x138\\xbe\\x84\\xbf\\xc8*W9\\xe8\\x9a]\\xbf\\x90L\\x8am\\x89ka\\xbf\\xf4\\x9f\\xd7\\xf1\\xc9\\x8d\\x86?\\xd8\\xabF\\x049\\x94\\x84\\xbf\\ty\\xce\\x1b\\x85b\\x88?\\x00HS\\x0b\\xaf\\r\\xfb\\xbe \\x1b\\xa3\\xb6+\\xdc_\\xbf\\xb8PG\\x98\\x99\\x15\\x8b?\\xa8\\x08\\xd4\\x9b-\\xaa\\x80?\\x00\\xdbg\\x92\\xffM3\\xbf\\x90E\\xf5`\\xf1\\x96C?\\xb6\\xcfY\"\\xf5L\\x82?\\x00\\xe5#\\xe1\\xaf\\xe2*?\\xe0$ZO\\x00\\xf5b?\\x90\\xef\\x8f6\\xb3\\xb7^\\xbf@\\xa2\\xffe`\\x98b?8o\\xc5\\x1d\\xbd\\xb3d?x\\xdcS[\\x87f\\x8d\\xbf\\x00\\x0ct\\x80\\xc5\\xbbx\\xbf0P\\x9ePN\\xf4\\x87\\xbf\\xed\\xd7>\\xb1v\\xa1\\x99\\xbf\\xa0=\\x0fO\\xc2\\nZ\\xbfX*\\xab\\xb4\\xf4\\x1b\\x8c?\\xa0\\xaai\\xc1u\\x0b\\x98?YB\\xdbO_\\xfb\\xa4\\xbf\\x90\\xd3W\\x89\\x8d\\xa6\\x94?\\xa0R\\x8e\\n\\xd5\\xb8\\x85\\xbf\\xec\\x1d`\\xa0X\\x9f\\x8a?^03\\x19V\\x1a\\x9e\\xbfX\\xbb\\x05\\x85k\\'Z?\\xce\\xb2\\xdb\\xfe\\x0er\\x94?|7\\xf0\\x80\\x10\\xad\\xac?\\xc8\\x9a\\x9c^\\x81I\\x9c?\\xce g\\xc1\\xc7\\x7f\\xb1\\xbf\\x90V\\xe8\\xaf^\\xcd\\x82?0\\xb1~\\xbf\\x13w\\x85\\xbf\\x98z\\xc3E\\xc2\\'\\x95?\\x8a0\\x0f\\xc7\\x0f!\\xa2?\\xccJ\\x07\\xf5%Y\\xaa\\xbf@J\\xec\\xe0\\xaf\\x8fj\\xbf\\x80L\\x11\\xf3\\xb1\\x97f?\\xc0\\x8au\\x8d\\xffmr\\xbfLL\\xe2\\xbbM\\xcd\\x9a?t\\xfd\\xb7\\xc1\\xe3\\x9e\\x9b\\xbf\\xc01\\xe7\\x14\\xd8\\xceZ\\xbf\\xb8\\xbbH\\xf6\\x87\\x89\\x93?\\xa0\\x05\\xda\\x84\\x81Z\\x86\\xbf(n\\x8c$\\x0ekj?\\xd8\\xa3\\xc3h<#\\x82\\xbf\\x00?hr\\xec\\xdeD?\\xe8\\xb6\\xf1\\xc0\\xee\\xa4}\\xbf0\\x87n\\xc3Z\\x7f\\x7f\\xbf\\x1e\\x9f\\x0c5\\xd1Z\\x87\\xbf0\\xc6>\\xd4\\'\\xaek?\\xb0\\x03\\tu=\\xe4h?\\xb8\\xe6\\'a6\\xbf\\xa4\\xbf\\xccod\\x80\\x02it?-\\xe4\\x80\\x8e\\xf0\\xb1\\x8a?H\\x97\\xca\\x1f(:\\xa9\\xbf\\x8e@\\xc3\\x13\\xe6\\x03}?\\xd6\\x15\\x979[\\x1e|?\\xd0Lz\\x898\\x8a\\xa8?\\x08{\\n\\xc1A\\xa2p\\xbf\\x10T\\xc5\\xe5\\xe1\\x00_?\\xfc\\xa2\\xaa\\x91\\xe5\\xf1\\x92\\xbf \\x08\\xb7\\xc8\\x90H\\x82?D\\xe6\\x90\\xd3\\xc3\\x13h?\\x88\\xe8\\xe1\\xe4\\n\\xb5\\x8b\\xbfP\\xfa\\xd6!\\x04yj\\xbf`\\xf9\\xb2@\\xd8?C?\\x10\\x895\\x1fa\\x06\\x83\\xbf`=\\x13\\xaf\\xb5X^?\\x08\\xca\\xe5\\x96q@\\x81\\xbf\\xf8\\xd8\\x89{\\xe2\\x83d?P\\x16\\xbd\\xbf\\x8bcq?\\x80\\xef\\xc6\\x1dg\\xb6e\\xbf\\xbf]\\xb4A\\x00\\xf4\\x8c\\xbf\\x80\\xb5\\x13\\x81w\\xecg\\xbf\\xc0\\xb0\\x14y+\\xf1a\\xbf\\x12QR\\xe6\\xd21}?\\xa0\\xf9\\x8b5\\xeb4^?PV)\\xef\\x96:j?\\xf0:Oq\\xd3i\\x87?\\x80\\x0e*\\x81\\xdf\\x9dK\\xbf\\x80&\\xde\\xf9\\xdc\\xe8m\\xbf\\\\a\\x02\\x18\\xff\\x94\\x8a?\\x00\\x12m\\xd8^r[\\xbf@\\xca\\x99!\\xe0\\xf5\\x85\\xbf\\xd8\\x11\\x8cw\\xda\\x87\\x81\\xbf 9\\x1eP8\\xc5\\x80\\xbf\\xc0\\xadZ\\x9b\\xf2xi\\xbf\\x00x\\xf5\\xd1\\x1f2e?`\\x1c\\x1d\\x80\\xf4\\x13\\x86?\\x84\\xb6\\x9c\\xa8\\xb9\\x87u\\xbf0_\\x92\\x05\\xd0\\xdfx?@\\xc2+\\xb9l\\x8b\\x7f\\xbf\\x98t\\xd7\\x93\\xbd\\xb7\\x8f\\xbf?\\xe7\\xe2cnz\\xa4\\xbfX\\xfcr@\\x13\\xd3o\\xbfP\\xe8\\xe4n\\x92$\\x96?\\xc8\\x9a\\x9c^\\x81I\\x9c?\\xe0\\xbb\\x16bL\\x18\\xaa?\\xae*\\xe3\\x8f\\xe5S\\x81\\xbf\\x00\\x13,,k\\\\z\\xbf\\x00~\\x04J\\x11\\xa4\\xa1\\xbf\\x932\\xdc\\x82\\xa0;\\x89\\xbf\\x18\\xccX\\x13\\x9f\\x1b\\x9e?X\\xbf\\x17\\x8c\\x83!\\xa1\\xbfpv N\\x13g\\x80\\xbf\\x00o\\x8f\\xc4(<P?\\x00x\\xab\\x16\\xaf7!\\xbf\\xe0v^g\\xc7n\\x88?\\xa0\\xff8\\x19X\\xc0o\\xbfD\\xe5\\xcd\\xa5xN\\x80\\xbf\\xc0\\x0b\\x05_h\\x80}?\\xa0\\xf05_A\\xb5u\\xbfp\\xdfZ]\\xe1Sj?\\xb0\\xa1P1\\x02\\x93\\x83\\xbf\\x80\\x84\\xa4\\xcd\\x99 x\\xbf\\xc0*\\xb0\\xb6\\x97XV?\\x00\\x02\\xb4\\xda{&K?\\xb0C\\xa8\\xbf\\xc9\\\\\\x86\\xbf\\xa0\\xc9_\\xa1\\x99Am\\xbf\\x80G-\\xa4\\x91\\x8eL\\xbflnR\\x82NG\\x88?\\xfft\\xea\\x86V\\\\y?\\xfa\\xe4\\x1d`\\xc3\\xabs\\xbfpq\\x90*\\x10$\\x80?@\\xe7k\\xa2\\xf0)G?\\x0e9\\xb7]\\xd2wz?@B\\x9c\\xadn9c?ab\\x86\\x10\\r\\xda|\\xbf\\xc9\\x89G0 _t\\xbf\\xf8\\x91CNh\\x19S\\xbf-\\xab|v\\rl\\x87\\xbf_\\xe5/S\\x8a)w\\xbf\\\\\\xaa\\xa2\\xcf\\x04c\\x86\\xbf*h\\xee\\xfbMs\\x88?sB\\x89h\\n\\x84w?\\xd2\\x97\\x11\\xc7\\x80\\x19~\\xbf\\xf5\\xa1sV\\xb1\\x89\\x94\\xbf\\xaaW\\xd98D\\xa7\\x8a?\\x94\\xd2\\x9f\\xc7am\\x81\\xbf\\x17\\x19\\xc2\\xcc\\x886y?\\x00\\x8e\\xb6pa:c\\xbfV\\xa1D\\x07\\xba?\\x9d\\xbf#e*\\xe6\\xb1\\xc3\\x92\\xbf\\\\\\x84~R\\xd4\\xd9l?\\x83EO\\x83\\x0f5h?`|\\xc3\\xbe[n\\x8b\\xbfB\\xac\\x8e\\xf88\\x17{?\\xca~Z\\xf9P_\\x8e?\\x92\\x89\\xe5\\xd7\\xfeSo\\xbft\\xefeW0\\xde~\\xbf\\x1d\\xef4G4\\xdc\\x8c?\\xec&\\xb0\\xfd\\x0f\\n\\x96?8\\x08\\xe2\\x97HOi\\xbff\\xd9\\xb2\\x85\\x0f\\x06l?is\\x95\\xde\\x8f\\xe3\\xa6?\"\\xd4MT\\x86\\x02\\x87\\xbf\\x9c\\xa3\\x8b\\xf49\\xa8\\x9f\\xbf\\x12\\xf8\\x8bo\\xcd\\xb4\\xab\\xbfJ$\\x88x\\xd1\\xbe\\xb3?\\xa8\\x0b\\xaf\\xe1G\\xa7\\xa1\\xbf\\xeb\\xd3\\xd7&(\\xf9\\x9c?\\xb9\\xe0\\x9cws\\x95\\xa2\\xbf\\xe0<\\x05\\xe4\\xdc~v?\\n\\ty\\xbf\\x049\\x82\\xbf_\\xc81\\x04j]\\x8b\\xbf\\xce g\\xc1\\xc7\\x7f\\xb1\\xbf\\xae*\\xe3\\x8f\\xe5S\\x81\\xbf6\\t\\r\\xfd\\x86a\\xc3?\\x81&\\t\\x82cY\\x96\\xbf\\xa6J\\x93m\\xdbc\\x95\\xbf;=01\\xbc\\xa0\\xb2\\xbf\\xceUV\\xc3\\xea\\x84\\xa8\\xbfl!,\\\\b:\\xb9?;\\xefV4\\x96W\\xa2\\xbf\\x8b\\\\\\xae\\x02\\xd7\\xb1\\x9a\\xbf\\xf4k\\x88T\\x8aV\\x90\\xbf\\xf2\\xf1U\\x8e\\xd1\\xd4\\x91\\xbfZG3\\xa5\\xf0\\x8e\\xa7?\\xa9\\x0c\\x91\\xad\\xce\\xbe\\x85\\xbf,\\xe5\\xa7\\x91\\xc3\\xd2\\xa1\\xbf/\\xfcGy\\xcc+x?\\xc0\\x12\\xe6\\\\\\x10%\\x1d\\xbf_\\xa6\\xb4\\xc9\\xe0R\\x8a?\\xd1\\x18\\xe0\\xc2\\xa0=\\x85\\xbf\\xb0V\\x0c\\x9ds\\xc0\\x91?\\xdf\\xa0\\x0b\\x97\\xed\\x96\\x93?\\x0f\\x907\\x03\\xb2\\x1aw?\\x9d\\x0c\\xb1Qb\\xe5\\x8d\\xbf\\x00GS\\x0c\\xa5\\xb5\\x88\\xbfP6\\x01=\\xc7\\xcc\\x96?>\\xe6\\x89;\\'\\x16r\\xbf\\xd4\\xc2\\x90\\xb8\\x8fex\\xbf\\x90\\x1b\\xe9D\\x1f\\xc5\\x9a?\\xf8z\\xd5p\\x1a\\x84_\\xbf\\x92\\x9df\\xe5\\x8a^\\x7f\\xbfPS\\xfa\\xf3A\\xa5\\x93\\xbfp\\xcfd\\x91\\xe7l^?\\x809\\xb7T:\\xf93\\xbf\\xc0\\xe2!\\x80\\x87\\xa9j?@\\xe2_\\xe7\\xf8\\xc0B?\\x18^w(\\x92\\xefh\\xbf0\\xf5\\x81Y\\xc5\\x08z?\\x10\\x0b;F\\xbf\\xf0l\\xbf\\xc0Q\\xd0s\\xbf\\xa0=\\xbf\\xb0\\xef?P\\xd0\\xbdo?\\xc0\\x8b\\x14\\x964\\x02r?<\\xfc\\xe1S\\xf4G\\x87?0\\x82\\xa1\\x95@sa?\\x98S8\\xd2\\x90\\x9b\\x88\\xbf\\xc0\\x06L\\xc0\\xd9\\x90P?\\xbd2\\x0fB\\xc1W\\x8b? \\xda\\xd7\\xf0\\x93\\rq?\\x80uV\\xbc\\xf8\\x8f|?\\xa0(\\xc5U\\x87\\xdbJ?\\xf8\\xc7\\xa23\\x01[r\\xbf\\x80x/1xMK?\\xb0\\xba\\xa36\\x1ftu\\xbfP\\xe0)\\xc8\\xe6e\\x89?`rkD@\\x8bc?.\\x14\\xcf\\xd3\\xf3&{\\xbf`\\x8e\\x93\\x0b\\xef\\xb5v?\\x00-\\xd6\\xec\\x1dal?\\xb0\\xceu\\xe4\\x9fz~\\xbf\\xe4\\xed\\xe2\\xc2\\xdf>\\x8c?\\x10\\x83y\\xb5\\x95g\\x8f?\\x00\\x86\\x90\\xba#\\xfc\\x86?\\xf0x\\xac\\x04\\xf7\\xad\\x91?dF\\x85\\x8e\\xd3L~\\xbf\\xc0d\\xb2T\\xdf\\xf0s?\\xc0pa\\xc2\\x1a\\x1c\\x82\\xbf$&i\\xf7\\xee\\xd2\\x9f?l\\xca\\xeeU\\xc0-\\x8b?\\x82\\x07\\xaa\\xbb\\xd8\\xcf\\x8d\\xbf0\\xabD\\xd7\\x0e\\xc9\\x93\\xbf\\xa0V\\xe8\\xaf^\\xcd\\x82?@\\x13,,k\\\\z\\xbf\\x88&\\t\\x82cY\\x96\\xbf\\x80\\xfap\\xe1\\xaf\\x7f\\xa5?@<tJ\\xf1W\\x7f?\\\\\\xea\\\\U\\xcbF\\xa7?\\x80\\x9f\\xa7E:\\xd8\\x84?\\xf0\\xb8\\xd2\\xd1\\xf8\\x9e\\x92?pY\\xee\\xe0\\xf3\\xf4\\x92\\xbf\\xd8&\\x05f6\\x12\\x95?\\xc0\\xa2G\\xfe\\xb9\\x1a\\x87?x\\xf3][\\x84<\\x83?\\x06\\x12\\xd7\\xfehy\\x80\\xbfp;0\\xe9\\xf79}\\xbf\\x14%p\\x03c\\xb2\\x90\\xbf\\xd4.t(Z\\xcf\\x88\\xbfP^5HW\\rl?\\x80\\x0f\\x92h%\\xf5y?\\x00\\xcb\\xc6p,A!?\\x00\\xb00\\x19\\x08\\x06k?`\\x08\\xf0\\x08\\xd6.q?\\x90?\\x0f\\x05i)k?P\\x013\\x0b`\\x12u\\xbf\\x00X\\x8d\\x82\\xa6\\x88H\\xbf`\\x85\\xfc\\x1fIm\\xab?\\x85\\x00\\x87K\\xb1U\\x92\\xbf\\x96(\\x9b\\x9b1L\\x91\\xbf\\xac\\xde\\x0f\\x05\\xfb\\xf7\\xb4?\\xe2\\xac\\xc5\\x8c\\nl\\x91\\xbf\\x9f\\x1d\\xe8\\xe6\\x91\\xc2\\x88\\xbf\\xee\\xb3\\xed\\x89\\x0e\\xc6\\xb2\\xbf0\\xdc\\xca5\"\\xdc\\x8a? \\xce\\xeaX\\xfb`Q\\xbf0\\x0c\\xb0\\xb0J\\x88\\x88?PC\\xfd^g+\\x9b\\xbf\\x18v\\xb7\\x1eo\\xd8u\\xbf\\xa8\\xdb\\x9dxv\\x18\\x87?\\x80\\x02\\xfe\\xc8R/\\x85\\xbf\\xbe?\\x8b\\xc0\\x1f\\xceg\\xbf\\xac\\x84\\xa7g\\x04\\xfb\\x88?X=\\xd4\\x10\\x08\\x86\\x8d?\\x10\\x80i\\xe5\\x90pa?\\xa4\\x0e\\xc2\\xf40\\xd6p\\xbf`c{\\xd0P\\x90\\x98\\xbf\\xd0q8\\xa8\\x07\\x04y?\\xd5\\xdd\\xea~\\x044\\x9f?\\x00\\x01\\xd4\\xec\\x84\\xb3V?\\x00\\x94\\x1a`r\\x16X\\xbf\\x02&Po\\xd4\\xff\\x85\\xbf<\\xa1$W\\xea*\\x81?\\x9c\\x87\\x18\\x9cM\\x0e\\x85\\xbf8|\\xc5\\xf5;\\xfe{\\xbf\\xe8\\x14\\xdf\\xb2\\xe9\\xf1\\x8a?\\x00\\xeb\\xd4\\'\\x12fV\\xbf\\xf6~\\xd6\\xe1\\xdd}\\x8c\\xbf\\x00\\x8e\\r\\x17\\x83\\x99??\\xb0\\x91\\xf9\\xe7*(\\x9c?`\\xdcf\\x1b\\xc4\\x82s?X\\xac*\\xe1\\x8f\\tq\\xbf0_~:b\\x81\\xa1?\\x00)\\x1d\\xe7\\xa1w\\x8b\\xbf\\xf0\\xbd~\\xf2X8\\x9b?\\xe0H\\x7f\"E\\xa7M?X\\xc8\\xeb\\xce*\\xfe\\x86\\xbf \\x8b\\x9aG#\\xdd\\x82?x\\xd52PO\\xd0\\x8a?o\\x84\\x94\\x8e5h\\xab?\\xcc\\x07\\xe9{\\x89j\\x8f\\xbfR\\xe6\\xa5\\xedH(\\xa1\\xbf0\\xb1~\\xbf\\x13w\\x85\\xbf\\x00~\\x04J\\x11\\xa4\\xa1\\xbf\\xa6J\\x93m\\xdbc\\x95\\xbf@<tJ\\xf1W\\x7f?|m!\\xe9\\x14X\\xb4?z-\\x99n\\x87\\x12\\x8b?\\x0ci0j\\xb4\\x99\\xa0\\xbf\\x00,\\xd1\\xd2\"\\x84v?4\\xa5\\rb\\x04c\\xa0?\\xc0\\xbe\\xce\\xa0y\\xb6t?\\xc0\\xe4\\xea\\xcb1\\x86\\x90\\xbf \\xd4\\x16ltI\\x93\\xbf\\xf0\\xdc\\x8e\\xbc|\\xbdr\\xbf@( \\xdd\\xd5\\x17t?\\xb0N\\x95u\\x8b\\xa4\\x82\\xbfL\\xb4\\xd5\\xb4\\x17\\xea\\x98?`Vf\\xf6\\xce>~\\xbf\\x00F\\x01g\\x15\\xdea?\\r\\xe3,1V\\x18\\x95?\\xc0\\xf2\\x03A^I}?`\\xa4\\xae\\x8e\\xb7p\\x84?\\xe0\\xbc\\xb0\\x8e\\xca\\x10\\x97?\\x00Ti<,+\\x10\\xbf\\xf0}7\\xf4:(\\x8f\\xbf\\xc0g\\x9b\\x13\\x92\\xcc\\x89?\\xd2V\\x7fMb\\xf6p\\xbf1\\xb3C\\x87\\x03th\\xbf\\xc5\\xa4S\\xc9\\xe9:\\x95?\\x16PL5=\\xb0a\\xbf4\\x95\\x1dc\\x95\\xc1\\x81\\xbf^\\n\\x9bv\\xa9\\x1e\\x91\\xbf\\xcc\\xdc\\xf1y\\xac\\xbat?\\x02Z(C\\xc5\\xe4g\\xbfB\\x0f\\x07\\xa5\\x05\\x0b\\x95?\\xf2\\x14\\xd4\\xb8\\xff\\xdc~?\\n,2\\x1f\\x9cl8?[\\xf0\\xaa_\\x1a/\\x92?,\\x03\\x93\\x9471\\x82\\xbf\\x0e\\xbfz\\x81\\xb2\\x1cp\\xbf\\x0c,\\x80o\\x12\\xfcz?\\xb4>\\x0f\\xa8+\\x8fy?\\xa2\\xec\\xa2\\xac8^\\x8c?\\xdb8\\xef\\xdf\\x91\\x05c\\xbf\"\\xc7\\xcd\\xf8\\x9fy\\x88\\xbf\\xccOm\\xb4\\x94\\x9d\\x85?k\\xf5\\t\\xba\\\\Q\\x8f?\\x97\\xfb\\x82\\xc1\\xe6\\x94\\x8a?\\x12\\xd95\\xe7\\x88\\xe4b?^\\xb8\\x89n(vH\\xbf0q\\x9a\\xe2\\x9e\\x87U\\xbf\\x96\\xf6\\xcb\\xc6\\xfc\\x84l?\\xbf~E-\\xdb\\xb4\\x93\\xbf\\xdf)e!n\\xf0\\x8f?\\xceG\\xcc\\x071+b\\xbf\\xcd\\xa9\"3\\x84.\\x90\\xbfJ;fuw\\xc0\\x89\\xbfX\\xd5h_v\\xe5\\x83?\\x0cR{[V\\x93T?S\\x14\\xbbCT\\xd7r?&\\xac\\x9fM~\\xfe\\x83?\\x87\\xcc\\xee>\\xf5\\xd4\\xa0?\\xa2\\xfb\\reA\\x9a\\x9c?\\x99\\xbe\\xffwg\\x85\\x9e\\xbf\\x9e\\xc8\\x0fBo\\x85\\x9c?\\xfe\\x86\\xc3\\xb9\\xd7\\x0f\\x8c\\xbf~\\x0e\\xd5\\x054\\x92\\xab?\\x8e\\xdcR\\xf1KI\\x84?\\x8dM\\x0b\\x977\\xb2}\\xbf\\x90$\\xe3\\xf7\\x0f\\xfax\\xbf\\x98z\\xc3E\\xc2\\'\\x95?\\x902\\xdc\\x82\\xa0;\\x89\\xbf;=01\\xbc\\xa0\\xb2\\xbfZ\\xea\\\\U\\xcbF\\xa7?z-\\x99n\\x87\\x12\\x8b?b~\\r\\xe4\\x89\\xde\\xb8?h\\xc2\\xf6\\x06\\x8d\\xed\\xa5?\\xc5\\xd3Q\\xc2\\xe5\\xb7\\xa1\\xbfpZl\\xcb_?g?f`M<{\\x91\\xa0?\\xe4\\xcf\\xa2h\\x13r\\xad?\\x1f\\xb81H\\xf0\\r\\x8d\\xbfo\\xd9<\\xa9/\\x8b\\xa0\\xbf\\x86\\x86=\\xc1\\x02\\x87l\\xbf@9\\x89\\x86\\xf2\\x12G?mC\\x1e\\xca\\x8f\\xff\\x9c\\xbf\\x0e\\x80\\xfe\\t\\x90C\\x82?\\x00\\xc2\\xb4\\x81/\\x95\\x94\\xbf\\x91\\x87\\xeb\\x16\\xe9\\xc7e\\xbf\\xe4\\xdfJ\\xb8\\xd4\\t\\x80\\xbf\\xcf\\xebq\\x87\\xe8\\x89\\x89\\xbft\\xa6 \\xb9\\x87{F\\xbf\\xb0\\x0e0\\xcb\\xd1\\xf9J?wh6>\\xe8\\xaa\\x90?\\xbc\\x14\\xaa@\\xb1\\xc9\\xa5\\xbf\\x1c\\x9c\\x1d\\xfa\\x11\\x95p?R\\x94Dg][x?\\xfcb\\x91&\\xf69\\xa9\\xbf\\x8f\\x1a\\xb6\\xb1\\xc8\\xb3\\x80?z\\xe6\\x10\\x15\\xe3\\xa9k\\xbf\\x8e\\xa7\\xb0l\\xdc\\xca\\xa8?h\\x90\\xa1i\\x16\\xael\\xbf\\xb0\\x9f\\xfbc\\x13\\xe4m?\\x00\\x81G\\xbf|\\x858?\\xbe1x.\\x16l\\x94?\\x00vw\\x1do\\x81\\x01?\\xe0\\x00\\xe2&3\\xefj?d\\xc2\\xd4\\xa1\\x05\\x1dq\\xbf\\xacf\\xbb\\xa4\\x91\\xf0Z\\xbf\\xf5\\x89\\xb46\\n\\x89\\x83\\xbf8\\x02$\\x9e\\xf9\\xc6c?\\xf4\\xcbe6\\x13s|?\\xaa4\\x93y\\xb8e\\x86\\xbf\\xc0\\xd0\\x8c\\x10Yay\\xbf\\x08\\xd6n \\x0c\\xad\\x8f?\\xb7\\xe7\\x00Ky\\xdc\\x8a\\xbf@n\\x8b,\\x8d\\x9a\\x86?\\xc0`\\x7f\\xf5]#i\\xbf\\x90)\\x94@\\xe9\\x11\\x83?p\\xa1\\x86\\x11N\\x0e\\\\\\xbf\\xa85\\xc2\\x9b\\xc8\\x12\\x7f?\\x006\\x98\\'\\xb822?\\x04\\xbe\\xbe\\xfe\\xaa\\xa8\\x8a?,$_\\xab\\xa7\\x12\\x93\\xbf\\x96\\x913r\\xdbP~?\\x88PK\\x9c\\xb9\\xd4\\x85\\xbf \\xce\\xb6\\xaf\\xf9\\xcev?\\xec\\x03\\x0c\\xff\\xcd\\xf7\\x80?\\x14Ow\\x04\\x145|\\xbf\\x80\\xfb\\xc6y\\xc0#v\\xbf\\x04\\xcaT(\\x95i\\x99?\\xc0~`\\n\"\\x03\\x9b?\\xdb;\\xc7/HH\\x88\\xbf\\x8cq\\x1b~\\x16\\x9c\\x95?@\\x7f\\x962\\xebX\\x9a\\xbfP\\xd2I\\xa1;\\xc8\\x90?\\xe6p\\xf4\\te\\xd2\\x9e\\xbf\\xd7\\xfb\\x98K\\xd2\\x85\\x87\\xbf\\xf0\\x9f[\\xb2\\x8b\\x15\\x89?\\x860\\x0f\\xc7\\x0f!\\xa2?\\x18\\xccX\\x13\\x9f\\x1b\\x9e?\\xccUV\\xc3\\xea\\x84\\xa8\\xbf\\x80\\x9f\\xa7E:\\xd8\\x84?\\x0ci0j\\xb4\\x99\\xa0\\xbfd\\xc2\\xf6\\x06\\x8d\\xed\\xa5?\\x14\\x15\\xa3\\xb5:\\x95\\xb8?\\xaa\\xbdwr\\n\\xe3\\xb1\\xbf`(_\\xab\\xd3Dp?\\x00\\xf7\\xc6}\\xefh\\x8d?P\\xea\\x852\\x17 \\xac?\\\\\\xd8\\x85\\xfe\\xc2Y\\x94\\xbf`|\\xdb\\x83\\xa5\\x14W\\xbf\\xde\\xee\\xf2F\\xc4\\x10\\x86\\xbf\\x94\\xf1\\xc6\\x87`\\xa7\\x94?d\\x99\\xe4\\x01$\\x87\\x92\\xbf6\\xd5\\x92\\x96\\x9f\\xc4\\x84?]j\\xe3\\xb3+z\\xa0\\xbf\\xb4}-]\\xe1\\xe4\\x91\\xbf@nT\\xfa\\x8c-}\\xbfX\\x9b\\xa0\\x85\\x84P\\x83\\xbf\\t\\x8e\\xac\\xb0\\x08\\x1d\\x95\\xbf@\\x0c/\\xae\\xa5j@?\\x16\\xd6G[\\xa6N\\x92?\\x98\\xbd_!\\xa4\\x02\\xaa?`\\rn\\xd7\\xd0\\xe4]?\\x906h\\xea\\x7f\\xb5\\x8d\\xbf\\xb8$S\\xea\\xc1=\\xa6?\\xa0\\xc3e\\xdd\\x91\\xcfQ\\xbf\\x0e\\xc4x;%\\x00r\\xbf\\x08\\xee\\x15!{e\\xa8\\xbf\\x10\\x0f8\\x91\\xfc\\xcd\\x80\\xbf@8{\\x89a\\x0cF\\xbf\\xb0\\x94\\x95\"1_\\x93\\xbf\\xf0\\x9e\\x12\\x7f~\\x98~\\xbf\\xe0\\x9b\\xc7\\x08c\\xf1u\\xbf(\\x9cW\\xb7\\xfa6\\x93\\xbf\\xf0\\xf9\\xa0\\xc6\\xd8]\\x92?\\x7f\\x93\\\\*;Aq?\\xf8/\\xedAWTz?L2\\xcb\\x85\\x8a\\xa8\\x8e\\xbf\\xf0\\xbf\\x85\\xe9\\xb4G\\x94?\\xaf\\x9b\\x94\\xc16O\\x95?`\\xb4Fe%jy?\\xb4\\xdc\\xf1\\x18\\xed?\\x96\\xbf\\xccm\\xbeG\\x9d-\\x84?\\xa0\\\\\\xa3\\xdb\\x9b\\xac\\x97\\xbf\\x90\\xe7\\xd5\\x08\\xf8Z\\x93?H=k;a\\x0fq?L\\x81\\xb1\\x17/\\xb5\\x90\\xbf\\x00\\xbb\\xebsM\\xb8X?\\xc8oy\\xc6\\x15A\\x86?\\xb0r\\xef\\xb7\\xc4\\xc0~\\xbf\\x9c\\xdc\\xacGo\\x80\\x93?\\xe0]\\x06Q?\\x1dG?t9x,K\\xc3\\xa6?\\xf0|\\xd4\\xf6\\xd8\\xcc\\x90\\xbfp\\xde\\xbbh\\x06\\xfa\\x9a\\xbfdE\\x8dE\\xf5\\x97\\xad?\\xe0\\x94D3\\xc6\\xd6y?\\x10\\xa3\\xa1\\x15\\xe1>\\x96\\xbf\\xb0k\\xa1\\x0e\\xb3#\\xa8\\xbf\\x150\\xd2\\xc9\\r{\\xae?<C<\\xf8\\x88\\xff\\xa0\\xbf\\xa0\\x7f\\xea\\n\\xda\\xeb\\x96?\\x00\\xf1\\x90\\x85\\x18yF\\xbfWi\\x8b\\x82T\\x1f\\xa0?n\\xb9\\xbbKei\\x93\\xbf\\xfc\\xe9\\x82\\xf8]c\\xa6\\xbf\\xccJ\\x07\\xf5%Y\\xaa\\xbfX\\xbf\\x17\\x8c\\x83!\\xa1\\xbfl!,\\\\b:\\xb9?\\x10\\xb9\\xd2\\xd1\\xf8\\x9e\\x92?\\x00,\\xd1\\xd2\"\\x84v?\\xc5\\xd3Q\\xc2\\xe5\\xb7\\xa1\\xbf\\xac\\xbdwr\\n\\xe3\\xb1\\xbf\\xfe|q\\x14\\x0f/\\xd1?\\x8c\\xc4\\x84h\\x12\\xce\\xbd\\xbfP\\x1c\\xfd\\xdb.R\\x99\\xbf\\x98\\xac\\x10\\xbc\\x0b\\xe1\\xc5\\xbf\\x90H\\xc8\\x92\\xe7\\xbf\\xb1?/\\xb0\\xe0\\x85\\xb6z\\xa2?`\\xc0\\xfd90Uc?X\\xb8\\x1b\\x07,>\\xb8\\xbf\\x18\\xfa\\x11\\x94\\x06\\xf9\\x81?\\x18\\x1e\\x9e\\xce\\xdb\\xaf\\x96\\xbf\\x0c\\x99\\x9f\\xe1\\x02\\xce\\xb2?\\x00\\x10Ka\\xca\\x7f(?\\xec)Q\\xa6\\x18-\\x97?\\xa8\\xf0\\xde\\xa59\\xe2\\xa8?\\xd0\\xab\\x81\\x0e\\x9a\\xa5t?\\x08\\x0b\\xd3\\xd2]e\\x94\\xbf\\xdcT\\xdbl\\xefJ\\xa1\\xbf\\x98\\x92\\xac\\xe4\\x7f\\x9d\\x96?\\xb5[\\xfa\\xac\\x1b:p\\xbf\\xb0\\x8c2\\xb1\\'\\xe1T?zB\\x02B\\xac,\\xa0?j\\xe6g\\x8f\\xb1\\xd8f\\xbf\\x06\\x89\\x90k/\\x08\\x7f?\\x1c\\x90\\'}+\\xdf\\x93\\xbf\\xf0j\\x13@&\\x98s?*\\xad\\x85w\\x8d\\xdcn\\xbf \\x98\\xc3\\xc7\\xf6\\xe6\\x85?~\\x96=\\x9e\\x8e\\xfd\\x87\\xbfl\\xcd\\x1db\\xb6Vb\\xbftX%\\xb2\\x97r\\x84?\\xe1\\x7f\\x85l\\r\\x02\\x84\\xbf>YN\\xa5\\xa7\\xf8Q\\xbf\\\\#\\x17\\xc8\\x11]{?\\x7f g\\xdc\\xd1P\\x87?\\xba\\x1a*\\xbaJ\\x88\\x8f\\xbf@H\\xdc\\x067:\\x9f\\xbf,\\xa8Fvs\\xe5\\x8c\\xbf\\x01i\\x18y\\xf7k\\x92?B.\\x17+\\xc8\\xf8\\x90\\xbf\\x88\\x1a\\xba\\xbe\\xdc\\x01\\x91?\\xb4N8\\x98\\x06\\x91\\x97\\xbf\\xbc\\x81\\xd2M\\xb8\\x8b\\x84\\xbf\\x80\\x9a\\x88\\xac\\xb0vy?\\x00J\\xee\\xc1\\x9aK\\x8c\\xbf0~h\\xe4Q\"n?\\xcc\\xd3\\t\\xfe\\x8d\\x83\\x8b?\\x95/-5K\\xc9\\x90\\xbf\\xd0<\\xf3d\\xbe\\xc5g?\\x8cdo+\\x0f+\\x98\\xbf\\xa0\\xddx+H\\xb9\\xa3?!5\\xaa\\xa6\\xdc\\x89\\xa0?\\xd4eQ\\xef\\xc84\\x94\\xbf1\\xb3\\xdf\\x15\\xe2\\x7f\\x97?\\xf0\\x1d7\\xd9\\xbc#\\x89\\xbf\\xd4\\xcb\\xf0E\\xaf\\xb6\\xa0?\\t\\xb0\\x92\\xed4\\xab\\x91\\xbf,\\xa9\\x00\\xb7:\\x8d\\x81\\xbf\\xd0\\xcb\\x87\\xb8\\xd0\\n\\x92\\xbf,i\\xa2PZ\\x84\\x8b\\xbf~\\xd8k\\xabm\\xa0\\x9c?:\\x0c\\xb779\\x16h?\\xdc\\xf6\\x1f\\x91\\xfaT\\x8e\\xbf@J\\xec\\xe0\\xaf\\x8fj\\xbfpv N\\x13g\\x80\\xbf<\\xefV4\\x96W\\xa2\\xbfpY\\xee\\xe0\\xf3\\xf4\\x92\\xbf4\\xa5\\rb\\x04c\\xa0?jZl\\xcb_?g?P(_\\xab\\xd3Dp?\\x8c\\xc4\\x84h\\x12\\xce\\xbd\\xbfd(\\xe5\\xfc#\\xd1\\xc0?`\\x86\\x13\\xec8\\xad\\x91?\\xa2\\x05\\xfa\\xd1\\xfb\\x9a\\xb4?N]h5\\xea\\xfc\\xb4\\xbf\\x97 \\xe9\\xc0f$\\xa9?\\xb6\\xa4\\x11Af\\xee\\x81?bl\\x07i\\xf5\\\\\\xaa?<:\\x97v\\x03;\\xa2?Pw\\x04\\xa6m\\xf1]?\\x80Q\\x15Ssz\\x98\\xbf\\xe80\\xdd\\x8eB\\ro?\\xa0\\x8d\\xfb\\xfa\\xcayT\\xbf\\xccXV\\x8a\\xbb\\xaa\\x82\\xbf\\x1a2~\\xd0\\rN\\x91?\\x84\\xf6\\xd66\\x9b\\xd0\\x8c?\\xe0\\xbb\\xc3Or\\x0bc?P\\r0#\\x9e\\xd1\\x87\\xbfXuxa\\xdc\\xa7a\\xbf\\xb8\\x00\\xba\\xf4(\\x9c\\x88?@\\xdbc\\xb0Y\\x95u\\xbf0Q\\xb4f\\xd7\\xbc]?fAr\\x95\\x13]\\x7f?0x\\xf6n\\xe2@\\x83?\\xc05\\'\\xd4\\xc0oT?6\\xc7c\\x9c\\x07\\x80\\x80\\xbf\\x84\\xceT\\xf9\\xbc\\xb5\\x89?\\x98\\x8d\\xdd, ;t\\xbf\\x00\\xea\\x0e?\\x19\\xb5\\x03?hv\\xfa\\xe3\\xf2\\x0e\\x80?\\x90\\xd7\\xa50\\x1e;m\\xbf\\x18\\xfa+\\xbeG\\xf1B?\\xa45E\\xafR\\xe3y\\xbf\\x90\\xb9%\\xe0\\xe7\\xb6l?5w)V\\x07\\x0c\\x86\\xbf`\\x82\\x18\\x15\\xef^i\\xbf\\x80\\x93\\xa7\\xa3\\xf4\\xb7H\\xbf\\xd0\\\\\\xb0\\xde\\x1f`i?\\x80\\xf7K\\xb4\\x9c2+? 6\\x1a3\\x97\\xc0\\x7f?\\x90J\\x03\\xb5Kr\\x84\\xbf \\xe3\\x1fD\\xf1\\xf6e?\\x00t\\xb6\\x8c\\xd8\\xe4\\xf7\\xbe\\x887\\xafr\\x8cEi\\xbf\\x90\\xffGE.\\x9f}\\xbf\\xe0v\\x05(#-Q? \\xa0\\xdd\\x08\\xf6\\xb5S\\xbfd]\\x84KN\\xd3\\x86\\xbf\\xf0\\xfbE\\xacN7\\x92\\xbf \\x1b\\xa4\\xd3\\x02\\xce\\x8b?\\xd0i\\x81I9\\x9b\\x89?\\x80\\x12\\x9d\\xc5y\\xc10\\xbf\\xc0\\x1eIX\\xaa\\x96c\\xbf \\x05\\xfbY\\x80\\xa9\\x8e?\\x80X-\\xdf\\xa3\\t\\x81?.\\xa0\\xac-\\xd7<\\x99\\xbf\\xd0(^\\xdc\\x9a\\x8b\\x92?\\x00\\x17\\xb4\\x93\\xaeLq\\xbf@\\xa8%/?\\x86q?4\\x1f[\\xc4\\x10\\xd0q\\xbf\\x81\\x89oi\\xae[\\x8c?(r\\xd5\\xab/\\xff\\x82?\\x80L\\x11\\xf3\\xb1\\x97f?\\x00o\\x8f\\xc4(<P?\\x8e\\\\\\xae\\x02\\xd7\\xb1\\x9a\\xbf\\xd8&\\x05f6\\x12\\x95?\\xc0\\xbe\\xce\\xa0y\\xb6t?f`M<{\\x91\\xa0?\\x10\\xf7\\xc6}\\xefh\\x8d?P\\x1c\\xfd\\xdb.R\\x99\\xbf`\\x86\\x13\\xec8\\xad\\x91?\\xc4\\x97`\\xc3\\x91\\xac\\xb4?\\x9c\\x07eLwS\\xa1?\\xa0\\xf6H\\xbd\\xc0\\x80\\x88?\\xb0\\t\\x00kW\\xaf\\x83?\\x0c#\\x1a$\\xe9\\x1fr\\xbf\\x8c\\x03;\\xfc\\xcb\\xbb\\x95?\\x0c\\\\\\xe2\\x97\\x84U\\x93?2es\\xb2\\x11\\x1f\\x87?\\xa0aQC|L}\\xbf\\x14\\\\\\x0e\\xfb\\x88.}?\\xe0X\\xf4\\x83_fa\\xbfp\\xbbv\\xa92\\xads\\xbfH\\xcb\\x0f\\xac\\n\\x93\\x87?\\x10\\x84mz\\x12\\x0fs?\\x00\\x06>%\\xdd\\x92<?\\x10\\x13\\xa1\\xe2[\\xeb\\x91\\xbf\\x80/\\x8e\\x9d\\xc4\\xd6T?`\\x9b[\\x10\\xacne?\\x00qO\\xfa\\x9d\\x8c\\x85\\xbf@,3e\\x1a\\xffQ?\\x00\\xc1;\\xe1\\x81\\x8a\\x02\\xbf\\xa0B\\x8bCu\\xe3\\x9b?\\x80D\\xbc*W\\x13u?X\\xef\\xb0\\xcd\\xf8Gw\\xbfJS\\x0c\\xa8\\xe7\\x00\\xa3?\\x10\\xdb\\x06\\x1c\\x1eRz?\\x80R\\xa8(\\xcd\\xd5?\\xbf\\x80\\x98\\xbd\\xb2N,\\x9a?X\\x19\\xc4\\xd1\\xb4!\\x85\\xbf\\xf4\\xab\\x0e\\x9d\\r\\x99[\\xbf [\\x0b\\xa1\\x99\\x1fs\\xbf\\x80]A\\xc4\\x04\\xa9c\\xbf\\x1c0\\xd4\\xecE\\xd8\\x88?\\xecR\\xfcn1\\x0f\\x9f\\xbf@|f\\x16\\xebP\\x87\\xbf\\xb4f\\x11\\x94\\x85\\x18\\x9c?j\\xa9\\xc3\\xf1\\x0c\\xe9\\x94\\xbf\\xf0\\xa3\\x1d\\xe8\\x9d|\\x96?\\xa0\\x159\\xe2v\\xcb{\\xbf0\\xf6Qi[\\x1fj\\xbf H\\x8ag\\x8bva\\xbf\\x80~Om2#\\x84?\\xa8%I\\xd1\\x99\\r\\x8e\\xbf6\\xc3$\\xc7\\x01\\xb8\\x92?\\xb8e\\xdanc\\xe8\\x98\\xbf0\\xaaO\\x89\\'$r\\xbf\\xf0\\xdf\\x958\\xb0J\\xa0\\xbfP,s\\xbf\\xeb\\xc2\\x91?,\\\\ \\x064{\\x9e?\\xb0=\\xfa\\xd1\\x00Qc\\xbf0Ay\\xd6\\x88l\\x88\\xbf\\x802Ml.\\xb4\\x97?\\x00\\x90tfE\\xd8\\x81?\\x00\\xb16\\xa2!\\x88\\x83\\xbf\\xe4\\x85\\x93C\\xfdU\\x97?\\x00\\xaf\\r\\xef\\x91\\x91r\\xbft\\x05H\\x16\\x82\\xb4\\x98?\\xd8\\xfba\\x84\\'S\\x87\\xbf\\x90\\xa0\\xb8\\x86\\x94\\x17h? \\xf7\\x7f\\xfbA\\x1c\\x90?\\x00\\x8bu\\x8d\\xffmr\\xbf\\x00p\\xab\\x16\\xaf7!\\xbf\\xf4k\\x88T\\x8aV\\x90\\xbf\\xc0\\xa2G\\xfe\\xb9\\x1a\\x87?\\xc0\\xe4\\xea\\xcb1\\x86\\x90\\xbf\\xe3\\xcf\\xa2h\\x13r\\xad?P\\xea\\x852\\x17 \\xac?\\x98\\xac\\x10\\xbc\\x0b\\xe1\\xc5\\xbf\\xa6\\x05\\xfa\\xd1\\xfb\\x9a\\xb4?\\x9c\\x07eLwS\\xa1?\\xee\\x17\\xac\"\\xb5\\xee\\xcc?l\\xad\"\\x82\\xc7\\xd6\\xb9\\xbf\\\\\\xa7\\xb1\\x9e\\x03\\x15\\x85\\xbfX\\xe7\\xecb\\xeb\\xd4\\x8e\\xbf\\xdc:H\\xa9\\x97\\xfa\\xab?\\x9a\\xdb_/\\xc6\\xd8\\x9b\\xbf\\x88o\\xf9\\xbau\\xda\\xa0?\\xde5\\x11\\xbb\\x1c9\\xb2\\xbf\\xec\\x1b\\x13\\xe6\\x0c\\xc5\\x8f\\xbfxJ\\x16*\\x82\\xb5\\x8c\\xbf\\x08m`\\xbb6\\x15\\xa5\\xbf\\x00z\\xf1-\\x8eu#\\xbf\\xf0\\xac\\x9fN\\x0c\\xe6w?L\\xc3\\xf7\\x14\\x98\\xff\\xa3?\\x00z+\\'\\xc0#\\x9d\\xbfD\\xeaz\\xac\\x9e\\x10}?L\\xa9\\x12 \\xcc\\xc0\\x91?Tw\\xbc\\xde\\xf2S\\xa5\\xbfZT]l\\x95\\x8ax?\\xc1\\x7f`Cd\\x0c\\x84?\\xc0/\\x86\\xf1\\xa2\\x13\\x99?\\x80\\xc5\\x02A\\xcfyq\\xbf\\xc0\\x0cD\\xea2\\xa1:\\xbfO\\x02d#M\\x80\\x92\\xbf\\xe8\\x80\\x911\\x0b\\xa3\\x81?\\xfa\\xfd\\xf9\\xfcE\\x86\\x81?\\x9c\\x9f\\xb1\\xdc\\xc3\\xdd\\x83\\xbf.w\\xcbk\\x99F\\x8d?\\x80\\xb3@-\\xe7\\\\X?\\xf6\\x06\\xf7\\x1f\\xaeDw\\xbf\\x00\\xcc\\xc6\\xfb\\x9e\\xa07\\xbf\\x1c\\xc3\\x95sC\\x06\\x9a\\xbf\\xc3\\xcf\\xf6\\x17\\x00t\\xa3?\\xde^\\xe3\\x91b\\xf7\\x9e?z\\xccj\\xd7\\xedM\\xa1\\xbf\\xa5\\x1d\\x88\\x87\\x94<\\x99?\\xe8\\xb9WX\\xafh\\x8b\\xbf\\xe0\\x9a\\x82\\x91M\\xc9\\x8e?F]\\xaa\\x04^\\xa5y?n2\\xcdX\\xa0yq?\\x9813\\x81EFc\\xbfP\\xa5\\xd1\\x8f\\x05\\x08v\\xbf\\xd81\\xcds\\xbf[\\xa0\\xbf5\\xb3)\\x8e\\xe0X\\xa4?\\x93.\\xa5\\'\\xcd\\xf9\\x91\\xbf\\x9e+\\xa5q\\xa8I\\x90?:2\\x8e\\xf0\\x81\\x1f\\xaa\\xbf`x\\xc4\\x1f}\\xf8\\xa3\\xbf\\xbe\\xab\\xee\\xc5\\x1ex\\x87\\xbfv\\x0c*\\xef!\\x12\\x9d\\xbfDm\\xac\\xf2\\x1c\\xa3\\x81?\\x90Z&O\\xe2\\x1a\\x95\\xbf\\x15\\xfd\\xbe\\xd9N\\xb1\\xa3\\xbf\\xac\\x7f\\xa7\\xfc\\xc0\\xe3\\x8f?\\x80?@\\xa8M\\xa2\\x87?\\xe0e\\xfc2\\xaal\\x86\\xbf\\xfb\\nn\\xa9\\x9a\\xa9\\x9f\\xbf\\nl\\x92\\xc7\\x8c\\xcd\\xa1?D\\xb1_\\x07H\\xe1\\xa1?PL\\xe2\\xbbM\\xcd\\x9a?\\xe0v^g\\xc7n\\x88?\\xf2\\xf1U\\x8e\\xd1\\xd4\\x91\\xbfx\\xf3][\\x84<\\x83? \\xd4\\x16ltI\\x93\\xbf\\x1f\\xb81H\\xf0\\r\\x8d\\xbf\\\\\\xd8\\x85\\xfe\\xc2Y\\x94\\xbf\\x90H\\xc8\\x92\\xe7\\xbf\\xb1?N]h5\\xea\\xfc\\xb4\\xbf\\xa0\\xf6H\\xbd\\xc0\\x80\\x88?l\\xad\"\\x82\\xc7\\xd6\\xb9\\xbf\\x87\\x19\\x99U\\xd8\\xe4\\xc1?\\xf6_\\x92\\xacH\\x7f\\x97\\xbfJwC\\xb8uU\\x80?hhR\\x8a\\xb1\\xacq\\xbfn\\x90\\xa1\\xb2\\xa3\\xff\\xa0\\xbf\\x90\\x19\\x87A\\xfcqb?\\xbf\\xd8\\xbe\\xdauh\\xaa?P\\x81EqQ\\xf7{?\\xd0\\xe7\\x18(\\x82\\x9e\\x80\\xbf\\xc0\\xf34\\xac\\'nb?\\x00\\x0e4\\xd4H\\x9ea\\xbf\\xf0G\\xb4\\xe56<X?|\\x08\\xfb\\xb4\\x13\\x14\\x86\\xbf(\\x96\\xa0oHl\\x9c?\\xb8!\\xd8z\\x11yv?\\x8byi\\xea\\x19\\x95n?\\x0e\\x934\\xe1\\xad^\\x94?\\xf2fs\\x99\\x9b\\xa1{?\\xb6D\\x8c\\xdb\\xc2\\xbb\\x8d?X;\\xbf\\xc3\\x91]r\\xbfMwP\\\\\\xad\\x0f~\\xbf\\xb4\\xa3+\\x18,Gt\\xbf\\x9d\\xe5\\x82H\\xbb`\\x83\\xbfQz\\x04\\xf7m}x\\xbfO\\x9f+\\xf9\\xf7\\x9fx\\xbf\\x90\\x00\\xf6\\x88o\\x86}\\xbf&\\x19\\xc4\\x05H\\x0c\\x81?UGl\\xcdW\\xbdq?\\x05\\xd9\\'\\x98\\x87B\\x80?\\x10e\\xb3p\\x91\\xaa^\\xbf}\\xce\\x87\\xeaEc\\x84\\xbf\\xcc\\xe7I\\xd6+\\n\\x9d\\xbfd\\xc1\\xb4\\xea9\\x83q\\xbfp\\xf5O^\\x8c\\t@?1\\xa8\\xc0@\\x98\\xd2\\xa2\\xbf@XM\\xcd\\x1a\\x8b;\\xbf\\xa4\\x07c\\xab(\\x94~\\xbf\\x1c\\xff!hu\\xceh\\xbf\\xe8G\\xb1m`\\xeb\\x80\\xbf\\xba\\xa4T\\xa4\\xc5L\\x87\\xbf\\xcdn\\x8d\\xa8\\x1f\\xd9\\x95?\\x14\\x8c\\x07z\\xb9I\\x82?lPOR9\\x02d\\xbf\\xda\\xce\\xec\\xa6\\x84\\x8d\\x8c?z\\x0e$\\ry\\xb6\\x91?\\x0c\\xb6\\xb7\\xc1IK\\x83?\\x08\\xbd\\xe1\\xe0C\\xb1P?\\x892\\xd7\\xee\\xac\\x1e\\x9b?\\x0c\\x18pS\\xeab\\x91?\\x17\\xf8*\\x86\\xe3\\x1b\\x9b\\xbfX\\xcc\\x9f\\x9f\\xa7\\xd3\\x81\\xbf\\xb62\\xda\\xf81E\\x91?t\\xedsqz\\xcb\\x9c\\xbf\\xc0K\\x8e\\xda\\xf3pm\\xbfec\\xf0\\xa11\\xd9\\x95\\xbf\\xec\\xa2\\xe4]\\x806\\x94?\\r\\x12\\xf3a\\xbfp\\x87\\xbfJ\\x18\\x08\\x8dl\\xb6\\xa0\\xbft\\xfd\\xb7\\xc1\\xe3\\x9e\\x9b\\xbf\\xa0\\xff8\\x19X\\xc0o\\xbfZG3\\xa5\\xf0\\x8e\\xa7?\\x08\\x12\\xd7\\xfehy\\x80\\xbf\\xf0\\xdc\\x8e\\xbc|\\xbdr\\xbfo\\xd9<\\xa9/\\x8b\\xa0\\xbf`|\\xdb\\x83\\xa5\\x14W\\xbf/\\xb0\\xe0\\x85\\xb6z\\xa2?\\x97 \\xe9\\xc0f$\\xa9?\\xb0\\t\\x00kW\\xaf\\x83?L\\xa7\\xb1\\x9e\\x03\\x15\\x85\\xbf\\xf5_\\x92\\xacH\\x7f\\x97\\xbf\\xe2x\\xff\\x96\\x08@\\xc0?\\x8e\\xe7\\xd4:\\x0b(p?m\\xdc\\xa1\\x7f\\xf6^\\x88?5\\x96\\xe0\\xeeY\\xce\\xa6?`\\xf0\\xb9fAb!?\\xb2ob!)s\\x95?F\\x8f\\xd7\\x81[\\xcf\\x93\\xbf\\xff\\xb7\\xc5\\xaedO\\x83?=\\xa0\\x04\\xdcs\\xf2\\x92?l\\xca\\xe9+\\xee\\x8f~?\\x82]\\x00\\t\\xaf\\x16g?\\xa1\\xd6ZG\\xe5\\x02\\x8a\\xbf\\x84\\xf3\\xa4X\\xe2\\xda\\x84?d;(\\xf6\\xb5\\xfcn?.W\\xbc\\r\\xc2/g?\\xc0\\xce\\xfd\\x12\\xff)x?\\xd4_I%;\\xb5O?4\\xe7\\xd1Z\\xd6\\xcfv?<9O&\\xaf4\\x81\\xbf|\\xe1\\x18$\\xf7\\xccU\\xbf\\xdc>\\xfaC*bX\\xbfHk\\xea\\x82\\xda\\xf9]?`\\xfawV\\xa4\\xe5[?\\x1f\\x84\\xacMy-g?`\\x85\\xeb\\xa1\\xa0`F?\\xc6\\xb6Q\\xac8\\xd8s?\\x80YD5\\xa3g\\t\\xbf,\\xbd+G<\\xdey?\\xc0\\x17\\xff1g\\x8a:\\xbf-\\x1a\\x9c8,2{\\xbfP\\\\Kj\\x06\\x89Q?\\x92\\xd1\\xe028.}?\\x94#\\xcb\\x1b\\xc6\\xbdm\\xbf4Q`\\xfa\"\\x90m\\xbf\\xc0\\xde4\\xda!\\xdaV\\xbf@\\xd2Eg(\\xa9k\\xbf\\x88\\xce\\xde\\xf0F\\x16^\\xbf\\xf0\\xc0\\xf4H\\xc5\\x1cO?\\xf3\\xed\\x1b\\xef\\x8f\\xe1p\\xbf\\x9e\\x8cj\\xe5wwj\\xbf\\x8au\\xe0\\x97ZAr\\xbf\\xb6\\xb7\\xe8\\x03\\x12q{?\\x88\\xa6\\xa8\\x8e\\xbf\\xec`\\xbfH\\xfd6\\xe2l\\xdac?0\\x0f\\x95\\xa4\\xca\\x1ff\\xbf\\xf0\\x86\\xaf\\xf6\\x9b\\x0e[?\\x10\\xaa8\\xe6\\xd0@h\\xbf\\xa0\\xd4d&A\\x94P\\xbf`\\xb2[A\\x89PX\\xbf\\xa0-\\x0b5\\xb4rh\\xbf\\xaci\\xbe\\x98^l\\x83\\xbf\\x00\\xad\\xb2\\xfb\\xb9M\\x1f\\xbf\\xc0\\x85\\xb6EK\\x11[\\xbf\\xca!\\xabP/\\xc5p\\xbfp\\x9e)\\xb6w\\xbd\\x80?\\xdeb\\xc8\\x87\\x01\\x83\\x89?p\\x9d\\xf5g\\xb2\\xe6T?\\xc01\\xe7\\x14\\xd8\\xceZ\\xbfD\\xe5\\xcd\\xa5xN\\x80\\xbf\\xa9\\x0c\\x91\\xad\\xce\\xbe\\x85\\xbfp;0\\xe9\\xf79}\\xbf@( \\xdd\\xd5\\x17t?\\x86\\x86=\\xc1\\x02\\x87l\\xbf\\xde\\xee\\xf2F\\xc4\\x10\\x86\\xbf`\\xc0\\xfd90Uc?\\xb6\\xa4\\x11Af\\xee\\x81?\\x0c#\\x1a$\\xe9\\x1fr\\xbfX\\xe7\\xecb\\xeb\\xd4\\x8e\\xbfFwC\\xb8uU\\x80?\\x8e\\xe7\\xd4:\\x0b(p?\\x90\\x80`Z\\xee\\xda\\x8d?\\xf8\\xd4\\x9e\\nD\\x15e?hWi\\xb9@!U?\\xca\\x7f\\xb85\\x1c\\xd1{\\xbfx\\x08\\xde\\xce=\\xed\\x86?\\xb0gk\\xf8\\xd7\\xa9P\\xbf\\xb0\\xd7m\\xe2n\\xf2t\\xbf\\xe0kS\\xd5Zhr\\xbf\\xc0?\\xb6\\x8a\\x9aIE\\xbf\\xb6\\xab\\xc9\\xddKey?h\\xd3Uf\\xcd\\xf7m?p\\xdcU\\x9a\\xf7\\xe7\\xa6\\xbf\\x88t\\xf2-\\x075G?$%\\xe6v\\\\\\x97\\x8b?0\\x8ax\\x9f\\xff\\xf3\\xa5\\xbf\\xc5\\xefD\\xe1(\\xf5e?:\\x06\\x99\\xb5;;~?\\xb4m\\x98\\r\\x04y\\xa1?\\xd0\\xbc\\x17\\xa0\\x19\\'g?\\xb02yW\\xa2\\xcaU\\xbf\\xe0~\\x93\\xdf\\x00\\xeaQ?\\xa820\\x05`*e?A\\x01]\\xadg]u?\\xd0\\x80\\xd3 Z\\xa5a?\\xd0\\xa3\\xfa^\"\\x06b\\xbf\\xe3\\x81\\x9e\\xc5\\x85wf\\xbf\\xb8\\x8bH\\xa1\\xf4\\x97~\\xbf\\\\\\\\\\xe9\\x12c\\xf5p?\\xda`S\\t\\x06\\xf7\\x96\\xbf\\xc0T\\x92\\x10\\xcb??\\xbfL?\\xf7\\x1d\\x84\\xcc\\x85?PC\\x18\\x07R\\xffT?\\x0e\\x11\\xcf\\x8c\\xbc(q?H[\\xde\\t(\\x93\\x83?tW\\xb3\\xd7G.\\x80\\xbf\\xa5\\xa8S@\\xc0\\x1fq\\xbfZ+m\\x0e\\xfd\\x05\\x84?Lu\\x90\\xcd\\xd7\\xa2e\\xbfLw\\xd5\\x11\\x92\\xa1r\\xbf/\\xdb\\xb0\\x04\\xb6\\xc7\\x8b\\xbf0\\x12c\\xb9\\x9d@m?L\\x0f\"\\x9f`9\\x82\\xbf\\xa2\\xee\\xb8\\xb3|\\x03\\x9a\\xbf\\xc0\\xf1\\xdf\\'R\\x9cl\\xbf\\xe0\\xf1Z \\x03\\x0fW\\xbfA\\xd6\\xe1J\\xcd\\xfd\\xa0\\xbfX\\x16\\xaf\\xc7\\xee\\xf5\\x98\\xbf\\xa0\\xf9\\xbd#\\xc1\\xfc~?\\x00\\xc0(\\xe2p\"\\xfd\\xbe\\xeb8\\xdf\\x19\\xbd\\x90\\xa5\\xbfv@\\xc7\\xa4\\x98s\\x91?\\x00\\xc0\\x96\\x04\\\\\\xc2:?@Cbi?\\xe0x\\xbfF_\\xb0_7\\xde\\x9a\\xbf\\x9e\\xfa\\xd4\\xcb{\\xb5\\x9c?$\\xe3Y#\\x82\\xcd\\xa0?\\xb8\\xbbH\\xf6\\x87\\x89\\x93?\\xc0\\x0b\\x05_h\\x80}?,\\xe5\\xa7\\x91\\xc3\\xd2\\xa1\\xbf\\x14%p\\x03c\\xb2\\x90\\xbf\\xb0N\\x95u\\x8b\\xa4\\x82\\xbf@9\\x89\\x86\\xf2\\x12G?\\x94\\xf1\\xc6\\x87`\\xa7\\x94?X\\xb8\\x1b\\x07,>\\xb8\\xbfbl\\x07i\\xf5\\\\\\xaa?\\x8c\\x03;\\xfc\\xcb\\xbb\\x95?\\xdc:H\\xa9\\x97\\xfa\\xab?hhR\\x8a\\xb1\\xacq\\xbfo\\xdc\\xa1\\x7f\\xf6^\\x88?\\xf8\\xd4\\x9e\\nD\\x15e?\\xb7\\xcf\\xb5\\x94\\xc0\\xb2\\xb4?\\xd0qN*\\xc0\\xfa\\x89?L\\x1c\\x95[\\xd2\\xaa\\x90?Qe\\xda\\x1c\\x80\\xf8\\xa3\\xbf\\xe0\\xe5U&\\x92\\xd8V?\\x00\\xa4\\xb1\\x16q\\x93\\x91\\xbf\\x0c\\xc1\\xd4\\xfb\\xa6;\\x98\\xbfp$\\x86\\xc53Z`\\xbfHN3J\\xfc\\x15\\x90?\\x18\\x11\\xe7Gf(\\x8b?\\x88\\xa4\\xd7[\\x11\\xc3\\x8a?\\xc25\\xbdPc\\x0f\\x81\\xbf~\\x05\\xb7N)\\x95\\x81\\xbf\\xd2\\x8aF$\\x94\\x15\\x94?\\xe0x\\xa8o\\x90\\xeas\\xbf\\x128\\xa5\\x84\\x13\\x0f\\x7f\\xbf\\xaa\\xc0\\xbcD\\x1c\\xd2\\x92\\xbf`\\x88\\x17qc\\xd8W?eh\\xed\\xecW\\xb4u?\\xc4\\xe6\\xe5\\x05\\'\\x12\\x80\\xbf|\\xbb\\xd0x\\xecb\\x82\\xbfB\\x14lI\\x03dy\\xbf\\xc0\\x1e\\xaf\\x19\\x83fl\\xbf\\x96\\xe9fO\\xff\\x10k\\xbfX\\xb4\\x0b}\\x99\\xe5V\\xbf\\xe1\\x81m\\nI\\xd4\\x7f?\\xed\\x17\\xfdX\\x10\\xbfu?\\x02c\\xa5\\xfe~\\x9ec\\xbf\\x02\\xfe`\\x04\\xbbc\\x89\\xbf\\xda\\x1d\\x13\\xb0=T\\x8d\\xbf\\xc2\\x88\\xb9f\\x9d\\x7fp?SQ\\xc2>\\n\\x90P\\xbf\\x00\\x12U\\xce\\xb6q5\\xbf\\xc0\\xbd\\x01\\xbbG\\x8ee\\xbf\"h\\xbbz\\x90ry\\xbf$j\\x9b\\xbeQ\\x8bl?\\xa6\\x1a\\x85/\\xb6B~\\xbft?h\\xcdT\\xa1\\x84?si;\\xd6\\xe8E\\x86?\\x003\\x05\\xcd\\xaa\\x00k\\xbf\\'\\xe0\\x1f\\xa7\\x0f-w?\\xc0\\xe0\\x16v\\x00\\xbb\\x81?\\xf8\\xa1\\xea\\xf9\\xe1Y\\x8c?878!8Fx\\xbffB\\xe1\\xf7\\xa4\\xcay\\xbf\\xde\\n\\xa6\\xb4\\xffb\\x93?\\x9f\\x81m{\\xab\\xb0\\x93\\xbf\\x00(e!Z,\\\\?\\x9as\\x08#\\xa3\\xa8h?8\\x8f\\x81 \\xfc\\x98\\x92\\xbf@q\\x9e\\xc2\\x8a\\xb5z?\\xd8\\xda\\x90\\xe7\\x8d\\xd0l\\xbf?bl\\xf2\\xa4R\\x90?\\x0eX\\xc4\\x19a&\\x91\\xbfbg\\xcfJ9\\xfa\\x97\\xbf\\xa8\\x05\\xda\\x84\\x81Z\\x86\\xbf\\xa0\\xf05_A\\xb5u\\xbf,\\xfcGy\\xcc+x?\\xd4.t(Z\\xcf\\x88\\xbfL\\xb4\\xd5\\xb4\\x17\\xea\\x98?mC\\x1e\\xca\\x8f\\xff\\x9c\\xbfd\\x99\\xe4\\x01$\\x87\\x92\\xbf\\x18\\xfa\\x11\\x94\\x06\\xf9\\x81?<:\\x97v\\x03;\\xa2?\\n\\\\\\xe2\\x97\\x84U\\x93?\\x9a\\xdb_/\\xc6\\xd8\\x9b\\xbfn\\x90\\xa1\\xb2\\xa3\\xff\\xa0\\xbf5\\x96\\xe0\\xeeY\\xce\\xa6?hWi\\xb9@!U?\\xd0qN*\\xc0\\xfa\\x89?\\x1d\\x8a\\x0e\\xcd\\xf3T\\xbc?\\xe7S^I\\x17n\\x84\\xbf\\xfa]\\xbd\\xe4\\xea\\x1e\\x8b\\xbf\\xd5,G2\\r\\xa0\\x86?\\x08\\xb6xk\\x88^d? \\xd6\\xff\\x998\\r\\x8a?L)\\xae\\x91\\xf1\\xd4d\\xbf\\xacA\\x85\\x0e\\x1d\\x8f}?,\\xb7\\x9bAB\\xbf\\x82\\xbf\\xd6\\x0b\\xab\\x9d\\x8c\\x17\\x91\\xbf\\xe4\\xd7\\x9d\\x9b\\\\}H\\xbf?\\xb4EJB\\xeeq?4\\xe7\"M\\xad\\xbb\\x8d\\xbf\\x8a\\x91\\xadH|\\x99L?\\xc1\\xcb\\x93\\x8c\\xef\\xe7]?PE\\x90\\xba\\x18X\\x8e?\\xe4u\\xf2-\\xff\\xb9\\\\?$(\\x8e\\xc4\\xbcEa\\xbf\\xe0\\xda\\x19\\xd9\\xedfr?\\xc0\\x8e\\xadP\\x93q3?\\x98\\x19\\xbfYN1Q?\\xe8\\xb7w\\x1e\\x92\\xech?0\\rO\\x0c\\xbf\\xbe\\\\\\xbf\\x00\\xb28\\xd2\\x96A\\xd4>\\xd3c\\xe5\\xfc\\xa6\\xb4q\\xbf@>|waF.\\xbf:\\x8dP\\xe9\\xdb2h\\xbf\\x00`\\x9e\\xbf\\x83\\x15\\xbb>p\\x14\\xf0\\x98L2Y?@\\x89\\x9d\\xccN\\xd23\\xbfo\\xa8z\\xb7D\\x1dT?\\xd0\\x9c\\xab-1(a?\\xc0\\rk\\x95\\xd5\\x9dh?liF\\xf6/A3\\xbf\\xcc\\xa6\\x12e\\x84\\x07X?\\xba\\xbc\\xe9\\x94\\xe1Fd?\\x88I\\\\\\xc8\\xbc\\xbbg\\xbft\\xde\\xf8\\x96\\xc9;d\\xbf8e\\xd8\\x86v\\xf1Q?\\xce\\xae\\x10\\xce\\x83<s\\xbf@DN\\xf9a\\xc5u\\xbf\\x18\\xd5MN\\x8d\\n\\x7f\\xbf\\x1c\\xd5\\xbf\\x99t\\xf6s\\xbf\\xb8dn\\x07FwP\\xbf8p\\xbd\\x90-\\xf8\\x85\\xbf\\xc0:d\\x908\\xbau? \\x12\\x00\\xe0>%x\\xbfO\\x7f)\\xa5\\x18\\xb0\\x80\\xbf\\xba\\xc1d\\xa9\\x97\\xc5\\x81?p\\xb2\\xc7\\x14\\xe2\\xb9~?\\xb0$\\xc1\\x07\\x1b\\x9cp?B\\xcc\\x8c\\xd4\\x006\\x8a\\xbf\\x8a\\xc4\\x81\\xbdn\\x96q?\\xb4\\x1d\\x8b\\xc5\\x9e=\\x89?(n\\x8c$\\x0ekj?\\x80\\xdfZ]\\xe1Sj?@\\x13\\xe6\\\\\\x10%\\x1d\\xbfP^5HW\\rl?`Vf\\xf6\\xce>~\\xbf\\x0e\\x80\\xfe\\t\\x90C\\x82?6\\xd5\\x92\\x96\\x9f\\xc4\\x84?\\x18\\x1e\\x9e\\xce\\xdb\\xaf\\x96\\xbfPw\\x04\\xa6m\\xf1]?.es\\xb2\\x11\\x1f\\x87?\\x88o\\xf9\\xbau\\xda\\xa0?\\x90\\x19\\x87A\\xfcqb?\\xa0\\xf0\\xb9fAb!?\\xc8\\x7f\\xb85\\x1c\\xd1{\\xbfL\\x1c\\x95[\\xd2\\xaa\\x90?\\xe6S^I\\x17n\\x84\\xbfb\\x11\\xd7\\x8d\\x05\\x96\\x8e?\\xda\\xe1\\xf4>c.\\x8a\\xbfb-\\x8a\\xf5a5d\\xbf(R\\xb9\\x83\\x14rm\\xbf\\x1c\\xc0}\\xd9\\xedq{\\xbf\\x08D\\xbc/\\xb3]R?\\xc0t\\xd03K\\x98.\\xbf\\x80?\\xab\\x01s\\x95q?\\xd0P\\x06\\x83\\xd1\\xae\\xa4?i\\ng\\xe7\\xd8(v?hW\\x91\\xa3\\x99\\xf3S\\xbf0\\xa6=\\x9b\"\\xf1\\x9a?\\xc8h\\xff\\x99T\\xd3d?+\\xcb\\x97\\xb8`\\xc5q?\\x80L;\\xb50M\\x99\\xbf\\xda,\\xf9<ziz\\xbf\\x00.r\\xb3Y\\xc5K?\\x94{\\x86\\xd3\\x8e\\x97\\x8a\\xbf\\x80wj\\xc5^i6\\xbfXD\\xaf\\xc9\\xe5\\xedZ\\xbfp\\xa3\\x00\\x94~1n\\xbf#\\xe8VN\\x1bw\\x89?\\xe7c03.\\xccp?\\x10[/\\x17\\xd91V?\\xa0\\xb5\\x1cg\\xb9CK\\xbf\\xee\\t6\\\\\\xbc\\xefz\\xbf\\xa2\\x1b\\x07\\x86\\xeb\\\\}?@8\\x85&\\x93\\x04z?\\x16`\\xd9\\xe3\\xae\\xb0\\x89\\xbf\\xf4CvgH\"M\\xbf\\x80\\x84\\xd7\\xd7>\\xbdm\\xbf\\xe0h\\xfa0r.s?\\x144\\x0b{L\\xcaq?\\xb4\\xef@2G\\x83t\\xbf\\xbd\\xd6\\x83\\xc1\\xbe\\xcb\\x80\\xbf\\xd0 \\x99N\\xfc\\xe9t?\\xe4tR\\'\\x8d\\x08y\\xbf$p\\x01\\xc5\\x12\\x94\\x87?\\x00o(@EX\\x03\\xbfPA#\\x00\\xb5|\\x93?(\\x818\\xf29\\xb3\\x82\\xbf\\xf0\\x08V\\x06\\xc4\\xf3f?\\xf2-v\\x99~\\xc9\\x83?\\xd8\\x92\\xe8\\x15\\xca\\xf0}?\\x94VsW\\x8f\\xcf\\x88\\xbf\\x00&\\xf5\\xb8G\\xbaB?*\\xe5\\xb1\\xb6\\xa6\\xe9\\x84?-\\x18G\\xd0W\\x94\\x90\\xbf\\xe0\\xe1\\x14\\xb4\\x8a\\x1b\\x87\\xbf$\\xa1\\x83\\x18\\x0f\\xdd\\x94\\xbf\\x89ad\\xfc\\x92W\\x94?\\x8a]\\xe5\\x9e6\\x86u?\\xb0\\x8a\\x0c\\x9b\\xb6K\\x92\\xbf\\xd8\\xa3\\xc3h<#\\x82\\xbf\\xa0\\xa1P1\\x02\\x93\\x83\\xbfa\\xa6\\xb4\\xc9\\xe0R\\x8a?\\x80\\x0f\\x92h%\\xf5y?\\x00F\\x01g\\x15\\xdea?\\x02\\xc2\\xb4\\x81/\\x95\\x94\\xbf[j\\xe3\\xb3+z\\xa0\\xbf\\x0c\\x99\\x9f\\xe1\\x02\\xce\\xb2?|Q\\x15Ssz\\x98\\xbf\\xa0aQC|L}\\xbf\\xde5\\x11\\xbb\\x1c9\\xb2\\xbf\\xbf\\xd8\\xbe\\xdauh\\xaa?\\xb2ob!)s\\x95?x\\x08\\xde\\xce=\\xed\\x86?Qe\\xda\\x1c\\x80\\xf8\\xa3\\xbf\\xfa]\\xbd\\xe4\\xea\\x1e\\x8b\\xbf\\xda\\xe1\\xf4>c.\\x8a\\xbf\\xbc\\x91\\xdc\\xd3h\\xa0\\xb3?\\xa0\\x173OJ\\xa2@?j\\xce\\x02\\x82\\xd7\\xbf\\x82?\\xf8O\\xc4\\x91Gq\\x90?l\\xe2a\\xc4T\\x1e\\x82?0^\\xda\\x8e\\n\\xfdi\\xbf\\xba\\xf4^\\x0bu\\xaa\\x93\\xbf`K0\\x93L\\xe3o?v\\xc0,j\\x14 |\\xbf9/\\xc9\\x02\\x910m\\xbf\\x80\\xdb\\xa1r#\\xf6\\x8e?\\x8c\\xd9i7\\xba\\xf4z\\xbf7oB\\xaf\\x86\\x81t\\xbf\\x10\\x9e\\\\\\xde\\xe6\\xeb\\x8f\\xbf\\x15\\xa0s\\xfd\\x189r?\\x90\\xcd?\\xb4\\xa2\\xdbQ?x\\x0f\\xc8\\x9c\\x01\\xa0R\\xbfP\\xe8{\\x90q\\xcb\\x86\\xbf>\\x82|!\\x12~H\\xbf\\x80\\x83\\xe6BTQ,\\xbf\\xbf\\xe3\\xe0}qgs\\xbfd\\xd8\\xd98\\xaf\\xedY\\xbf\\xdc\\xfe\\xc2\\nH\\xc3W\\xbf\\xfc\\xe9u\\xf7\\xeb\\ts?b:\\x7fg\\xca\\x15j\\xbf\\x1d\\xef\\xb6@\\x00\\x7fy?\\xf8\\tF\\xab\\x8bfu\\xbf\\x88y\\x83t\\xce\\xe9T\\xbf\\x9d@&\\x14\\x11y\\x91?`bi\\x9b`\\xd2L\\xbf\\xb0\\xb9\\xda\\xbf\\xefR_\\xbf>\\xb8\\x01\\\\\\xd3\\xde\\\\\\xbf\\xac\\xc1/\\xfe\\x9d\\x8dq?,\\x8d\\xee\\xe8z\\x86e\\xbf\\xb2D\\xf6:\\x11\\x96e\\xbf\\x9c\\x87\\xd0\\x18R\\x00Y\\xbf,/o\\xb9\\xa2\\x91a?\\xde\\xd8\\xfdp\\x8b\\xe5\\x7f\\xbf\\xd0\\x0e\\xb8\\x12\\x86\\xc9s\\xbfX\\xa3l\\xeb\\xc5p|?\\xe0\\x8d\\xa7\\xc5Wc5\\xbf\\xad\\xed\\x80\\xe9\\xe2*\\x89\\xbf\\xe8^-\\x99\\x17Yv?d0\\x81\\xc3\\xf3\\xe3f\\xbf0adN\\x8c\\xff\\x83?\\xdd8K\\x14jfs\\xbf\\x0c\\x9c\\xa6\\x9d*\\nd\\xbf\\xc0\\x04\\xd1\\x9b\\xe6sD?\\xf0\\x1d\\xbfv\\xe9Z^\\xbf\\xde\\xa7\\x1d\\x1f\\xe7\\x18\\x80?`s\\x93\\xc3\\x8f3*\\xbfp+\\xc4\\x89Z\\x83^\\xbf\\x00?hr\\xec\\xdeD?\\x80\\x84\\xa4\\xcd\\x99 x\\xbf\\xd1\\x18\\xe0\\xc2\\xa0=\\x85\\xbf\\x00\\xcc\\xc6p,A!?\\r\\xe3,1V\\x18\\x95?\\x91\\x87\\xeb\\x16\\xe9\\xc7e\\xbf\\xb4}-]\\xe1\\xe4\\x91\\xbf\\x00\\x10Ka\\xca\\x7f(?\\xe80\\xdd\\x8eB\\ro?\\x14\\\\\\x0e\\xfb\\x88.}?\\xdc\\x1b\\x13\\xe6\\x0c\\xc5\\x8f\\xbfP\\x81EqQ\\xf7{?F\\x8f\\xd7\\x81[\\xcf\\x93\\xbf\\xb0gk\\xf8\\xd7\\xa9P\\xbf\\xe0\\xe5U&\\x92\\xd8V?\\xd5,G2\\r\\xa0\\x86?b-\\x8a\\xf5a5d\\xbf\\xa0\\x173OJ\\xa2@?\\xdac{H\\xeb+\\x94?\\xa0p#F\\x8bXi?\\x8a58[%uv?|\\x14\\xaeL\\x08\\x8c\\x84?\\xc03\\x1cT<q#\\xbf\\xe5\\xc9@\\xed\\x92\\x9b\\x83\\xbf\\x04\\x9d\\x9f\\xcb\\xa1\"\\x91?\\x974\\xc5v\\xf6\\x19m\\xbf\\x14\\xac\\xf4\\x11W\\xa0t\\xbf\\x14%\\xdd\\xc2] \\x96?v\\x05E!J\\xdeg\\xbf\\xba\\xe4T\\x8dr\\xfeb\\xbf\\xe8k\\xac\\xf6\\xd0*\\x8d\\xbf\\xd0aN{?~D?P&\\xa2\\xc1\\x07P5\\xbf\\xb0\\t\\xe4\\x92\\xc1%q\\xbfL\\xb4\\xc2\\xdd\\xfc\\xf8\\x81\\xbf\\x88\\xa8XS\\xc0gq\\xbf\\xc8\\xc7=\\n\\x1c\\xbfk\\xbf\\xc8\\xd4V\\xb6\\x80\\x02n\\xbfXD\\xbb\\x0e\\x0e{V?\\xec\\x02\\x18\\xbf@\\x82^\\xbfx!\\xbc\\xfcX\\xac[?\\x82zDU\\xa3\\xe7s?\\xc5\\xe8\\xb7|\\x06Dp\\xbf\\n\\xaf\\x9d\\xc8\\x05\\x9e\\x82\\xbfh\\xffvK\\xbf%i?s\\\\BQ\\xd1=U\\xbf\\xc0\\x13B\\\\Q\\x04J\\xbf\\xe0\\xe4\\x10\\xc1a.^\\xbf\\xb2!\\xfd\\xde\\xd4\\xc9[?P\\xbfuRz\\xc2c\\xbf8\\xdf\\xd2\\x8aJzX\\xbf2\\xc867,\\x96}?!\\x91\\xda\\x14\\x12lz?~0\\x91\\x8f1j\\x80\\xbf\\t\\x9b\\xe3j\\xa0Rw?\\xc0yp\\xf9\\xb5kY?p\\x03\\x0c#\\x850\\x8a?D\\xa9E\\x12\\xf9Z\\x7f?\\xa5\\xe1\\x84\\xedRX\\x81?\\x9c&k\\xa1\\xf1o\\x8d?\\x1401\\xb7\\xa7q\\x81\\xbf\\x08i-s\\\\\\xe8\\x84?\\xd4\\xbee\\x049\\t\\x95?\\x91!\"\\xc8v%\\x88\\xbf\\x10T\\xae\\xfe\\xd6\\xeew\\xbf\\xe8\\xdc\\xdc\\x17\\xcf\\xd3}\\xbf^\\xfc\\x9f\\xbd\\x830\\x86?G\\x87\\x02:\\xb6V\\x8e\\xbf>\\x80\\x1d\\x8c\\xf2\\x90\\x90\\xbf\\xe8\\xb6\\xf1\\xc0\\xee\\xa4}\\xbf\\xc0*\\xb0\\xb6\\x97XV?\\xb1V\\x0c\\x9ds\\xc0\\x91?\\x00\\xb00\\x19\\x08\\x06k?\\xe0\\xf2\\x03A^I}?\\xe4\\xdfJ\\xb8\\xd4\\t\\x80\\xbf@nT\\xfa\\x8c-}\\xbf\\xec)Q\\xa6\\x18-\\x97?\\xa0\\x8d\\xfb\\xfa\\xcayT\\xbf\\xe0X\\xf4\\x83_fa\\xbfxJ\\x16*\\x82\\xb5\\x8c\\xbf\\xd0\\xe7\\x18(\\x82\\x9e\\x80\\xbf\\x01\\xb8\\xc5\\xaedO\\x83?\\xb0\\xd7m\\xe2n\\xf2t\\xbf\\x02\\xa4\\xb1\\x16q\\x93\\x91\\xbf\\x08\\xb6xk\\x88^d? R\\xb9\\x83\\x14rm\\xbfj\\xce\\x02\\x82\\xd7\\xbf\\x82?\\xa0p#F\\x8bXi?\\xec\\xe8\\xe2/\\xab;\\x8b?\\x16\\xa7\\xa8m2\\xfe\\x8b?\\x8f\\xc1\\x8f\\xf0\\xcd\\xac\\x80?\\xbc\\x80&\\x81\\xfe\\xe0}\\xbf$\\xc7Q\\xb0wY\\x8a\\xbf\\xd4\\xc1\\x18A\\x98\\x8f\\x92?(\\xfd\\x9d}\\x1a\\xc7k\\xbf\\x16\\xbc\\x90\\xc8\\xe6\\xaaw\\xbf@\\xec\\xb5\\xa3e\\x18\\x96?[\\xee\\xa3\\x0c\\x8e\"c\\xbf@\\xce\\xddY\\x05\\xf9c\\xbf\\xb8\\x88\\xaeW\\x85\\x01\\x91\\xbf\\xa0\\x1d\\n0\\x0e\\x86O\\xbfpkT\\xd4}\\xb0O?\\xe4\\xa3\\xceZG4\\x84\\xbf~\\x84\\xd3\\xf6\\xb2\\x0b|\\xbf\\xe9\\xfe8\\x9b\\x95Or\\xbf\\xe8\\\\\\xcf\\x90\\x04\\x11~\\xbf\\x10\\x86\\x96\\x81\\xed\\x15S\\xbf\\xbd\\xe2\\r5\\x06\\xb3S?xN\\xbcv1\\x9bX?x\\x17\\xa5\\xa5\\xff\\xa9c?\\x18\\xd8i\\xef\\xa2\\x03n?\\xb8J\\x86\\xa4\\x1b\\xc0b\\xbf\\\\\\xf1`9*\\xb2\\x84\\xbf\\x00\\x98\\xeb\\xf3\\x9f\\x1dI\\xbf4\\xbf2FbpB?`}\\xc8g\\xb8\\xa7s\\xbf\\x80\\x9am-U\\xa63?\\x82\\xe2$\\x0f\\xf4xX?\\x18\\x1d\\xb7\\x8d\\xf6\\x84g\\xbfP\\xe8\\xdas\\x03\\xb5j\\xbf6\\xdf\\x8c6\\x08\\x9c\\x83?\\x9c\\x1c\\x18\\x83!\\x84\\x80?\\xe8\\xaf(\\r\\xf5\\x9fj\\xbf\\xfa>\\xf0\\xfd;\\x8ct?l\\x07\\xc5\\x0b\\xd2\\x91\\x89?0\\xf6\\xea?\\xc9\\xfa\\x81?\\xf8\\'mDU\\xf2a\\xbf\\xd0\\xd2\\xa7\\x18\\xe7\\x05\\x88?\\x1e\\xb4\\xa9A\\x02\\xff\\x92?\\x08\\xff}\\xd14\\xee\\x89\\xbfp/Fv\\'\\x0e\\x84?\\x95Z\\xcc$eN\\x96?\\xb7\\x04A\\xff\\x07\\xef\\x90\\xbf@(\\x96uR)t\\xbf\\x80\\t#-\\x1c5|\\xbf\\xa2\\xd39H\\x9e\\xdf\\x8c?\\x1c\\xf9\\x1a;\\x94G\\x95\\xbf\\x18\\x03\\x0f\\xcf\\x0e;\\x97\\xbf0\\x87n\\xc3Z\\x7f\\x7f\\xbf\\x00\\x02\\xb4\\xda{&K?\\xdf\\xa0\\x0b\\x97\\xed\\x96\\x93?`\\x08\\xf0\\x08\\xd6.q?`\\xa4\\xae\\x8e\\xb7p\\x84?\\xce\\xebq\\x87\\xe8\\x89\\x89\\xbfX\\x9b\\xa0\\x85\\x84P\\x83\\xbf\\xb0\\xf0\\xde\\xa59\\xe2\\xa8?\\xccXV\\x8a\\xbb\\xaa\\x82\\xbfp\\xbbv\\xa92\\xads\\xbf\\x08m`\\xbb6\\x15\\xa5\\xbf\\xc0\\xf34\\xac\\'nb??\\xa0\\x04\\xdcs\\xf2\\x92?\\xe0kS\\xd5Zhr\\xbf\\x0c\\xc1\\xd4\\xfb\\xa6;\\x98\\xbf \\xd6\\xff\\x998\\r\\x8a?\\x1c\\xc0}\\xd9\\xedq{\\xbf\\xf8O\\xc4\\x91Gq\\x90?\\x8a58[%uv?\\x16\\xa7\\xa8m2\\xfe\\x8b?\\xc4\\x1c\\x11\\x86F\\xca\\x99?\\\\\\xa9\\xd9\\xd9\\x08\\x9e|?\\x98\\rW%\\x1b\\xe1\\x80\\xbf\\xe6\\x7f\\x81Y{l\\x93\\xbf\\x10\\xc0S!\\x16\\x8f\\x96?\\xbdAe\\'\\xb6)w\\xbf`\\x9c\\x1aZ\\xf6fV\\xbfj>\\xae\\x84U\\xad\\xa1?\\xee5\\\\\\x8a+\\xcew\\xbf`\\xf8\\x11o\\x17\\xc4e?.\\xca\\xaf\\xc3\\xf6&\\x9a\\xbf\\xa6,e\\x1c\\xb7\\xe4p?\\xfeJ\\xd8\\x0b\\x1b`t\\xbf\\xfcNT\\xb5\\x92Ly?\\x17go\\x03R\\x11\\x91\\xbf\\x7f\\x7fv\\x84\\xb4\\xa8d\\xbf\\x18o\\x10\\x18\\x00\\xb0f?>\\x9a\\xfe*\\xdb\\x9dq\\xbf\\xa2O\\xcf/\\r0T?\\x10\\xac\\x98\\xcf=bI?\\xa0\\xc1\\xc8\\x8a\\x91\\xf5o?\\xb0\\x83\\x04P\\x1e\\x88n\\xbf.\\xa2w\\x96\\x0f\\xa3e\\xbf\\x08\\x1b\\xf96$\\xa4}\\xbf\\x00\\x93\\xcbt#H(\\xbf(\\x97\\xc9\\x15*\\x86t?@\\r\\x85\\x97\\xd3e@\\xbf\\xd0j\\xcd7\\xd4\\xe4t\\xbff%\\x8eS\\x95\\xf4b\\xbf\\xf0.\\xd2\\xd0\\x05\\xc7@?\\xa5l\\xee\\xf6\\xfd\\xe4v\\xbf\\xd0\\x08\\xbc\\xde@\\x89O\\xbf@\\x92r\\x1b]\\xb9W?\\xc04\\\\j\\x9a\\xc5C\\xbf\\xfd\\xb8\\x8c\\x03\\xca_s\\xbf\\xb0\\x90\\x92\\xf7\\xd3\\x0bl\\xbf\\x18J\\xdc/\\x1aG\\x8b?@\\xa5\\x13\\xca,]\\x84?\\xb4\\x97?k9{`?\\xb2\\x86\\x9c\\xe8\\xd6\\xca\\x89?`\\x16\\x11R\\xe0\\x90{\\xbf\\xe0\\x10O\\xb5\\x07\\xda\\x85?Z\\xda\\xd65=\\x9et?\\xe2f\\x81\\x15\\x05\\x9a|\\xbf\\x00}\\xee\\x1a\\x13FZ\\xbf(\\xb5fT\\xbc\\xd1z\\xbf\\x96g\\xf1\\x1cq\\xbf\\x94?\\xec\\xf9<HQzb\\xbf@\\x0e\\xb2\\x0c\\xady\\x86\\xbf\\x1e\\x9f\\x0c5\\xd1Z\\x87\\xbf\\xb0C\\xa8\\xbf\\xc9\\\\\\x86\\xbf\\x0f\\x907\\x03\\xb2\\x1aw?\\x90?\\x0f\\x05i)k?\\xe0\\xbc\\xb0\\x8e\\xca\\x10\\x97?h\\xa6 \\xb9\\x87{F\\xbf\\x08\\x8e\\xac\\xb0\\x08\\x1d\\x95\\xbf\\xd0\\xab\\x81\\x0e\\x9a\\xa5t?\\x1a2~\\xd0\\rN\\x91?@\\xcb\\x0f\\xac\\n\\x93\\x87?\\x00z\\xf1-\\x8eu#\\xbf\\xf0\\r4\\xd4H\\x9ea\\xbfl\\xca\\xe9+\\xee\\x8f~?\\xc0?\\xb6\\x8a\\x9aIE\\xbfp$\\x86\\xc53Z`\\xbfL)\\xae\\x91\\xf1\\xd4d\\xbf\\x08D\\xbc/\\xb3]R?l\\xe2a\\xc4T\\x1e\\x82?|\\x14\\xaeL\\x08\\x8c\\x84?\\x8f\\xc1\\x8f\\xf0\\xcd\\xac\\x80?T\\xa9\\xd9\\xd9\\x08\\x9e|?\\xec\\xba\\xe4\\x15\\x8at\\x95?\\xfc\\x89\\xefw(\\xfac\\xbf\\xf2\\x87\\\\2\\x88\\xb0\\x88\\xbf\\xb0H\\x1e\\x9ezhw\\xbfp\\x04\\x12\\xc0C\\x07[?\\x98\\x14r\\x13P\\x8ej?\\xc0\\xc1\\xca\\x03\\x1f\\xb2\\x7f\\xbf\\x9e\\x94\\xce\\x8a\\x0e\\xf4X?z\\xf8pk\\xe0\\xbfe?\\xc0\\xb7/\\x8cu\\x86r?\\x10\\x18\\x94\\n\\xc5\\xcc0\\xbf\\xe0\\x12\\x19\\xb8<\\xe4-\\xbfH\\x1e\\xce\\xbby\\xa3g?|\\x02\\xcc\\x82u`e?+\\xb2O\\x0c\\x95\\x85]?P5s*\\xaa\\xfec?\\xa8\\x84{)\\x84\\xa3_?\\x80B\\xc2\\xb1cDH\\xbf\\xac\\x0c\\xc9\\xc1\\xeahb? \\xd0\\xdb\\xb2\\x8d~0?xe\\xcd/Z\\xf5z\\xbfD\\xaeQ\"\\xe3\\xc5U\\xbf\\\\Qe9W\\x06u?`\\x8f\\xaa\\xda\\xdb]Q\\xbf\\xe2%\\x1d\\xae\\xeb]`\\xbf\\x80\\x07\\x19%\\x93\\xc2X?\\xa0\\xc6\\xea\\xdc\\x81\\x91h\\xbf\\xf3\\'`\\x15\\x82\\xf1a\\xbf\\xfc8\\x13S\\xc1\\xc6`?l\\x9e\\x9a\\x0fm\\x81a\\xbf\\xdc\\x05\\xae\\x9c\\xc0\\x99g\\xbf\\xc0.\\x98\\t;Oq\\xbfpkV\\xa7z\\x14s?\\xcbM\\x9b\\x90\\xd0\\xebe\\xbf\\xf0\\x9e\\xa7R\\x9b\\xbfg\\xbf\\xc0\\xef\\xb0\\xd2\\xda8b\\xbf\\x90\\xf7*\\x89Q\\xb2P\\xbf\\xf57\\xb4\\xf63\\x90\\x81\\xbf\\xcc\\x10[\\x9a\\x9b+w\\xbf\\xb0\\xf7\\x8f\\xef\\xf8\\x0bg? (\\x01\\x83\\xae\\x01i\\xbf\\x08\\xb9\\xe0-\\xb9\\x90\\x90\\xbfx\\x13\\xe5W\\xcc,s?\\x00\\x00H\\xf6\\xf3\\xf3\\xd4\\xbe \\x14\\x1a\\x12WmD?\\xf8 \\xa2\\xf4\\xd2\\xcbX\\xbf.\\x97\\xa5\\n\\x0b\\x86\\x87?\\xa0\\x16\\xf2k\\xa4\\xcf{?0\\xc6>\\xd4\\'\\xaek?\\xa0\\xc9_\\xa1\\x99Am\\xbf\\x9d\\x0c\\xb1Qb\\xe5\\x8d\\xbfP\\x013\\x0b`\\x12u\\xbf\\x00Ti<,+\\x10\\xbf\\xa4\\x0e0\\xcb\\xd1\\xf9J?\\x80\\x0c/\\xae\\xa5j@?\\x08\\x0b\\xd3\\xd2]e\\x94\\xbf\\x84\\xf6\\xd66\\x9b\\xd0\\x8c?\\x10\\x84mz\\x12\\x0fs?\\xf0\\xac\\x9fN\\x0c\\xe6w?\\xd0G\\xb4\\xe56<X?\\x82]\\x00\\t\\xaf\\x16g?\\xb6\\xab\\xc9\\xddKey?HN3J\\xfc\\x15\\x90?\\xacA\\x85\\x0e\\x1d\\x8f}?\\xc0t\\xd03K\\x98.\\xbf0^\\xda\\x8e\\n\\xfdi\\xbf\\xc03\\x1cT<q#\\xbf\\xbc\\x80&\\x81\\xfe\\xe0}\\xbf\\x98\\rW%\\x1b\\xe1\\x80\\xbf\\xfc\\x89\\xefw(\\xfac\\xbf\\x80H\\xa7\\x942\\xb2\\x81?H\\xcd\\x0b\\xddz<{?P$\\x1eA\\xe1Z\\x88\\xbf\\x16\\x8d~\\xee\\x9b#x?\\x8a\\xf9\\xa4)y\\xadp?\\xc4\\x14:\\x07\\xf9%\\x92\\xbf\\xfdQ\\x8c\\x9e7kp?\\xa6\\xff \\xd8\\x99\\xcah?\\x10\\xec\\xd0e\\x87+\\x90?\\xc0\\xc8G3\"\\xfa]\\xbf\\x98`3\\x94$\\xaeP\\xbf\\xbcEb\\xa5\\x15\\xd9\\x86?rf\\x0f\\xc8\\x14\\xa1\\x86?\\x14N\\xa2r\\x11\\xc4m?`\\xe5c\\xa7\\x8e\\xaax?\\xf8m\\xf6\\xba\\xcb,s?\\xb3\\xe5\\t~;\\x88Q\\xbf\\x18\\xab(:\\xadpg?\\xb8x/e1\\x96s\\xbf\\x18\\xdf\\xa6\\x7fzj_?\\xc2\\xce\\x84}\\xf8\\x98c\\xbf\\xf0\\x88\\xd5\\xc1w/}?\\x80\\x0b\\x10@B\\xb5Q?k\\x11\\x1erG\\xa5\\x81\\xbf\\x00T\\xca\\x96\\x92\\x0fL?\\x80\\xc7\\x92,\\xfb\\xb0S?p\\x06`R\\x95X/\\xbf\\x18-\\xd4\\xebi\\xe4V\\xbfz%n%\\xe83p?\\x9c\\x08\\x11\\\\}\\x0c\\x82\\xbf \\tj0\\xb0\\xc1C\\xbf\\xc8\\x0f\\xfb\\x02\\xe4\\x8dg?T\\xdcT\\xb2\\x93\\xdc_\\xbf\\x80(\\xc7J\\xb44J?p\\x9a\\x9e\\x1d\\xbc\\xb8\\x85\\xbf\\xe0O\\x8cw_{i\\xbf\\x80\\xf1\\x01\\x88[\\x0b ?\\x1c\\x14R\\xa8\\xa8\\xd7\\x8b\\xbf\\xb0\\xe8/J~\\x87\\x89?0\\xbd\\xa3\\xe5\\x8a2\\x87\\xbft\\x81h\\x01\\xcaw\\x8c\\xbf*\\x88?\\xcf\\x84z\\x88?@\\x16?\\xf6@R`?RI\\xcd\\x95\\x8a\\xcf\\x88?\\x89`\\xf5|\\xcbS\\x83\\xbf\\x027\\t{\\x82N\\x89?\\x98\\xcd\\x1b\\xfdCi\\x8a?\\xb0\\x03\\tu=\\xe4h?\\x80H-\\xa4\\x91\\x8eL\\xbf\\x00GS\\x0c\\xa5\\xb5\\x88\\xbf\\x80W\\x8d\\x82\\xa6\\x88H\\xbf\\xf0}7\\xf4:(\\x8f\\xbfvh6>\\xe8\\xaa\\x90?\\x16\\xd6G[\\xa6N\\x92?\\xd8T\\xdbl\\xefJ\\xa1\\xbf\\xe0\\xbb\\xc3Or\\x0bc?\\x00\\x06>%\\xdd\\x92<?L\\xc3\\xf7\\x14\\x98\\xff\\xa3?|\\x08\\xfb\\xb4\\x13\\x14\\x86\\xbf\\xa1\\xd6ZG\\xe5\\x02\\x8a\\xbfh\\xd3Uf\\xcd\\xf7m?\\x18\\x11\\xe7Gf(\\x8b?,\\xb7\\x9bAB\\xbf\\x82\\xbf\\x84?\\xab\\x01s\\x95q?\\xba\\xf4^\\x0bu\\xaa\\x93\\xbf\\xe5\\xc9@\\xed\\x92\\x9b\\x83\\xbf$\\xc7Q\\xb0wY\\x8a\\xbf\\xe2\\x7f\\x81Y{l\\x93\\xbf\\xf2\\x87\\\\2\\x88\\xb0\\x88\\xbfH\\xcd\\x0b\\xddz<{?^O:\\x88\\x03\\x81\\x98?\\x81\\xe3\\x1e\\xe9G\\xa1\\xa3?Z#c\\xf5\\xff\\xc4u?\\x14\\x08`0C\\xd8|\\xbfBE\\x8a\\xad\\x0e\\x95\\x9f?\\xda\\x89m\\xa4\\xcasD\\xbf\\x1c\\xe4\\xc2j\\xf5\\xd8L?\\xd2\\xc6\\xaap\\xe9\\xe5\\x9f\\xbf\\xd0\\xd8mW\\x1b\\xbeM\\xbfA\\x1b\\x1e\\xcbe d?\\x14\\xdc\\xe1Ni\\x81\\x94\\xbf\\x905`\\xf7\\x92\\x8fc\\xbf\\xaf\\x1fLKR\\xa9b?h\\xf6\\xd8\\xd1\\xaaH\\x8e\\xbf\\xce\\x93\\xf8b\\xe6\\xcf\\x80?dZ\\x88\\xd9B\\\\T\\xbf \\x7f\\x9b\\xd4\\xb9\\xbe6\\xbfT\\x05d\\xa5\\xc3\\x0bE?I\\x033!t\\xbdi?\\xfd7\\x1d6\\xc7\\xafP\\xbf`\\x16\\x83\\xb2\\x88ar?|M\\xfetK\\t]\\xbf\\x80yG\\x1d\\xa8\\xbb\\x10?0D\\xed]\\x94\\x14H?\\xf0\\x0bS\\x1d\\x07bq?|\\xd5\\xa1\\x9dL\\x01V\\xbfr\\x04\\x7f\\xa2z\\x86@?\\xc4\\xda\\x12\\xaf])B\\xbf\\xb0zT\\x13\\x1c_1\\xbf0\\xbf\\x90\\xd6X0w\\xbf\\xd2\\xaaG\\x1dj\\xf4`?\\x8b\\xdeAT\\x1a\\xdbQ\\xbfY\\x08Z\\xdbK\\x9cj?\\xee\\xd8S\\x08\\x9c\\xa6y\\xbf\\xae\\xde\\xfa3\\xae({\\xbf\\xe4!I\\x82B\\xf2j\\xbf\\x89\\xab-Yz\\r\\x81?@:vV\\'\\xa9\\x1d?8T\\x93[\\x02\\xc9\\x91?\\x08p\\x87.\\x94\\xc8\\x7f\\xbf\"MN\\x8e\\xc2\\xf4j\\xbf\\xdcW\\xbb\\x0f0[\\x88\\xbf=\\xfafwB\\xdf\\x84?F\\x97\\xf4\\xc5\\x88kq?tha\\xb13\\x11`\\xbf9\\xa5V\\x08\\xa0%t\\xbf\\xe8K\\x90r\\x12\\xc7\\x83?\\t\\x18\\xe6\\xc3\\x89\\x9e\\x92?x\\xaa\\xaff\\xc3\\x93m\\xbf\\xd8L\\xe3/\\xde}d?lx\\xe2\\xdd(\\xf4t\\xbf\\xb8\\xc8\\x94G%\\xb8z\\xbf\\x87=\\xa4\\x805\\x19\\x81?\\xc0#[\\x96X\\xe4^?\\x00\\x84B\\xb3!\\xe5?\\xbf\\xf2z,\\xe4\\xc6\\xf6Z? \\xf4\\xc6\\xdez\\xbc~\\xbf\\x80D\\xc6\\x9c*\\xefS?\\x1c\\xf9\\x8e\\xa7\\xe85\\x94?$P\\xe3\\xf1\\xa0\\x11d\\xbf\\xec\\x01!%\\xbe\\xb0f\\xbf\\xc4\\r`\\x16i\\x8e\\x92?\\x0c\\xcb\\x08Ck\\x87b\\xbf.\\xef\\x9f6\\x82.e?\\tZ\\x1bN\\xe1g\\x85\\xbfh#\\x8e{\\x93vW\\xbf8z\\xc7\\xd06\\xa3\\x81\\xbf\\xbd\\x07e\\x04\\xfc\\xb2h\\xbf`\\x9e\\xaf\\x86V\\xb8!?\\xbc/K\\x17\\xd0\\\\j?Z#c\\xf5\\xff\\xc4u?1[C\\xaa5\\x8cz?h\\x8bk\\xc5I\\xa1R?T\\xaf\\xad\\xab|\\xfeA?h8d\\xfe\\xb6\\xfca?(e\\x19s\\xce\\x047\\xbf$M)\\xe5\\x9c\\x91[\\xbf\\x0e\\x01\\xe6^A\\x12c\\xbfn\\xf6\\x0e)\\x96jC?\\xda\\x8c\\xd0!x\\xb9n\\xbffk\\xa3ZrGu?pS\\x08FW\\xa49?\\x04Q\\xc0\\x9b\\x8bN[\\xbf\\x81H\\xe5\\t\\x9f\\x1bo?\\xe804LgoG\\xbf\\x0c\\xdc\\xc3\\xce\\xbf{0?4\\xa4\\x13\\x12\\x8c\\xd3`\\xbf\\xd8\\x15E_\\xe3\\x17E?\\xb6_\\xfc\\xd5\\x87rA\\xbf\\xfa\\xc9\\xdf\\x188D`?\\x80\\x89\\x9d\\xec\\xbd\\xf8\\x0b\\xbfv\\xdc\\x90\\x97\\xdd\\x8aY?-\\xf9\\xc9\\x05\\x1e\\x1bq?\\x80\\xe5\\x84\\xa9u<O?\\xcc\\xf4\\x8bvo\\x1fA\\xbf\\xc4\\xe3\\xa7\\xebK\\xc8[\\xbf\\xd0Ho\\xa3\\x1b|\"?\\xc0\\\\\\x7f5\\xcb\\x90,?\\x00B\\xb7\\xb6\\xd80\\xfa>\\x00\\xac\\x07C\\xd2q\\x1a? \\xe7\\xb3\\x96\\x95\\xeaI\\xbf\\n\\xde\\xc4\\x0f\\x16\\x96i\\xbfHp\\x8f\\xd9W\\x08Q?\\xdb\\xd0]\\x00\\xcba]?\\xc8\\x15\\x96B\\xad\\xda&\\xbf\\xe8\\xdaY\\x0e,a3?\\x92\\xa5\\xda\\x1b\\xeb\\xc0Q?pW\\x91\\x82\\x8aPX\\xbf\\x006\\xe7\\xc9\\x1e\\xac\\xf1\\xbeP\\x95B{\\x91\\x01S\\xbf\\xb0!\\x96\\x1ac\\x1cR\\xbf4PQ+\\x0f\\xb3`\\xbf\\xac\\xe4\\x18\\x92\\xcf\\xe9S\\xbf\\xf3\\xc62&\\xf8J`?\\xf2\\x8b\\xf04p\\xc4P\\xbf\\x80r\\x08\\xab\\xd0\\xc4\\x0f?\\x88]\\x91\\xd4\\x9d\\xfbY?\\x80\\x08\\xb5\\xbc\\x98_b\\xbf^\\x01u\\xb8I\\xfbT\\xbfPho\\xe62\\x8aR?pH\\xf6\\xb2(9V?\\xbf\\x91\\xa7\\xcd\\xaa\"s?\\x0c\\x06l\\xd0\\x1em\\x81?\\xe8\\xaa\\x89\\xb4\\xa8\\x11V\\xbf\\nG\\x84\\xdf\\xc6rO\\xbf`\\x18\\xbb\\xeb\\x92]a?p\\xa2>\\xean\\xc9X\\xbfb\\x85\\x8e\\n\\x1c\\xb9\\x89?pWe&s\\x11O\\xbf\\x9e6\\x01\\x94\\xb9(c?\\xeaj\\xd3t\\xd59b\\xbfp\\xa5\\x98W\\x13;<?(=\\xa6\\xfc\\xe1\\xd8h\\xbf\\xc4\\xfb\\xe2\\xc9\\xcc\\x8e{\\xbfCE\\r\\xcb\\xd0\\xb3B?p\\xb4\\xc7\\xdd\\x08cd\\xbf\\x126ut\\xf3\\x89c\\xbf\\xe0\\xf7O\\x84\\x12e+\\xbf\\xec\\xa7\\xe8\\x0c\\xfbTa?\\x14\\x08`0C\\xd8|\\xbfh\\x8bk\\xc5I\\xa1R?o\\xaef \\x82\\x82\\x7f?2=nqy\\x9ex\\xbf0\\x05\\x16*\">2?\\xd0\\xf8\\x89\\x0c\\xc0|D\\xbf\\n\\x15\\x12\\x02\\xea}{?@\\x17\\'\\x00\\xc036\\xbf\\xb5X\\x84\\xea1\\xafd\\xbf\\x10\\x00\\x8d\\x9e\\x0b@d?\\xe6}a7\\x082o?(\\xe9b\\x0bm\\xa5A\\xbf \\xb4\\xc1v\\xa0\\x02E?*\\x02\\xfc\\xd9_Pa\\xbf\\xc8\\xe2]:\\xc0\\x07B?\\x08\\xdc*B\\xcc\\xb8Q?Xk\\xde<Y\\xd0E\\xbf\\x8b\\x1d(\\xd2\\x12W]\\xbf\\xd2S\\xd6\\x7f\\xaf\\xcbM?\\xc0\\x9b\\xc1`\\xfa\\xd8.\\xbf\\xe0\\xacn\\x9e>E2\\xbf\\xa04\\xcd^\\xd1\\xf5\\\\?\\x0c\\xef\\xd1\\xa1V\\xbbe?\\xc8\\xad\\xc6\\xf1\\xe0\\xc5f\\xbf@\\xad\\xb8\\x0f\\x9c\\xf3\\xff>\\xcc6e\\x0c\\xe6\\xc2I\\xbfB\\xfc\\xbf C\\xba/\\xbf\\xa0\\xa0\\xb2d\\xbfDH?`RieJ\\xf0U?\\xe0\\x01<s\\xe7\\x823\\xbf\\x08\\x19\\xf2\\xb4\\xa8nA?=juK\\x81\\x86v\\xbf\\x86\\xe7>\\xae,V|?\\x8b\\t,Y\\\\p{?\\x8e\\x96YlH>^?.\\xc6S\\x16\\xf4|d\\xbf\\xdc\\xa3J\\xf4W\"^?\\x84\\x9f\\xdcW\\x11\\xdap\\xbf\\xa0\\xb2\\xcbj=\\xf5b?\\xfa\\xf7K\\xfe\\xd1\\xabe?P*\"K#\\rX?6!\\x0fy\\x8dKr\\xbf\\xc0$\\x95\\xdd\\x81\\x1c1\\xbf\\x11:J\\xe6G\\x8fl?_A\\xc9H\\x80Jb?/\\xe00W(*a\\xbf(\\x97\\xf1<\\x14\\x17u\\xbf@\\x9f\\xbe\\xdf\\x1c\\x08E?\\x17\\xa2\\x14\\x9c\\xdb\\x95c?\\xc0\\x81\\xe1\\xee\\x00\\x15^?P\\xd3\\x12\\x89\\xee\\xb3v?\\x90\\x00W\\x02C\\x07W\\xbf`\\xa2\\xc2v\\xdc\\xe8r\\xbf\\x00\\x80\\xeeZ\\x9f\\x95\\xdc\\xbe\\xb4l,n<\\xa9q?\\x10\\x96\\xd0\\x0f\\xda\\xad\\x84?\\xe0\\xa9\\xee\\xe8JZN?\\xfd\\xa2\\xe1\\xee0\\xa3x\\xbf\\xd8\\xac\\xf5@l\\x10b\\xbf \\xe2\\xbd\\xcbZ6`?sHd\\x8ap=\\x8c\\xbf@\\xddH\\x81\\xee\\x1af?\\xa0\\x90\\xa8\\xd0:,<?H}\\xda\\x9e@\\xabb?\\xd1\\x19d\\x08\\t\\xc1\\\\?l\\xb8<\\xab\\xb2<i?\\xc8gKa\\xaf\\x11[?(I&9\\'\\xdfP\\xbf\\x18i\\x88`\\xdd\\xb6`\\xbfBE\\x8a\\xad\\x0e\\x95\\x9f?T\\xaf\\xad\\xab|\\xfeA?6=nqy\\x9ex\\xbf\\xef]Q\\xec{\\xe4\\xa2?%5\\xb0MBbu\\xbf\\xd0\\t\\xae\\xe4`rU?\"u\\x93u\\xa1\\xd6\\x9d\\xbfrM\\xa2\\x85J\\x13j?e\\xdb0h\\x08\\xae<?\\x8a\\xd9-\\x89\\x0c{\\x8f\\xbf\\xb0#f\\xa8d\\x82\\x83\\xbf\\x00n\\xf5q\\x1b\\xf9\\\\?\\x1d-\\x0e\\x8aT\\x1c\\x92\\xbf\\x01\\x1b\\xd5w\\xed$b?Hgr\\xd9\\xc2gQ\\xbf\\x80\\xe3\\xf0,\\xa6wA\\xbf\\xe9\\xdf\\xe1\\x9cJ\\x91d?\\xd0#\\xeen(\\xe1O?\\xe6\\x91\\x03{\\x10\\xf70? \\xe2\\x94\\x04\\xdbx6?X\\x08\\x02\\x8d\\x92\\xe5b\\xbf\\x8csz\\x0c\\xe8\\xf7S\\xbf\\x8a4\\xf8}\\xd8\\xcap\\xbf\\xb0(\\xa4`\\x1a\\xe8W?`\\x9e\\xf8\\x02\\xdeNY\\xbfv\\xbb\\xdc\\xbb\\xec\\xe0d?\\x14\\xf2\\xd6\\xe2\\xfc\\xcaP\\xbf\\xc0\\x9f/\\xcdw\\xba)?\\xcc\\xbfi?\\x1e\\x02p\\xbfh-b\\xc6\\xc0\\xc1T?(*`&^J;\\xbf\\x96\\x85$\\xb7\\xbd\\xa6p?l\\x06\\xa5E\\x15$p\\xbf+d\\x87;k=v\\xbf(m\\x0b\\xe4\\xbe\\x9d?\\xbf\\xb7\\xf5\\xe7w\\xb2+\\x80?\\x94\\xf1\\xf6\\xd1\\x0c\\x9bL\\xbf\\xd1\\xe3\\x12{\\xd7x\\x91?\\x9c\\x02:\\xd47\\x8a\\x7f\\xbf\\xa4\\xf7\\xcfM\\xa1r[\\xbfF\\'{\\x02\\xd1\\xf6\\x82\\xbfr\\xd0v7\\x80\\x7f\\x86?X\\xfe\\x9c\\xacQ\\xfar?\\xd8X\\xd1+\\xdc\\x1eW\\xbf\\xe3\\xa3\\xc3\\xa9<Sn\\xbf\\xcdFD/8U|?\\xb4\\xa9(P\\x9eK\\x92?\\x80Yb\\x952\\n\\\\?s\\xdaFcr\\rm?0\\x11\\x00\\x12\\xb0\\xa8x\\xbf\\xe8]1b\\x82\\xe8t\\xbf*\\x96Ud\\xd4\\x06z?\\x10\\xd6^\\xda?\\x0ey? \\xf0\\xaa>^m@?\\xbcq%\\xbb\\x97\\x08v?\\x18\\x9fY\\xcd\\xc8\\x02\\x8a\\xbf(\\x16MZ\\x83\\x1br?\\xcc\\xc90\\t,P\\x95?\\xf8\\x1e\\x84\\x06~\\x0c[\\xbf\\x96\\x0b\\x82K9\\xdau\\xbf\"^vlt9\\x90?\\xe8\\x18\\x0b\\xa6\\xdf\\t]\\xbf\\x9a)\\x1d\\xdf\\xa3<{?[\\xb4\\xeb*P\\x1a\\x81\\xbfLaHF\\x92\\x97M\\xbf,^\\xa3\\xc4\\xa5\\xb4u\\xbf@\\xa5\\xddgQ\\xd7#?`\\x995\\\\\\xf9\\xf6A\\xbf\\xc0\\xc8ui\\xeb\\x8b@?\\xde\\x89m\\xa4\\xcasD\\xbfh8d\\xfe\\xb6\\xfca?0\\x05\\x16*\">2?&5\\xb0MBbu\\xbf\\xba}\\xe6\\x83\\n\\xadr?P\\xd4\\x89\\x13\\x02r9?`i{\\xb4\\xc3\\x98a?\\x9cs\\xc9@,\\xfea\\xbf\\\\\\x0b\\x02\\x8a\\xe8\\x82\\x12?\\x04\\xe7\\xfc\\xf5\\x13&C?C\\xceo9[5s?\\x00\\xc6\\x95\\x02\\x8f1\\x1b\\xbf\\xe0\\xe0\\x9e^hcf?`\\xfa\\xae@\\x876m?\\x00%\\xad\\x87\\xb1M\\xe6\\xbe,\\x1bVG\\x83\\x10O?\\x8c\\xb3\\rI\\xa2\\x94]\\xbf\\xa7\\xaa\\xc3\\x95\\x05LU?\\x18\\xf6{\\x90m\\x85P\\xbf\\xecq\\xe6\\x89\\xbd\\x96]?\\x10,\\x18\"\\xcbO??DJo\\xba\\xf4\\x17C?\\xf8D=c\\xce\\ri?P@u\\'\\x0b}T?`\\xe9Y\\x058\\xd4\\xf9>\\xa3r\\xf5\\xb4\\x9c\\xe5]\\xbf6\\x8f\\xed\\xc6Gd3?\\x00^\\x9by\\xceH\\xe4>\\x80l\\xdc\\xec\\xd2\\xf3:?\\x00PXS\\x83\\xd56?\\xe8U2\\xe1.:(\\xbfH\\xb6ee1\"@\\xbf@\\x9bLY\\xae\\xc2L\\xbf\\xa0\\xa0\\x8a\\xa5&k8?\\x9d\\xce\\x9et\\xc0\\x19@?\\xa0m/\\xd0\\x8d\\t.\\xbf\\xb0\\x90E\\x9caMW?\\x88\\x94M\\xba\\x1d\\x0bc\\xbfp\\x0c\\xd5s\\xc4$D\\xbf \\\\\\xbaB\\xf6\\xb77\\xbfP[\\xcch5\\xa9N\\xbf\\xa0\\xa3\\x1f\\xf2n\\xd07?\\x90:\\xe0e\\xcb\\xf9B\\xbf\\x80\\xb1\\x04\\xc5\\xb1=\\x1e?\\xcb\\x0b:\\xd6\\x10hB\\xbf\\xa4\\xa8\\xa0_\\x0e\\xefK?\\xd0\\x9aO\\tK\\x8dP\\xbf@\\xbdCb\\x0bcR\\xbf\\x8e\\xb7?t\\xe0\\xe0[?\\x80\\xe7(\\xd7a\\x0b\"?\\xa0FiK\\xa1\\x9f_?\\x00\\xc0\\xcbk\\xc8U+\\xbf\\xe0\\xa6\\x98\\xd5\\xd7\\xa8S\\xbf\\xe8\\xf3!\\xc1s!^\\xbf\\x00_\\xb7\\xdf\\xb2De\\xbf0\\x93\\x98\\xb1\\x88({?P\\x80<<C\\nR\\xbf\\xa6|\\x95u\\x9fK6\\xbf\\xd8i\\xb7g\\xf5m@\\xbf`\\xd0\\xd3\\xa6K\\xf5*\\xbfA\\x12[\\x00x*y\\xbf\\xf0\\x83W\\'\\x06\\x8d<?\\xb8M\\xd4\\x97\\x8fmK\\xbf\\xd8.\\x19>V$_\\xbf\\xb0\\x15e\\xc3zp\\x16?\\xf4s\\xa5\\xbd\\xe6(S\\xbf&\\x1f\\xaf\\'\\xc6\\xe0W\\xbf $X\\xcff\\x86$?Xm\\xa2^\\xc47]?\\x1c\\xe4\\xc2j\\xf5\\xd8L?(e\\x19s\\xce\\x047\\xbf\\xd0\\xf8\\x89\\x0c\\xc0|D\\xbf\\xd0\\t\\xae\\xe4`rU?P\\xd4\\x89\\x13\\x02r9?\\xee\\'\\xbe\\xa4\\xac\\xbfr?0t\"O;\\xceD\\xbf\\x00\\xf42\\xc7\\xeb\\xff\\x1a\\xbf\\xb6|\\xbd\\xef\\x19ZV\\xbf@r{#\\x03K\\x10\\xbfB+\\xf8:\\xc6\\xc0^\\xbf`\\xbf\\xae\\xcf\\x94\\x00;?\\xf8|[\\x0c\\xa0\\\\P\\xbfr\\x92\\x00\\xd9`\\x0c\\\\?\\x00@\\xb4\\xeeEC\\x86>\\xa6U\\xd7e&2@\\xbf`\\x8bV\\xdd\\xafT2\\xbfm^9LU\\x1aS\\xbf\\xe4\\xb0\\x08\\x9a\"NA\\xbf@\\xf7 4\\x8b\\xcb1\\xbf\\xf8\\x81\\x04\\xa2\\x18\\x1c@?\\x9a\\xe09L\\x9f\\xccR\\xbf\\xb8\\xd8\\xc7\\x8f\\x15\\x00]\\xbf\\x00V\\xde\\x15\\x17\\xafD?02~\\x9c\\xb5\\xec\\x0f\\xbf5#\\xcd\\x19\\xb0\\xf0@\\xbf\\xac\\x86\\x1e\\xd9\\xf6xJ\\xbf\\xa0\\x17\\xcd\\xcc\\x0f\\x08J?\\x00\\x1c\\xb2\\x11\\x89^!?\\x98\\x9d\\xc7\\xb9\\xd2\\x95R\\xbf\\x9c\\xe5+lu\\xb68?\\xf6g\\x98\\xce2\\x9fh?d!\\xf8!\\xb40i\\xbfdR\\xc4m\\xf3\\xe5`\\xbf,\\xdc\\x7f\\x8e\\x8c\\xa5A\\xbf\\x00(\\x00\\x06\\xf0\\x86\\x01\\xbfh\\xec#E\\xf7\\x8a\"\\xbf0\\xa05\\xfe\\x04PI?\\xc0\\xa7,\\xa4a\\x18[\\xbf\\x9a\\x97\\xd9\\xa9v\\xa3[\\xbf@\\x92UqJsN\\xbf\\x80\\xfdn=\\xb2\\x01$?\\xe0\\x86\\xba*\\xbc\\xb2Q\\xbf\\x88m\\x0b\\xed\\x91\\xd7H\\xbf\\xa03\\xa8\\xd2~\\r\\xf9>0j\\xa2@\\xcaiN\\xbf\\x10\\xefiS\\xe0fm?\\xa0\\x99\\xd5\\xab\\xe7?]?l\\x0ee:\\xc1^I\\xbf\\xd0s(\\x06\\xe4\\xe3_\\xbf\\x80kU\\x0c\\xc3\\xf9b\\xbf@\\x8c\\xb4\\x86\\x0c\\x8b+\\xbf\\xe0\\xf5\\xb6+\\x86\\x90z?`J\\xca\\x0b\\x93\\x81D\\xbfd\\xc9\\x1a\\'lNK?@C\\x87\\x87[\\x80`\\xbf\\x90i\\xd8.\\x8caS\\xbfRh\\xc5\\xb7/Ar?\\x8cBj\\xc3\\xfc\\xd6`?\\xb0i\\x93\\xb8\\xeb37\\xbf\\x9a<\\xc1i\\x86p{?\\x80\\nN(\\xcdFB\\xbf\\x90D\\x17\\xb6\\x05\\x04C\\xbf\\xbcv\\xd5iL\\xbba\\xbf\\xd4\\xedI\\x9b\\xa2&S\\xbf\\xe0H;\\xc3~$N\\xbf(e\\xc0#\\xabp@\\xbf\\xa0,A\\x1el\\xc2J?\\xf0\\x05\\x10Yf\\xdfa?\\xd0\\xc6\\xaap\\xe9\\xe5\\x9f\\xbf$M)\\xe5\\x9c\\x91[\\xbf\\x06\\x15\\x12\\x02\\xea}{?\"u\\x93u\\xa1\\xd6\\x9d\\xbf`i{\\xb4\\xc3\\x98a? t\"O;\\xceD\\xbf4\\x1bB\\x97;\\xd8\\xa1?\\xb6\\xc4#~\\x17\\x16>\\xbfN\\t\\xe2\\xc6\\x04\\xb9W\\xbf\\x87(N\\x1d\\xe0\\xc7\\x8b?\\xd6\\xa9I{M?q?hX\\xa9 \\xbc\\xf0]\\xbf`[\\xed%r\\x1e\\x87?\"\\x9fDo]A\\x7f\\xbf0\\tpy\\xa6\\xa7D?.p\\x1fp\\xcdD`?\\xe8]\\xaa\\xbd}\\x99Y\\xbf\\xf6\\xdc\\x8d\\x1e\\x87\\xeeb\\xbf>e\\xfe%\\xf2|Q?\\xf0\\x8b\\xbe\\xf8\\xe6~j\\xbf0C\\x91\\xf8\\xf1\\xaa`?\\xd8\\x1b\\x0b\\xaf\\x91\\xaaT?hA\\x13\\xad\\xabli?\\xe0\\xbb\\xf1C\\xd8\\xf5t\\xbf\\x88]\\xd8=\\xea-D?\\xa05\\xd9\\x1fT\\x84T\\xbf\\xbc\\t]\"\\xc6;S?`8\\x90}\\xeb\\x1c]?\\xdc\\xc8)\\x86\\xc7\\xadt?\\xe0ly\\xeehGj\\xbf,\\xd9\\xa9M\\x0b\\xfb]?\\xd0S\\xe4\\xcch\\xec}\\xbf\\xfc\\x9cpT&\\xd6\\x83?\\xb3\\x89A5\\xa8Q\\x85?R3\\\\%\\xee\\xcdb?\\xecu\\x97\\xcbo\\xa9\\x81\\xbfZ|iTG;a?\\xadPIc\\x0b\\x11\\x92\\xbf@\\xee\\x1c\\xc0\\xa4Rt?\\xc9\\xe8p1\\xf9Xr?`\\xaer@\\x04\\x9f\\x88?P{\\x8eK\\xdc\\xc0\\x7f\\xbf\\xd4$\\x02)\\xaf\\x03s\\xbf\\xd2\\x83\\x9a1\\xd5\\xeae?\\xb9!\\x81+<+t?\\x82\\xf8Z\\xbfF\\r~\\xbfl\\x07\\x1a\\xa4F\\xcc\\x8d\\xbf\\x80O\\xce\\x82\\xf8\\x04L?H\\x8b\\xc9\\xd1\\xa6\\xd4G?@y:\\xb2V\\tp?x2\\xa4.\\xa7\\x19\\x89?\\xe8\\x135]#\\r{\\xbf \\xfa\\xee\\xf7\\xad\\x15p?\\xa0\\xcc\\\\:\\xe6\\xbfR\\xbf+\\x03\\xe9<c\\x11S\\xbf\\xe0\\xcb].\\x91\\xbby?\\x00wU\\x9f\\xc1\\x9eK?\"\\x17*\\xe2Dj\\x8a\\xbf\\xa0=\\x8di\\x96\\xcaO?`\\x01Kh\\x93\\xeaz?xN\\x84\\xff\\xfa5\\x95\\xbf\\x00\\x1d\\xda\\x80fso?\\x8c\\x98\\xf0%\\xda\\xd5x\\xbfH\\xd5`\\xfau\\xb8w?S\\xf1\\xb4\\xcc\\xf4\\xaea?t\\x8a\\x0f\\x081\\xce}?\\x88\\xceO\"\\xcd\\xe6\\\\?\\x80\\xe6\\x91R\\x85\\x8e=\\xbfx^c\\xbf\\xd9\\x13c\\xbf\\xd0\\xd8mW\\x1b\\xbeM\\xbf\\x0e\\x01\\xe6^A\\x12c\\xbf@\\x17\\'\\x00\\xc036\\xbfrM\\xa2\\x85J\\x13j?\\x9cs\\xc9@,\\xfea\\xbf\\x00\\xf42\\xc7\\xeb\\xff\\x1a\\xbf\\xb4\\xc4#~\\x17\\x16>\\xbf\\x9e]wIVNl?\\x97\\xb6\\x9b`\\x9c\\x89A\\xbf\\x94\\xb17\\xf5P\\xb5/?\\xc2\\x193z\\xfb\\xdan\\xbf\\xc0f\\xc0U?*\\x0c\\xbf\\x1e`\\xfb\\x9a\\xa24^\\xbf5G\\xf7\\xeb\\xd6\\xcaj\\xbf\\xd8\\xcf$\\xcdEK\\x1d?\\xbd%!@\\x1c%4?\\xc4\\xf6\\xf0\\xf6Q1X?m4\\x91\\xafD\\x8e*\\xbf\\xc7*VX\\xbexB?\\xb8_\\xde\\xd8\\xb4#\\\\\\xbft\\xeb\\xfc\\xaf\\xf9v@\\xbf\\xaem\\xb2\\x15\\xc5i9\\xbf\\xb0\\x02\\xd7\\xd1\\x94\\xcaZ\\xbf\\x04R7\\xf2\\xbc\\xe2Q\\xbf\\x98U\\x9b\\xff?\\xb9:\\xbf\\x93[~\\xd4\\x9a[^?o\\x10\\xcdS\\x81E\"?\\xae\\xd83:\\x9dGH? 0E\\xfa\\xf9\\x1c\\x00?,5=\\x13\\xf7\\x042?@\\xa4\\x93Z\\xd2~\\x05?\\x94\\x01L\\xc9K\\xd1\\'\\xbf$\\xc6\\xf3O#\\x82Q?\\x90F\\xad\\xe4\\xafa\\x1f\\xbfqw5\\xfe\\x82\\x8f]?\\x00g\\x12\\xc5\\x8b**?\\x12\\\\:\\xafszI\\xbf\\x9c\\xd0\\xca\\x84\\xa6\\x8dB?\\xf0\\xc8\\xac\\xda@\\x13+?r\\x00>\\x8a3\\x8eP?\\xda\\xf2\\xe8\\x16\\x81\\xcab?\\xae\\x84\\xe5)X\\xfc^?\\x00\\n]U\\xd18\\xf6>\\xa6X\\xfd\\xde\\xd8qJ\\xbf\\x81>!\\x8ec\\x1e(?B--\\xc9\\x9et\\'?\\xa3\\x11\\xb8\\r\\xccmV?:\\x10\\xc3Y\\xe0\\xb0_?\\x96[~\\xec)\\xb7K?\\xfcL\\x9c7\\xe6\\xc2S?t\\x89\\x12\\xc1\\x1d\\xa5[?\\x88]\\xf5\\xa0F\\xe0)\\xbf@\\xee\\x8f\\x11\\x1a\\xd97?\\x10\\xc3C\\xde\\xd2tO?\\xd8\\xd5\\xe3Wl+h?P\\xf5u\\x1ez\\xa2U\\xbf\\x08\\xdbD\\x92\\xe1i7?\\x84\\x1d\\x03P\\xbfVa?\\xc0*j\\xb5\\xeb\\xa6\\x1a?\\x8c9\\x8e>s\\x17 \\xbf\\\\ts\\xe5G\\xaeb?\\xde\\xad\\x89\\x1e\\xce{2?6B5[\\x97\\x16T?\\x80F\\x17q$\\n\\xe9>\\xa4VDz\\xbc\\x8b\\x1e\\xbf\\\\zd\\xefr\\xba3?\\xfa\\xad\\x0e)\\x92\\xd19?\\x90\\x9e*\\xee\\x94\\xb4\\t?z\\xe8\\xe6<0/H\\xbfA\\x1b\\x1e\\xcbe d?p\\xf6\\x0e)\\x96jC?\\xb5X\\x84\\xea1\\xafd\\xbfe\\xdb0h\\x08\\xae<?\\\\\\x0b\\x02\\x8a\\xe8\\x82\\x12?\\xb6|\\xbd\\xef\\x19ZV\\xbfN\\t\\xe2\\xc6\\x04\\xb9W\\xbf\\x97\\xb6\\x9b`\\x9c\\x89A\\xbf\\xf6\\xab\\xbb\\xd5|\\xa6q?\\xf2nD\\xb1>\\x9f`\\xbf \\\\\\xc0\\x9fk\\xa7\\xe5\\xbe\\xb8\\xfe\\xd8\\xd6\\xb8\\x109?\\x80\\xd6XC\\x97\\x03\\x15?h\\x94\\xdal\\xc0\\xf56?\\x06\\xf8\\xbdR\\x1c\\xa8+\\xbf\\xe2~n((\\xa6K\\xbf\\xbe\\xe8k\\x11\\xb4\\x15S?\\x80\\xe5q\\xa5\\x9a\\xa27?\\x04\\x1b\\x86\\xd7\\x9d\\xbf\\x0e?6\\\\\\xba\\xb5\\xbc\\xb2O?l\\x8e\\x91\\xb5\\x84\\xc2@\\xbf\\x00,\\xf4\\xbc\\xcc#\\x05\\xbf\\x88!p\\x81S\\x927?\\x00`c\\x11\\xb0\\xdc\\x0e\\xbf@\\'\\xae\\xb5\\xf0\\xfa\\xda>\\x06\\xfc\\xa9\\xfd\\xe0\\x8bK?\\xecpjp\\x14\\x07@?\\xda\\xbc6\\xad\\xd0\\x8fJ\\xbf%\\xb79\\xa6i\\x10P\\xbf\\xcc\\xb8O\\x10\\x9f\\xd4T?\\xfc\\xfb1L=\\x11\\x1b?K~M\\xb5\\r8R\\xbf\\x80N\\xde\\n\\xf0q\\x0f?\\x0e\\x040k\\x9a\\x04\\\\\\xbfy)P\\x92\\x99\\x17l\\xbfQC\\xf9\\n\\x04\\xd7[?\\xc3+i\\xc5\\xd02?\\xbf\\xe7\\xd3\\xe1\\n\\x99gh?\\xa0\\x07\\xbc\\xb5\\xdf6L\\xbf\\xf3\\xf15\\x13q\\xdfR\\xbfH\\xc5uP\\xf2\\xc3N?\\x16M\\x14\\xa5t0\\\\\\xbf\\xba7\\xe0O\\x99\\xd1G\\xbf\\xe4Y\\n4\\x81\\xf1\\'?\\x8f\\x0e\\x07\\x1b\\x0f\\xcbQ\\xbf\\x95\\x1e\\x9b_\\xaaZh?\\xb6(\\xd7\\xdf\\r\\xf0i?\\xa0\\x0c9\\xaa\\\\\\xbds\\xbf\\xbfB\\xa9q\\x17\\x0bu\\xbfb\\xce\\xad\\x83M\\xbci?R$\\xf8\\xb00\\xffw\\xbf\\x14z\\xf2O\\xf4\\xa6b?d>|;R}g?\\x00yihO,\\x1c\\xbf\\xd0\\xd1\\xa9n8;q\\xbfj\\xa3\\x08o\\x00\\xb5|\\xbf\\x87\\xe6/\\xf7\\x93\"T?(3F\\xca\\xb2\\nJ?\\xb0$t\"\\xb5\\xc9)\\xbfq\\x0c\\xca\\x83\\xd7\\x8aO\\xbf\\xd6\\xb7\\xb7LE\\x0bp?f\\x99E\\xa7^\\rI\\xbfB\\xf74\\xb3\\xdbMZ\\xbf\\xc3\\xe9Q\\xa1\\x7f,[\\xbf\\x18m\\x84%\\xff\\xad5?pu\\xfeL\\x8b\\xfd&\\xbf\\x96\\xba\\xbfg\\x9e\\xfc4\\xbfT\\x9d\\x04k\\x05\\x17H\\xbf\\x10\\xb5\\xf3{\\x1fVT\\xbf\\x14\\xdc\\xe1Ni\\x81\\x94\\xbf\\xd9\\x8c\\xd0!x\\xb9n\\xbf\\x14\\x00\\x8d\\x9e\\x0b@d?\\x86\\xd9-\\x89\\x0c{\\x8f\\xbf\\x08\\xe7\\xfc\\xf5\\x13&C?@r{#\\x03K\\x10\\xbf\\x87(N\\x1d\\xe0\\xc7\\x8b?\\x94\\xb17\\xf5P\\xb5/?\\xf2nD\\xb1>\\x9f`\\xbf\\xf5\\x9a\\xffg\\x02\\xf7\\x99?DD\\xd3\\xaa\\x94\\xf3E?\\x16\\x80\\xe7\\x9c\\xb1\\xcca\\xbff\\xa3B5\\xa4Q\\x93?\\xb4\\xd9\\xf4ej\\x98X\\xbf\\xa6\\x91d\\xfbL#Q?xN\\xa1\\x82\\xdf-!\\xbf\\xb0\\'\\x03\\xda\\xfc\\xd3>\\xbf\\x92,S&\\xb1\\xc1J\\xbf\\x91\\xc7\"{\\xb3Un\\xbf\\x00{\\x85a\\xa0\\x94d\\xbf@\\xa4\\x9a\\x95\\xef\\xf1j?\\x14\\x1at\\xe3\\xc5\\x01p\\xbf\\xf4\\t\\x82\\xe7L\\xd6j\\xbf\\x88\\xf0[\\xbe\\xf6\\x98W\\xbf=\\x002B\\xc0\\x8eT?\\xf8\\xf3@\\xc6\\xa3\\xb7R\\xbf\\x9c^\\xf8\\x10\\xc0\\x91=\\xbf\\xd0>f\\xe3\\xd9od\\xbf\\xec\\x8bk\\x01o\\x83x?\\x9c\\xd6\\xb6\\x16\\xe9\\\\f\\xbf\\xd2\\xd7k\\xe4\\xed\\xe5a\\xbfX\\xc1\\xc8A\\xee\\x15s?h\\x088\\x99H\\xe1P\\xbf\\x00\\xc0\\xfe\\xe9\\x94\\'\\xb4>\\xa4\\xbfa\\x86\\x15\\xccb?\\xdcwb\\x9b\\xc0sU\\xbf\\xdc\\xb2\\xbb\\xd8\\x13\\x16<\\xbfY\\x1f9i\\x9b\\xeb\\x80\\xbf8u\\xb0\\x9ai\\xb7b?\\xa0\\xec\\x12}\\x8b\\x88&\\xbf\\xd0\\xcdL\\x02\\xee\\xf1r?\\xe8\\xe1\\xb6\\x1f\\xd9\\xe0[\\xbfh\\xb08G\\xadXU?0?\\xa6.\\x06\\xe0W\\xbf\\x059!\\xe5\\xachH?\\x9b\\xee\\xe2\\xf7\\t\\xcd\\x80\\xbf\\xb6F}\\xda\\x19r\\x86\\xbf\\xe0Hd\\xdf\\xc8Ui?\\xc8)\\xfd\\xe3\\xd9\\xdaO\\xbf\\x98Q\\xdau\\x88\\'k?\\x10\\xd7\\xbcb\\x84sd?\\x05\\x14r\\xb1m\\x80~\\xbf\\x00Tl\\x02Z\\xff\\'?\\x00:v\\x00>s\\x13\\xbf\\x8e\\xe5\\x96\\x9a\\xec\\xd9n\\xbf\\xa0\\xc2]\\xf5\\x877r?\\xb0\\xe2\\xb3\\xabz\\x82_\\xbf\\xa03\\xca\\xc1\\x83I\\x8e\\xbf\\x94KuU\\xee>s?\\x80^\\xa9\\x07\\x0b\\x01U\\xbfd\\xc5y\\x1d\\xe76\\x82\\xbft\\x80\\xa4.)qR\\xbf\\x1cD\\xa9\\xa6Q\\xbdg\\xbf\\x88n\\x1d\\x01\\xb6\\xd7\\x81?\\x08\\\\\\xbcV\\xd9JA\\xbf\\x10E\\x9f\\x99\\x98\\x8dt?\\xc0\\xa3\\r\\x08=\\xd8c?\\xd8\\xd5\\xc5f)\\xd9M?\\xc0\\xa1\\t\\x17M\\x163?\\x905`\\xf7\\x92\\x8fc\\xbffk\\xa3ZrGu?\\xe6}a7\\x082o?\\xb0#f\\xa8d\\x82\\x83\\xbfC\\xceo9[5s?B+\\xf8:\\xc6\\xc0^\\xbf\\xd6\\xa9I{M?q?\\xc2\\x193z\\xfb\\xdan\\xbf \\\\\\xc0\\x9fk\\xa7\\xe5\\xbeDD\\xd3\\xaa\\x94\\xf3E?\\xc9WR\\xfe\\xfc\\x96\\x90?0I\\x97_@c6\\xbf\\x7f\\xca\\x8dG\\x84\\x17m?x\\xa4\\x06\\xc50\\x0fe?\\x80\\x83\\xfc\\x88.\\xf1\\x1b\\xbf\\xbfY\\x07\\xfc\\xf1|c?Z\\xc33L\\x15\\x16j\\xbf\\xc5\\x0e\\xc7\\xc8$V[?\\x9dzI\\x95\\\\N-?\\xfe&f\\xd5,\\xd2d?\\xc0\\xe1\\xc8\\xc1&y_?\\xb2\\xe2\\xa4\\x07\\xb8pp?\\x08B_A\\x9b\\x01\\x83?Hd\\xa7\\xfd\\xce\\xa8@\\xbf\\xeee\\x9c\\r?\\xc9;\\xbf\\x82\\xeb\\xf3~\\xcc\\x0eg\\xbf\\xbeR\\x86/\\x01\\xaaI?\\xe0O\\x1e\\xe9\\xb0l=\\xbf\\x9bQ\\xda\\xc2/\\x10e?\\x00Z\\x7f\\xee\\xab\\xd9W\\xbf\\x00V)\\x06\\x1c$-\\xbf6\\xc3\\x944\\xae/w\\xbf\\x9fC\\x1a\\xa1\\xaf\\xd9y?\\x94\\xf6\\xd05\\t\\x7fr?R\\xe0z\\xad\\xfd\\xb0Q?\\xb0(\\xc0\\x89\\x958L\\xbf\\xb1\\xad\\xde\\xd3\\th\\\\?hD\\xc1G\\x03E\\x83\\xbf\\xa0m0\\xd6\\x9e\\x0bU?\\xfc\\xda\\xb2)\\xaa^M?B\\x85\\xa2\\xb6\\xd5Sg?^\\x9c\\xa9\\x1b\\x08\\xbcd\\xbf\\xb0\\xfes<\\xd3\\xa6I?\\x9f\\x04\\xed\\xce\\x04~i?lk_\\xf1\\xdb\\xe16?\\x18 \\xf3\\xcb\\x1e\\x88K\\xbf0x\\xbcG\\xea2\\x8d\\xbf\\x88\\xb4\\x11\\xce\\xf3o{\\xbf\\xfb\\x0f\\xbdX\\x9f\"^?a\\xc8\\xc8\\x02o7\\x82?\\xd0\\xd8\\xed\\xc6\\xceP~?\\xcc\\xbe2/\\xec\\x89a\\xbf\\t\\x07\\xf5c\\xe72\\x91\\xbfp\\xcb\\xf4\\xefc\\x1cc?\\x00=\\xb2M*\\xb8\\\\\\xbf`\\x13?\\r\\x17:\\x94?\\x9fr\\xb8m\\xe6*t\\xbfV\\xa3\\xc3y\\xa5\\x8f\\x88\\xbf\\xd7\\xd8\\xebN\\xa4\\x9ej\\xbf\\x86\\x1a\\x11\\xdd&;c?\\xa9\\r\\x1dO5\\x0b\\x8f\\xbf\\xcc\\xa0U\\\\\\x11vT?\\x18\\x013\\'\\xbf\\x83c\\xbf\\x90\\x81\\xa6W\\xa2\\xc6t?\\xf4K \\xa3\\xf5\\x9fQ?\\xc0)\\xdcI\\x91pM?\\x80\\xffq\\x17\\x0e\\xd7\\x10\\xbf\\xe0\\x0c\\x93\\xcb\\x7f\\xf6&?\\x00L\\xe1\\xc0<\\x12\\x1e?\\xaf\\x1fLKR\\xa9b?pS\\x08FW\\xa49?(\\xe9b\\x0bm\\xa5A\\xbf\\x00n\\xf5q\\x1b\\xf9\\\\?\\x00\\xc6\\x95\\x02\\x8f1\\x1b\\xbf`\\xbf\\xae\\xcf\\x94\\x00;?hX\\xa9 \\xbc\\xf0]\\xbf\\xc0f\\xc0U?*\\x0c\\xbf\\xb6\\xfe\\xd8\\xd6\\xb8\\x109?\\x14\\x80\\xe7\\x9c\\xb1\\xcca\\xbf0I\\x97_@c6\\xbfx\\x1c\\x0b]\\xd8\\x85[?p|4\\'\\xefG[\\xbf\\x00\\xb9\\x1a\\xe8f\\xaa\\x14?\\xf0\\xff\\xda\\\\\\x99H)\\xbf\\xecgf9\\xd9H<\\xbf \\x0f\\xe8q\\xd3\\xf82? \\x9d\\xa0\\x95L\\x9a$\\xbfT\\xb4-\\xffv\\x9e2?\\xe0Qq\\xd2\\xa2w!?\\xd0 *\\tP\\xe81\\xbf\\xc0\\xa5\\xc7\\x82\\x8aR!?\\x00\\x8d\\xe4r\\x91\\xd9\\x17?\\x80\\x9c\\xf5\\x00\\x84M+\\xbf\\x1c\\xbe\\xb4\\xd6\\x18v*\\xbfD_\\xd3\\x00r\\xae,?e\\x92\\xd7\\x11\\xc7\\x88\\x12\\xbf\\x00L\\x02~r\\xfb\\x05\\xbf\\xe0\\xec3\\x1d\\xf0\\xe67\\xbf@\\x9e\\n\\xbd\\xe9\\xad2?p|IJ\\x9c\\xc66?`R\\xef8bl>\\xbf`v\\xd8Y\\xf7a9?\\x88F\\xae\\xbc\\xdec:\\xbf\\xeey\\xce\"7\\xa2P\\xbf\\xa8\\xf7\\xab\\xfe^GD?\\xd0\\xbf\\x0f\\x9f\\x87\\x101\\xbfx{\\xb5\\xbc\\x85\\xe0Q?\\x00\\x12!\\xac\\xd1\\xa3\\x1a\\xbf\\x84A\\x92q\\xec\\xc5E\\xbf\\x00p\\x0e\\xc1t\\xb8\\xec\\xbe\\x90\\xd4\\x84\\x8f\\x00\\xf1C\\xbf\\x00\\x8e\\xadYrX\\x16?\\x90\\xa2\\x919U\\xa43\\xbf@\\x94\\xa3\\x04\\xbe\\xc97\\xbfDr\\xaba\\xec9L?\\xa0\\xc2\\xb4Y\\xc9NK?\\x80\"\\x80\\xd3u\\x8eP\\xbf\\xb2y\\xcb5\\xb6\\x11U\\xbfpMz\\x9c\\xae\\x0eR?\\xa0\\x87\\xee\\x0bM\\x91S\\xbf4\\x98<g\\x1f\\\\`?\\x00L)PtP5? \\xed[\\xff5\\xec@?*H0\\x11\\xc3\\x93@\\xbf\\x00\\xba\\x06\\xa9\\xb8\\xe6>\\xbf\\x80hf\\xc6\\r\\xa7D\\xbf\\xcf\\xfb\\x06\\xe7\\xa77b?@h\\xd1|zo/\\xbf\\xe0Y\\xdb\\xca\\xb8\\xb0+?\\x02\\xe9\\x89\\x04D\\xceQ?`\\xae\\xb4\\xfa^y\"?\\x90x\\xdf\\x05h\\tF\\xbfh\\xf3\\x86\\xa1\\xea\\x82S\\xbf\\x00\\xe7\\xd2\\xfcK\\xb1\\x01?pUv%\\xc28@\\xbf@\\x97\\x0c\\x888Z%\\xbf l\\xdcG\\x1aT$\\xbf\\x80\\x19|g\\xb4\\xe8\\x17?h\\xf6\\xd8\\xd1\\xaaH\\x8e\\xbf\\x04Q\\xc0\\x9b\\x8bN[\\xbf \\xb4\\xc1v\\xa0\\x02E?\\x1d-\\x0e\\x8aT\\x1c\\x92\\xbf\\xe0\\xe0\\x9e^hcf?\\xf8|[\\x0c\\xa0\\\\P\\xbf`[\\xed%r\\x1e\\x87?\\x1d`\\xfb\\x9a\\xa24^\\xbfP\\xd6XC\\x97\\x03\\x15?f\\xa3B5\\xa4Q\\x93?\\x7f\\xca\\x8dG\\x84\\x17m?`|4\\'\\xefG[\\xbfo\\xfb\\x95\\xf9\\xef\\xad\\x97?@bm\\x8c\\x96%%?\\x18Xp\\x98\\xdf8R?`U\\x9eBv\\x8c-\\xbf\\xa8\\xb3Y\\x169\\x10G\\xbf\\xbc,\\x1d^*yM?+,B\\xaf\\x80\\xecm\\xbf y\\xb6y`IA\\xbf\\xf0K\\xeb\\t\\xa0]k?6\\x14F\\xc8\\x8d\\xdaq\\xbf\\x00\\xa0*\\x06\\x12\\x1bC\\xbfP\\xd6\\xfd\\x9d\\x9d\\xf2R\\xbf\\x82\\xd5w\\xaaV\\xbeR?\\x88;\\x80\\x98\\xae\\xa1Z\\xbf\\xe0\\xa8\\x80\\xff\\xe9Z\\xe3\\xbeH\\x9fQ\\x1c\\x0b9h\\xbf\\x1c?%?\\xba\\x93p?\\x80\\x92\\xba@\\x054_\\xbf\\xcdlV\\xd9\\xeeCa\\xbf\\xc0Z\\xc9\\xd6C4h?@\\x165\\xf5a\\xcaJ\\xbf \\xda\\x0c3\\xf6tV\\xbf\\x18{\\xbb\\xbf\\xe3\\x06C\\xbfP|%\\x01\\'\\x18K\\xbf\\xc0\\x8d\\xe9|W\\x9a\\'? \\xca\\x96\\xf2\\xb3\\x94x\\xbf\\xa0\\x08p%h\\x94V?`:V\\xca\\x8fEG\\xbf\\xe0%Y\\x9b\\x19\\xa3g?\\x80\\xd8\\xc4\\xda\\r\\'J\\xbfp\\x90u\\x92\\x91\\xf9T?d\\x128\\xc2T\\xa4f\\xbf#eIkcZ=\\xbf\\x14\\xd0BI \\xf0r\\xbf\\x94\\'\\xd7\\x9c\\xdaY\\x84\\xbf +\\xb4\\xc0\\x7fFc\\xbf\\xec$.]\\xfd?Z\\xbf\\xc0\\xf3d\\x94\\x98dq?\\xc0o\\xa6\\xcc\\xfe\\xe9[?\\x10,_\\xc71\\x88t\\xbf\\xa0\\xda?\\x95Y\\xa4}\\xbf\\x00CV\\xa5\\x81\\xcaS?\\x9cb\\x86=\\xd7\\x16x\\xbf\\xb0\\xbb\\xd6\\xdd7\\xe9\\x82?\\xc8b\\xe3t\\x84Vu\\xbfYj1\\xb6M~\\x92\\xbf \\xc1\\xce\\xb93Nn?\\x98\\xc4\\x83\\xf1o(Q?\\x1b\\xd7!rg\\x14|\\xbf\\xc0\\x0cn\\x05\\x98\\xa1E\\xbfD\"`\\x1b\\xc8\\xf0v\\xbf\\x8a0\\xb6Y\\x18\\xfd\\x80?\\x10\\xea\\xea\\xd5A9E\\xbf\\xe8>4u\\x8c\\xabf?x\\xa4\\x89]\\x11\\xf5U?`Vg\\'+\\xeeQ?\\x80\\xe4\\x113j\\xf0M?\\xce\\x93\\xf8b\\xe6\\xcf\\x80?\\x83H\\xe5\\t\\x9f\\x1bo?*\\x02\\xfc\\xd9_Pa\\xbf\\x01\\x1b\\xd5w\\xed$b?`\\xfa\\xae@\\x876m?r\\x92\\x00\\xd9`\\x0c\\\\?$\\x9fDo]A\\x7f\\xbf5G\\xf7\\xeb\\xd6\\xcaj\\xbfh\\x94\\xdal\\xc0\\xf56?\\xb6\\xd9\\xf4ej\\x98X\\xbfw\\xa4\\x06\\xc50\\x0fe?\\x00\\xb9\\x1a\\xe8f\\xaa\\x14?@bm\\x8c\\x96%%?>\\xc7/\\x99\\x9c&\\x8e?\\xddO\\xe3!D#A\\xbf\\xf7d\\xf6\\xadT\\xc8.\\xbf\\xd0\\x1f\\xbeN.\\xc7h\\xbf\\xe8\\xe5\\x03\\xb8(\\xafQ?\\x1aKf\\xcd\\x1a\\xa9b\\xbf\\xeb\\x80\\xd6J\\x07\\xfcv?<\\xf8\\xdd\\x87\\xe12@\\xbf\\x90\\x9e\\xf6\"\\xddRB\\xbf\\xdc\\x9b9\\xca\\xa0Ec\\xbf\\xf2\\xbd\\x8e:\\x9b\\xf6\\x80?@\\xcdT:P\\xd2[?V\\xd7\\xe9\\x043Jf\\xbf\\xd8\\xcfE\\'\\xa0]F\\xbfLP\\xb9^\\x9e\\x1b@\\xbf\\x06\"\\x0f\\xcb\\xa0Bb\\xbf*\\xd7;I\\x8am]?\\xb4\\\\\\xdeW\\xc6\\x9cc\\xbfm$\\x944\"\\xea\\x85?\\x02\\x1f\\xa3\\xa2%\\xac\\x8d\\xbf,\\xc8\\x817^7s\\xbf\\x9a\\xae\\x87!_\\xc5!\\xbf@H\\\\\\xa4\\x06\\xf9-?<:=\\x83\\x82\\xc0Z\\xbf\\x88\\x1f\\x04\\xd7:=C?\\x90\\x12\\xa8\\xe9\\xd6xe?\\xd6j]\\x10\\x89\\x00t\\xbf\\xf1G\\xcb\\xd0\\xb69x\\xbf\\\\~U\\xed\\xff\\xe2h\\xbf\\x80\\xdf\\xc1\\xf3\\xba\\x80\\'\\xbf\\xe6\\xdd\\xe0]\\x03C@?\\x15h\\xbf\\x17\\x00\\x1fV\\xbf\\xa9\\xd9\\x8b\\x97\\x00\\xb6i\\xbf\\xd3h\\xa3\\xe5-\\xa7{?Q\\x00\\xc9\\xd0\\xdf9\\x81?\\x9d\\xd0\\xa8t\\xf2\\xedf\\xbf\\xc3\\'\\xdf<i\\x01\\x81\\xbf\\xe2\\xcb\\x9c/B\\xee\\x8b\\xbf\\xf5\\x8a8\\r\\xfbem\\xbf\\xad\\xdcdL\\x93\\x88\\x8c?\\x81\\xda\\x88,\\xe1\\xbb\\x80\\xbf4\\xe3\\xd7o0tn\\xbf\\x12\\xe7\\xde\\x00\\xcf,\\x80\\xbf\\xab\\xe7\\xfc\\x85\\xe0Jk?\\x89\\xe8\\x8f\\xaa\\x8b\\xc2\\x81?\\x86\\xd7\\xb0\\xfa\\x91\\xf6m?m*\\x8a\\xd8\\'\\xf2a\\xbfw$\\x88\\x1b\\x1c\\xbc\\x8e?\\xfa^\\xd27\\xe7\\xadq\\xbf\\xdf\\xa6!\\x8f5+Q?\\xda\\xa3\\xacG\\xfaSs\\xbf\\xddI\\xf1p\\xca-c\\xbf\\xa1\\x8f~\\xff\\x00\\x08r\\xbf\\xeb\\x8fr\\x1e\\xd6\\x82t\\xbfy\\xe8\\xd9S-7W?\\x9d\\x04\\xf2\\x83\\x0bLu?dZ\\x88\\xd9B\\\\T\\xbf\\xe804LgoG\\xbf\\xc8\\xe2]:\\xc0\\x07B?Hgr\\xd9\\xc2gQ\\xbf\\x00%\\xad\\x87\\xb1M\\xe6\\xbe\\x00\\x80\\xb4\\xeeEC\\x86>0\\tpy\\xa6\\xa7D?\\xe8\\xcf$\\xcdEK\\x1d?\\x06\\xf8\\xbdR\\x1c\\xa8+\\xbf\\xa6\\x91d\\xfbL#Q?`\\x83\\xfc\\x88.\\xf1\\x1b\\xbf\\xf0\\xff\\xda\\\\\\x99H)\\xbf\\x18Xp\\x98\\xdf8R?\\xddO\\xe3!D#A\\xbf\\x98\\x11\\x9dy\\xc4\\x18]?xG\\xcc#RY4?0\\xa5\\x03\\x1by\\xbf,?\\xf8|1a\\xc59\\x1a?\\x88\\x93\\xae\\xd5f\\xee\\x1d?\\x00H\\xf0D\\xd7\\xff\\x17? \\x08\\x82\\x1d\\x93\\xbd3\\xbf\\xc8&o\\xf7}\\x068\\xbf@\\xa2u\\xfeC\\xf18\\xbf\\xf8v\\xc4%\\x93~E\\xbf\\x98\\xc2\\xccV)v,?\\xd0\\xf2\\xab\\xd3\\x99\\\\\\x0b?\\xa4\\xa2\\xa7!\\xe2\\xd5\\x00\\xbf@9\\x1fU\\xfc\\xfa\\x1c?\\x00]\\x1a\\xa75Q\\r\\xbf\\xa0b\\xcb\\x9c\\xf8\\x07<?\\xae\\x02\\xa8\\x9eL\\xbcE?\\xa0G(\\xa6c\\xfd9?@Ov\\xef,@H?@ \\x9a\\xecX\\xf9:?\\xd6\\x17\\xe39\\xd2\\xe7@?\\xa0\\xfbGq\\x1c\\x89-?\\x00\\xf9\\x19&D\\xf1\\x15?\\xd0\\xf4\\'\\x85\\xe9>A?\\xd0\\xbf\\xbe\\x1e\\x9f)B\\xbf\\xf0\\tK\\x8f\\x8a\\x91 ? dt\\x94-\\xb90\\xbf@\\xcc\\xd6%\\x13uI?\\x10\\xc6\\x897\\x0e?N?\\x80\\xe3\\xc2\\xdc\\x0c\"\\t\\xbf.\\x9fA\\x9f\\xd6\\x02$\\xbf`\\xaa\\xd4{\\x12|4?\\x00\\xe8d\\x82fS\\xe3\\xbe\\x80\\xcb\\x90\\xc9\\xd9\\xbeK?\\xa0\\xa6\\xd5ECf4?\\x80fu\\'D\\xa5C?\\xd04\\xdb72\\x07U\\xbf\\xb4y2\\x927\\xc5c\\xbf\\xe0\\x05$j\\xe5\\x7f\\\\\\xbfX\\x9a@\\xde\\x0e|Q\\xbft\\xbcr\\x9c\\x94\\xd4L\\xbf\\xc0\\x81x\\x83\\xc9\\xdf]? =\\x1fo\"\\x14I?X\\x92\\xaf\\x9f\\xdb\\x83r\\xbf\\x00\\xbbD\\xccS\\x00!?*v\\x99\\xeb\\xf8\\xcfR\\xbfw\\x9c\\xe0Y\\xc6\\xa3`\\xbf\\xa0\\xed\\x947\\xe2\\xaf-?\\\\U\\xe3Yg\\xafP?\\xc0\\xac\\xbcm\\x12\\x82S?`06\\xe2C5\\x16\\xbf \\x00d\\xee\\xa5\\x947?\\xd8tEp\\xdb\\xd3A?\\x00\\xe5=\\xbb\\xe1\\x87\\x02\\xbf\\xa0\\xf5\\x03\\xaf;L3\\xbf \\x7f\\x9b\\xd4\\xb9\\xbe6\\xbf\\x0c\\xdc\\xc3\\xce\\xbf{0?\\x08\\xdc*B\\xcc\\xb8Q?\\x80\\xe3\\xf0,\\xa6wA\\xbf,\\x1bVG\\x83\\x10O?\\xa6U\\xd7e&2@\\xbf.p\\x1fp\\xcdD`?\\xbf%!@\\x1c%4?\\xe2~n((\\xa6K\\xbfxN\\xa1\\x82\\xdf-!\\xbf\\xbfY\\x07\\xfc\\xf1|c?\\xecgf9\\xd9H<\\xbf`U\\x9eBv\\x8c-\\xbf\\xf5d\\xf6\\xadT\\xc8.\\xbfxG\\xcc#RY4?\\xe5Wl\\xddb\\x97}?\\x19\\xb3\\xe7\\xb5\\xb3\\x86V\\xbfh\\xf4\\xfe7\\x88\\xd4R?l\\xfe\\x14\\x0fv\\tK?Lv\\x99z\\x9a\\xd6L\\xbf\\xc8a\\xbc\\x9d\\x8c\\xc15\\xbf\\x93\\xf0\\x89\\x8bc{T?\\xd8\\x9c\\xa0v}\\'c?\\x00Ti\\t\\xc7\\xc1#?\\x99Y&\\xb0\\xa4QL\\xbf\\x89\\xedu|\\xdd\\xda9\\xbf\\x84\\xfc\\x84\\x04t?<?\\xa8\\rb\\xeaw\\x8cB?HY\\x87\\xa9\\xee\\xee\\\\?P\\xec\\xbd \\x081?? \\xdf9\\xd6\\xcd\\x19\\x1b?p3$\\x94u\\xc08\\xbf\\x80\\xf6\\xaf\\xc8\\xd6\\xf1A?\\x04\\xebu\\xb6\\xb4\\xecs?\\xff\\x91\\xff\\xfbioj?\\xbc\\x82\\x1a \\x92\\xaeL\\xbf\\xbb9\\x97\\xfb4\\xc1`?\\xf6\\x91J\\xc7\\x1b\\x98\\x7f\\xbf\\x14\\xc0\\xa0\\xcb\\xc3Ea\\xbf\\x9a\\\\\\x8c\\xf3\\xabXg?\\xf3t\\x01\\xa5\\x08\\xe0s?\\xa0c\\x104\\xcf\\xaag?@jXO)\\x0b\\x1c?\\xe6\\xc7\\xf1\\x0312J?\\x12A^Mq\\xb99?l\\xc5\\xd1]\\x0e-d?@1#\\xe7afr\\xbf\\xe0G\\x90&\\'%P\\xbf\\xe8h\\xb15\\xdfzp?\\xa0\\x83\\xc3\\x9b\\xf84U?\\xc8@p4\\x10\\x9eu?\\x80\\x89\\x17B\\xeb*N?T\\x01\\xad\\x823$|\\xbf\\xae\\xa2.\\xa3\\x11&c\\xbf\\xde\\x0f\\xc79\\xb3\\xb6b?~v\\x8dP\\x9c\\xad\\x80? 0l\\xbcQ~P?\\x07r\\xd1_\\xc1\\x9aE?\\xf8B:C\\x99\\\\C\\xbf\\xcfI,\\xacu\\'U\\xbf\\xcd+\\x034\\xd79i\\xbf\\xb8\\xcb\\xc3v\\xc0\\x0f0?x\\xc2\\xd0\\xf5\\xb4\\x9fh?\\xc82\\x13\\xfbI`M\\xbf\\xd6\\xec?\\xb1\\x8eW8\\xbfh\\xbc\\x91p\\xe5\\xe7J\\xbfT\\x9aK\\xa2S]^\\xbfd~\\x917W\\xf6G?\\xacA\\xe7\\xb0\\x9e\\x15S?X\\x05d\\xa5\\xc3\\x0bE?4\\xa4\\x13\\x12\\x8c\\xd3`\\xbfPk\\xde<Y\\xd0E\\xbf\\xe9\\xdf\\xe1\\x9cJ\\x91d?\\x8c\\xb3\\rI\\xa2\\x94]\\xbfh\\x8bV\\xdd\\xafT2\\xbf\\xe8]\\xaa\\xbd}\\x99Y\\xbf\\xc2\\xf6\\xf0\\xf6Q1X?\\xbe\\xe8k\\x11\\xb4\\x15S?\\xb0\\'\\x03\\xda\\xfc\\xd3>\\xbfZ\\xc33L\\x15\\x16j\\xbf \\x0f\\xe8q\\xd3\\xf82?\\xa8\\xb3Y\\x169\\x10G\\xbf\\xd4\\x1f\\xbeN.\\xc7h\\xbf0\\xa5\\x03\\x1by\\xbf,?\\x19\\xb3\\xe7\\xb5\\xb3\\x86V\\xbfE.;3\\xa3\\xd6u?(\\xe1u\\x1e\\xcc\\x9f`\\xbfP\\x82EV\\x90\\xb2.?\\xe0\\xc7\\xdbO\\x85\\xb1=\\xbf\\xa0?\\xe81\\x03W\\x11\\xbf\\xdc\\xbd\\t=S\\x0e8\\xbfP\\xab\\x87\\xb1p\\xadX\\xbf\\xbe\\xf9\\xab?T\\xf9e\\xbf\\xda\\x1b\\xce\\x1d\\xeb\\')?]\\xa1\\x15<q6d?\\x12\\x11L\\xf2\\x99\\x9cA\\xbf\\x98gm?\\xbbhI\\xbf\\xc0f\\xc62 \\xc6#?8\\xdd\\xcbe\\xab\\x89G?\\xfc0\\x8f\\xcc,\\xfa\\'?rZ)\\xaf\\x89Tc\\xbf\\xa8\\x8e\\x03F\\x99\\x0en?\\xa0\\x8b\\x19\\n\\xb8\\xc5!\\xbfF\\xaa~\\xf5\\x19}p\\xbf8\\xf0T4\\xc2\\x96d?\\xf2\\x8a\\r\\x1b\\xd2+C?\\xc2{\\x91\\xcf\\xcc\\x15\\x84?\\x8a\\x93\\xfb\\xe7\\xbeij\\xbf\\xa0d\\xb9\\xf3M\\x88G?`\\x9dM\\xa9\\xd0w?\\xbf\\x00\\x98w\\xd9\\xd2G\\xd0>L\\xb9\\xd1\\xe8\\xe6\\xf5T?\\xf8L\\'\\xff\\x9fA2\\xbf6\\xab\\xae\\x8e\\x08\\xb3C\\xbfHs\\x887\\tvt?\\x80\\x99\\xeb\\x10\\x9e\\x00{?L\\x19X\\xa7\\xc8\\xabv\\xbf\\x8b\\xcb\\xf7\\x04%\\x81V\\xbf\\x92+\\xc8\\xde\\xe0\\xa6p?Pke\\xd5\\x16\\x92f\\xbf;N\\xd5\\xb3\\xf1yd?\\x90g\\xf2\\tw\\x9dk\\xbf\\xd0\\x8cl\\x91U\\x92V?\\xc8+\\x05#6\\x05L?\\x80\\xd1\\xd7\\xbc\\xa2*q\\xbf8\\xf1art\\x92r?\\x17\\xf5\\xcf\\x9a\\x9f\\xf7p\\xbf0y\\xa1u\\xdf\\x8e2\\xbf\\xbf{\\xc2\\xd4F#`\\xbf\\x00\\xa4\\x13\\xdchA\\xe5\\xbe\\xc0\\x93\\xcd\\x18V\\x04-?\\x0c\\xcd\\xfb\\x8aF)K?\\x00\\x8c?\\xbe\\xf8\\xd6\\xd6>\\x10M6\\x84\\x06nI?\\x18\\x86\\xc6\\x9e3\\xf7^?N\\xac9\\xdf.9]?L=\\xa5d\"\\xf4W\\xbfv\\x12\\xeb\\xe6\\xff\\x9ai\\xbfI\\x033!t\\xbdi?\\xd8\\x15E_\\xe3\\x17E?\\x8b\\x1d(\\xd2\\x12W]\\xbf\\xd4#\\xeen(\\xe1O?\\xa7\\xaa\\xc3\\x95\\x05LU?m^9LU\\x1aS\\xbf\\xf8\\xdc\\x8d\\x1e\\x87\\xeeb\\xbfk4\\x91\\xafD\\x8e*\\xbf\\x80\\xe5q\\xa5\\x9a\\xa27?\\x92,S&\\xb1\\xc1J\\xbf\\xc7\\x0e\\xc7\\xc8$V[? \\x9d\\xa0\\x95L\\x9a$\\xbf\\xbc,\\x1d^*yM?\\xe8\\xe5\\x03\\xb8(\\xafQ?\\x08}1a\\xc59\\x1a?h\\xf4\\xfe7\\x88\\xd4R?(\\xe1u\\x1e\\xcc\\x9f`\\xbf,)\\xe2JA\\xd4y?L\\xae\\xb6\\x05f\\xfbH\\xbf|\\x1e\\xc0|\\xe3\\xcfV?\\xf0\\x04\\x06\\n\\x0c\\xa1\\x12\\xbf\\x80\\x8d\\x1bF\\xb8\\x9f\\xf3\\xbe\\xf7A\\x1c\\xcf\\x80\\x0b`?\\xd6$Z\\xd6\\x16NS?\\xe6\\x846j\\xfd\\xbe*\\xbf\\x1f\\x84\\x88\\xc7.\\xdfD\\xbf?\\n\\x12\\x94nq]?\\xe4\\xd3\\x18\\xceD\"J?\\x86\\x1fkq\\xab\\xdc`\\xbf8\\xd2\\x17cD`A?\\xf2\\x02\\xae\\'\"-<\\xbf\\x08\\xe3\\xaeP\\xd2f5?\\xb0j\\x8b\\xa9\\x87\\xf6H\\xbf2J\\xc3\\xf2k\\x89U\\xbf\\xa6\\xbc\\x12\\xa4\\xaf\\x1bq?y\\x9b\\x9ce\\x88mR?\\x10\\xc4i\\xdf\\xb4\\x93/?\\xb8<\\x1cwr\\xac5\\xbfX`V\\xfc\\xc3\\xf4T?r5\\n\\xc7\\xdd\\x1cT?\\x8a\\xad|\\x999\\x0bm\\xbf\\xdd\\xa9_\\xf9>U\\x80?\\xf0\\xcdPFIuP?\\xce>\\x80\"\\x88\\xbef\\xbf\\xd0\\x07\\xe7\\x1c\\xe6\\x03E\\xbfX\\x0fo\\x12\\xccM@\\xbf\\x18\\x88\\xbdkq\\xc6L\\xbfpJ\\xb4>V:l?^\\xb6_\\x9av\\nr?<?|\\xcc\\x1d\\xb8n\\xbf\\x82\\x9e\\xb7\\xf3\\xbf\\xb8z?\\x18K\\x1ag\\xe24M\\xbf\\xb4m\\xb9\\xc6\\x95_{\\xbf\\\\m\\\\=N\\x9cW?\\xf6\\x11\\xbaG\\xaa\\xf2_\\xbf0\\xa0\\xb9@\\xa1Be?00\\x87\\xff\\x93Us\\xbffv\\r\\xc8\\xa0|4?\\x10\\xce\\x8e\\xa96\\x87O\\xbf\\xfa\\xce\\xe2\\xd7T\\xc7P?\\x1bN\\xc5\\xc3\\xcf\\xefU\\xbf\\xc0\\xf4\\xfeu^\\xb4\\'\\xbf\\x18\\x11\\xffi\\xbe\\xc6,\\xbfX\\xcd^\\xe2\\n\\xa18?\\xf6\\xf1sn\\x1a\\xa4K\\xbf0o\\x87\\xd2\\xb0\\xcag\\xbf\\xc6:<\\xed\\x02YX\\xbf\\xe8\\xbe\\xe8Q\\xd2mQ?\\x899\\xdc\\xd4\\x05\\x07c?\\xfd7\\x1d6\\xc7\\xafP\\xbf\\xb6_\\xfc\\xd5\\x87rA\\xbf\\xd6S\\xd6\\x7f\\xaf\\xcbM?\\xe6\\x91\\x03{\\x10\\xf70?\\x18\\xf6{\\x90m\\x85P\\xbf\\xe8\\xb0\\x08\\x9a\"NA\\xbf@e\\xfe%\\xf2|Q?\\xc7*VX\\xbexB?\\x04\\x1b\\x86\\xd7\\x9d\\xbf\\x0e?\\x8f\\xc7\"{\\xb3Un\\xbf\\x9fzI\\x95\\\\N-?T\\xb4-\\xffv\\x9e2?,,B\\xaf\\x80\\xecm\\xbf\\x1aKf\\xcd\\x1a\\xa9b\\xbf\\x88\\x93\\xae\\xd5f\\xee\\x1d?l\\xfe\\x14\\x0fv\\tK?N\\x82EV\\x90\\xb2.?J\\xae\\xb6\\x05f\\xfbH\\xbfFk\\xca\\xf0\\xd1or?\\xda\\xd4\\x8d\\xa0\\x9cFV\\xbf\\x13\\xa8\\x89v\\xb0GT\\xbfR\\xda\\xb1\\xbc\\xaf0^?\\xb8I\\xbfgv\\xa30?\\xa0T\\xaa\\xfe\\xc8\\xa2K\\xbf\\xfc\\x87\\x85\\x13u2\\x1b\\xbfN\\xa2\\x85\\tM\\xc8<?\\xeet\\x84O9k\\x17?\\xb4\\xf5[i_\\x81:\\xbfDQ\\x05\\x89u\\xd7O? \\xe3\\xa7\\xcaAn\\x17?\\xff\\'\\x19\\x8aq+E?,k\\xbfe?\\xcfB\\xbf\\x9c\\x98K\\xab\\xef\\x17`?x\\xf1\\xbdkt\\xeca?\\xbc\\x9fh\\xb2\\x12\\x86T?\\xa2%\\xdel\\x87=O\\xbfh\\xa2\\xd6\\xa2\\xb3\\x06N\\xbf\\xfe\\xfc\\x82.\\xed\\xb8c\\xbf\\xd8\\xe72UTBM?\\xa5\\xa2z\\x15c\\x98P?F\\xdfk\\xe6\\xb3\\xc0^? \\xb7W_!\\x1aP\\xbf\\x98\\x8f\\xc2|\\xfa\\xd8=?\\x0e\\xc2\\xe6$\\xac\\x9dW?\\x1b\\xa4\"fh\\x85M?\\x13\\x0c\\x01\\x96\\xdf\\xd2X\\xbf\\xd2\\x18\\xbc\\x98\\xd4Hq\\xbf\\x90TY\\xe4)\\xe7G?\\x02\\x0b\\xf8}3\\xc7V?@\\xc4{\\xc8 ,O?4\\x16\\xd5f\\x02\\xd5Y?\\xe23\\xec\\x19\\x86\\xb5e\\xbf\\x8cA\\xca`\\x05\\x1en\\xbfH-\\x13\\x0em\\xd5`?\\xe34SW\\xc3\\xddm?\\x14\\xccRi\\n\\'h?\\xd8\\x97.\\x96E\\xcdC?]\\x02\\xd3\\xc8\\x93\\xccV\\xbf\\xd8\\x8b\\xdeH\\xb1\\xb7B\\xbf\\xd0\\xee\\rE\\xa6`#?\\xd6\\x99\\xf7\\xac\\x94\\xf7<\\xbfL\\xf6\\xba\\xe4\\x8f\\xdc??$\\xbd)\\x0b[/V?:R\\xd4\\x8d7\\x8fd?F@\\xfe~\\r\\xfb3?\\xecs\\xb9\\x93\\xd5\\xc3Z?#\\x1d<\\xea\\xe3\\xaeS?\\xa0\\xbaJ\\x17\\xd8\\xfe!\\xbf\\xb6\\x0brY\\x8bdY\\xbf`\\x16\\x83\\xb2\\x88ar?\\xfa\\xc9\\xdf\\x188D`?\\xc0\\x9b\\xc1`\\xfa\\xd8.\\xbf \\xe2\\x94\\x04\\xdbx6?\\xecq\\xe6\\x89\\xbd\\x96]?@\\xf7 4\\x8b\\xcb1\\xbf\\xe8\\x8b\\xbe\\xf8\\xe6~j\\xbf\\xb8_\\xde\\xd8\\xb4#\\\\\\xbf6\\\\\\xba\\xb5\\xbc\\xb2O?\\x00{\\x85a\\xa0\\x94d\\xbf\\xfe&f\\xd5,\\xd2d?\\xe0Qq\\xd2\\xa2w!? y\\xb6y`IA\\xbf\\xeb\\x80\\xd6J\\x07\\xfcv?\\x00H\\xf0D\\xd7\\xff\\x17?Lv\\x99z\\x9a\\xd6L\\xbf\\xe0\\xc7\\xdbO\\x85\\xb1=\\xbf|\\x1e\\xc0|\\xe3\\xcfV?\\xda\\xd4\\x8d\\xa0\\x9cFV\\xbfi\\x87M\\x91m\\x03\\x7f?P\\x82\\x95\\xc8\\x98\\xd8Y\\xbf\\x10\\xd1\\x8e\\xe4v{>?@\\xccm_$\\xd8;\\xbf\\x18\\xe2\\xda\\xa9\\x8a\\x16f?2\\x1c\\xdc\\xad\\xd4\\x8bX?h\\x8eJR\\xae\\xf3>\\xbf\\xda\\xf5\\xe7=\\xcf\\x1bB?\\x00\\xde\\xc8\\x8e]RG?,\\xf8@\\xa3\\x0e\\ru\\xbf\\x80\\xb0_F&\\x0bm?\\x10\\xf4\\xea4\\x94x?\\xbf\\xe0\\xb6\\xc3rj\\xc3I?\\xa0\\xca\\xfb\\xb4d\\xb0k\\xbf\\xf0\\x0e\\'\\xbc\\xe8o6\\xbfP\\xc4\\x95\\xca\\xde\\xebd\\xbf\\x00Q\\x92\\xce\\x05\\xdf\\xf1\\xbe@\\xe8\\x13w\\xc8\\xe9=?H\\xa4\\x11*\\xcbFy?\\xd4\\x84.&s\\xa9r?P1\\xd8\\nm(H\\xbf`\\x97\\r\\x81M\\xbbx\\xbfP!P\\xeet\\x96o\\xbf`A\\xed\\x19JSO\\xbf\\x80f#\\xc7:\\xd22?\\x88c\\xc0\\xa7\\xa4\\xf8I?\\xcc\\x80\\x86;\\xa8\\x8f]?,\\x03\\x17$c\\xd4\\x80?\\xa0\\x11\\xc8ry\\xa6r?X=\\x93W\\xb1JN\\xbf\\xa0\\xe7\\x91\\x01\\x91\\'w\\xbf\\xa02\\xb0\\x94\\xcd<\\x7f\\xbf\\x82\\xee!\\xb70Cp\\xbf\\x00,\\xda\\xfb\\xf9\\xc3@\\xbf\\xcc\\x146\\xa9BTv\\xbf\\xceU\\xe6E\\x16\\xc6o\\xbf\\xa0\\x8f\\x8f\\x9f\\xc6Us\\xbf\\x18\\x81]\\xb6\\xba\\xcew?\\xae\\xd1sYP\\x98\\x82\\xbf\\xc0\\x9e\\x0b)\\x99)R\\xbf\\xcc\"\\x10\\xca\\x83+d\\xbf\\x80]\\xd9\\\\\\x1enq\\xbf\\xa0\\x0e\\n\\x02\\xeePU\\xbfTv\\x10w\\xc4sq?\\x000`N\\xe2 \\r\\xbf\\xf4\\xe3\\xac%\\x13\\x12M?\\xc0\\xa9@\\x15\\x87H8\\xbf\\x80\\x04U\\xed\\x98\\x0cA\\xbf\\xd8\\xa8\\xa9\\xda8\\xd3U\\xbf`\\xf5\\xcb\\xa2!f[\\xbfzM\\xfetK\\t]\\xbf\\x80\\x89\\x9d\\xec\\xbd\\xf8\\x0b\\xbf\\xe0\\xacn\\x9e>E2\\xbfX\\x08\\x02\\x8d\\x92\\xe5b\\xbf\\x10,\\x18\"\\xcbO??\\xf8\\x81\\x04\\xa2\\x18\\x1c@?0C\\x91\\xf8\\xf1\\xaa`?t\\xeb\\xfc\\xaf\\xf9v@\\xbfl\\x8e\\x91\\xb5\\x84\\xc2@\\xbf@\\xa4\\x9a\\x95\\xef\\xf1j?\\xc0\\xe1\\xc8\\xc1&y_?\\xd0 *\\tP\\xe81\\xbf\\xf0K\\xeb\\t\\xa0]k?<\\xf8\\xdd\\x87\\xe12@\\xbf \\x08\\x82\\x1d\\x93\\xbd3\\xbf\\xc8a\\xbc\\x9d\\x8c\\xc15\\xbf\\x80?\\xe81\\x03W\\x11\\xbf\\xf0\\x04\\x06\\n\\x0c\\xa1\\x12\\xbf\\x13\\xa8\\x89v\\xb0GT\\xbfP\\x82\\x95\\xc8\\x98\\xd8Y\\xbf\\x0f\\xa67kJ\\x9d|?@\\xbd\\xb9{7\\xab9\\xbf`_/\\xc1\\xca\\xb3]?\\xcc\\x9b_\\xe3{\\xa5n\\xbf\\x08\\xcc\\x9e\\xf6\\xe6\\x1b+\\xbf\\x12\\x13\"\\x8d}\\xabN\\xbf1\\x057\\xe0u\\xd9:\\xbf\\xc0\\xa7>\\x1c*\\x8e!?\\xf0>\\x987\\x0e\"l?\\x02\\x00S7\\xce\\x9a\\x7f\\xbf\\xd2\\x181\\xfa\\xd1\\x14L?\\xf8\\x08\\x15R0\\xe8P\\xbf\\x98^\\xfbka\\xb7z?\\x82\\xf31\\xd8[Lg?\\xf6i\\xb8\\x95q6_\\xbf\\x08\\xfae`oHG?\\xf8P\\x98=4E0?P\\xb8\\x90\\xe8\\xe8\\xea`\\xbf\\x881\\xe6\\x8ft\\xe6j\\xbf\\x08\\x1a=\\xa0W%L?\\x00\\xda\\xef\\t\\xabJC?\\xa0\\x1c\\xaa\\xf3\\xbb\\xbdk?$\"\\xbf\\xdf\\xafQd?\\xf0\\xe1\\x89D\\xfd85\\xbf\\xe1\\x93 }\\xaet\\'?z\\xe2\\xb1t@sh\\xbf\\xf2\\xa9\\xab\\xcb\\xdb\\x88\\x80\\xbf\\xa0\\x91\\xe3osLi\\xbf.\\x9c!\\xd5+\\xeab?\\x00%`e\\xb5\\xccb?x9\\xc9jvpr?\\xe8\\xe3O(\\xc6\\x0fa? \\xaf\\xd3\\xdf\\x0c\\x1ce\\xbf\\x80,\\x1dKlBl?\\xf1S \\x95\\xf4]r?\\x00b@pA\\xaaQ?\\xd0c\\xe7\\x13!\\xd3b\\xbfjV\\x03l\\x03!_\\xbf\\xc4X\\xd86\\x18wc?2t\\xae\\xf3N\\xdce?\\x0crf M+g?\\x00\\x8a7\\x7f\\xd7\\x145\\xbf\\xc8o\\x1d\\xfd\\x85\\x1bn\\xbf\\x18V\\x01\\xc69\\xafr?\\xa8\\x10\\xc1\\xdc\\x12\\x8bE\\xbf`\\xbf\\xb6:,\\xddM?\\xa8\\x90!CE\\x0eT?\\xb0\\x13\\'\\x8e\\xd1\\x1bT?\\x08?\\x08\\x82(\\x91P?\\x80yG\\x1d\\xa8\\xbb\\x10?v\\xdc\\x90\\x97\\xdd\\x8aY?\\x9a4\\xcd^\\xd1\\xf5\\\\?\\x8csz\\x0c\\xe8\\xf7S\\xbfDJo\\xba\\xf4\\x17C?\\x9a\\xe09L\\x9f\\xccR\\xbf\\xd8\\x1b\\x0b\\xaf\\x91\\xaaT?\\xaem\\xb2\\x15\\xc5i9\\xbf\\x00,\\xf4\\xbc\\xcc#\\x05\\xbf\\x12\\x1at\\xe3\\xc5\\x01p\\xbf\\xb3\\xe2\\xa4\\x07\\xb8pp?\\xa0\\xa5\\xc7\\x82\\x8aR!?6\\x14F\\xc8\\x8d\\xdaq\\xbf\\x8c\\x9e\\xf6\"\\xddRB\\xbf\\xc0&o\\xf7}\\x068\\xbf\\x93\\xf0\\x89\\x8bc{T?\\xdc\\xbd\\t=S\\x0e8\\xbf\\x80\\x8d\\x1bF\\xb8\\x9f\\xf3\\xbeS\\xda\\xb1\\xbc\\xaf0^?\\x10\\xd1\\x8e\\xe4v{>?@\\xbd\\xb9{7\\xab9\\xbf\\x8dQP:\\xf2\\x1ew?\\xd0\\xdd\\xf7K\\xf9\\x0bp?`_\\xf0\\xb1\\x00i6?^\\x05&\\x00\\xbd\\x170\\xbf\\x00\\xaa\\xeb7\\xc4\\xb6\\xf9>}i`\\xb7\\x9e\\x10D?\\x00\\x8dQ (\\xe1,?\\x80\\xfb\\xad\\x98\\xe1\\xebJ?\\x80\\xa1\\xc6O\\x07\\xc4-?\\xd8\\x00\\x12\"\\x17\\xc7>\\xbf\\xe4}X3\\x7f\\xe8o\\xbf\\x18\\xdd\\xa5~\"\\xb2l?\\xf0\\x8cb\\xe2z\\xcan?8\\xbf\\x94\\xe0YPM?\\x90b\\xeb\\x00BRB\\xbf\\x80\\x94\\x18\\x96\\n+\\xe3\\xbe\\x10F\\xf4h\\x9e\\ri\\xbfp3\\xee\\x7f\\x05\\x85c?Dn\\x8d\\x1bvTV?\\xec\\x9e\\xaaGcrb?,x\\x84a6\\xccd\\xbf\\x18:{wyOR\\xbf\\x1f\\xa8\\xcaj\\xca\\x11a?\\xd4\\x862\\xa5r\\x8bW?@I\\\\,\\xb4\\x0e\\x00?,\\x7f\\xc9\\xee\\xbfku\\xbf\\x80T\\xc0^\\x0c\\xc9Z\\xbf\\x80\\x0cLB\\xef\\xc3Y?\\xe8%\\xd0\\xc4\\x8a\\xb2n?,\\x7f\\xc5\\xae\\x85\\xfbt?\\x00\\xc2\\xc3\\xa5\\x0e\"\\x18?\\xe0\\xd3\\x12\\xe4\\xb7\\x08v\\xbf\\x80!\\x97\\xd2\\xd9\\x15b?2\\xcb\\xb6xd\\x8dk?\\x00\\xfc\\xfb\\xd0\\x05\\x16P?\\x90\\xed\\\\\\x97P\\x9cW?^g[\\xf5\\x17\\x1cG?\\xac\\xc3\\x8fc\\x93\\xce`\\xbf !\\xc6\\x80\\xe5\\x18S?\\x95\\':4\\xbfno\\xbfX\\x0f\\xb4\\xdf#\\x83@\\xbfhP\\xf5V\\'tZ?\\xc0A/\\x13\\xacmF?\\xde\\x9e1\\xb9\\x92\\xc3P?\\xc8^\\xdb\\xc0\\xab\\xa7U?@\\x8399\\xc4\\x90-\\xbf@\\xe3(D\\x1cf;\\xbf\\xb0T]\\x08\\x88@]\\xbf0D\\xed]\\x94\\x14H?-\\xf9\\xc9\\x05\\x1e\\x1bq?\\x0c\\xef\\xd1\\xa1V\\xbbe?\\x8c4\\xf8}\\xd8\\xcap\\xbf\\xf4D=c\\xce\\ri?\\xb8\\xd8\\xc7\\x8f\\x15\\x00]\\xbfpA\\x13\\xad\\xabli?\\xb0\\x02\\xd7\\xd1\\x94\\xcaZ\\xbf\\x88!p\\x81S\\x927?\\xf4\\t\\x82\\xe7L\\xd6j\\xbf\\nB_A\\x9b\\x01\\x83?\\x00\\x8d\\xe4r\\x91\\xd9\\x17?\\xc0\\x9f*\\x06\\x12\\x1bC\\xbf\\xda\\x9b9\\xca\\xa0Ec\\xbf@\\xa2u\\xfeC\\xf18\\xbf\\xd8\\x9c\\xa0v}\\'c?T\\xab\\x87\\xb1p\\xadX\\xbf\\xf7A\\x1c\\xcf\\x80\\x0b`?\\xb8I\\xbfgv\\xa30?@\\xccm_$\\xd8;\\xbf`_/\\xc1\\xca\\xb3]?\\xd0\\xdd\\xf7K\\xf9\\x0bp?\\x04\\xe9\\x0bSn@\\x8c?`\\x02\\xdcR\\xc5\\x8bn\\xbf\\x061\\xf7tAj`\\xbf\\xd8\\xfd\\xec\\xb5&\\xdcM\\xbf\\xba\\xbb\\xe7\\xbe/dT?\\xe0\\xc5\\xba\\xe0\\x03\\xa8B?\\xe0l\\xa4\\x18\\xe86R?\\x88\\xf5?h\\xe0\\n`\\xbf\\xc0\\x17\\x80\\x96\\xf5?;?\\xb8:\\x0c\\xb5T\\xe4\\x8c\\xbf<oS\\xec\\xa1\\xc2\\x89?\\xb2\\xc4\\xf8\\x98\\xca]x?\\x009\\xe3\\xeb\\x17\\x1fD?\\x90\\x10I\\x9d\\x16\\xa7E\\xbf\\x98\\xff\\xb1\"\\x89\\x94k?`\\x9b@\\x801/n\\xbf\\xa0\\'\\xc0w,=h\\xbf\\x94+\\\\\\x0bYSk? \\xdd\\x1dJ\\xca:_?\\xc0{\\xc2\\xe1\\xfa\\x9ff?0\\xc0ZW\\xa4\\xf8e\\xbf\\xd0-\\xcdz\\xaf7_?\\x00\\xa3W\\x0b,\\x13\\xfc\\xbe\\xf2\\x1d\\xaeL)\\xb7u?\\x80j\\xf5\\xbd\\xd2.\\x7f\\xbf\\xd8N\\x8dL\\x8f\\x00\\x8e\\xbf\\x11\\'\\xce\\xde\\xd1rp?\\x80q+\\xf0\\xa5\\xd5\\x81?0w\\xe6|\\x12\\xa1\\x92?\\xb2\\xa3\\xe8\\xd8\\xdd\\xc9\\x80?\\xb0\\xff\\xcd._S\\x8a\\xbf(|\\xa2\\xf2\\xbe*}?\\xda`U\\xe7{\\x1be?@N\\x96G\\r\\xe7\\x8d?\\xfc\\x93\\xf6\\xee\\'\\xe7\\x80\\xbf(\\xed-E\\xd8\\xf9H?\\xd0\\x86R_s\\x9ar\\xbf\\xf8\\x92/m\\xf1\\x91v?R\\xf1u\\rM\\xa2\\x8d\\xbfPa\\xc9v\\x10\\xdcb?H\\x1f\\x99+\\x8f\\xc4j\\xbf\\xc0\\xdb\\xcc\\x99\\xe8t]\\xbf\\xbcK\\xf7\\x97\\xfc\\xbf\\\\?\\xe0\\xbe\\x95n\\xad\\xd1\\\\\\xbf\\x80oq\\x04\\x0e\\xc7F\\xbf\\x008DK\\x93\\xf8\\x01?\\x80N\\xcc\\xe7\\x80\\x1a7?\\xf0\\x0bS\\x1d\\x07bq?\\x80\\xe5\\x84\\xa9u<O?\\xc8\\xad\\xc6\\xf1\\xe0\\xc5f\\xbf\\xa0(\\xa4`\\x1a\\xe8W?P@u\\'\\x0b}T?\\x00V\\xde\\x15\\x17\\xafD?\\xdc\\xbb\\xf1C\\xd8\\xf5t\\xbf\\x03R7\\xf2\\xbc\\xe2Q\\xbf\\x00`c\\x11\\xb0\\xdc\\x0e\\xbf\\x80\\xf0[\\xbe\\xf6\\x98W\\xbf0d\\xa7\\xfd\\xce\\xa8@\\xbf\\xc0\\x9c\\xf5\\x00\\x84M+\\xbfP\\xd6\\xfd\\x9d\\x9d\\xf2R\\xbf\\xf1\\xbd\\x8e:\\x9b\\xf6\\x80?\\xf8v\\xc4%\\x93~E\\xbf\\x00Ti\\t\\xc7\\xc1#?\\xbe\\xf9\\xab?T\\xf9e\\xbf\\xd6$Z\\xd6\\x16NS?\\x9cT\\xaa\\xfe\\xc8\\xa2K\\xbf\\x18\\xe2\\xda\\xa9\\x8a\\x16f?\\xcc\\x9b_\\xe3{\\xa5n\\xbf`_\\xf0\\xb1\\x00i6?`\\x02\\xdcR\\xc5\\x8bn\\xbf\\xc69\\x1a<\\xb5D\\x8c?l\\x08\\x92d\\xba\\xcfT?\\x96\\xa1\\xcb\\x05\\xee)S\\xbf\\xe0\\xe0o@z4\\xe2\\xbep\\x10\\x1f\\xa7\\xd0P]\\xbf\\xc0\\x89\\x1fE\\xb2\\x8ff\\xbf\\xd8\\x85\\xea\\xd85Ey?\\x0e}\\x16Jz\\x8ar\\xbf\\x14@\\x13\\xbb\\x96\\xb0\\x87?&\\x91Z#\\x94\\xef\\x96\\xbf\\x97\\xd0\\xca}\\xa2i\\x82\\xbft\\xc1\\xa6\\xa3\\xb9\\x17k?\\x0eh/8\\x89\\x0ef\\xbf\\xfc\\xd1#j\\xc8\\x0ef\\xbf\\xb8\\xd4\\xac8\\x80\\x02b\\xbf\\xc8I%f\\x11\\x1fu?\\xd8\\x84\\x8d\\xb2rWj\\xbfP\\xe5U>\\xb4\\x95o\\xbf`\\xdbl\\xad\\x07\\xe5_\\xbf ti\\x85\\xce\\rj\\xbf\\x00\\xf5v\\xf8\\x17mV\\xbf\\x1e\\x14\\x10\\x033\\x0b)\\xbf\\xf4\\xd2\\xe9\\xa7\\xbd\\xbaY\\xbf\\xb8J4\\xbe\\xf4\\xd0v?\\xa0\\x19\\x15\\xae\\x84\\xc5}?P\\xd3rL\\xf9\\xb7<\\xbf\\xd4\\x19\\x8f9\\xceD\\x8c\\xbf0\\xb6\\xfd\\x9d\\xfa-y\\xbf \\x89G=\\xca\\xc1K\\xbf@\\xb4\\xc4p\\xca]j?@\\x14\\xf1\\x13\\'\\x9aa\\xbf\\x1eB\\x8a\\xd7l\\xf3`\\xbf\\xa0\\xdd\\x8cx\\x96\\x0fr\\xbf\\xa0\\xb1716\\xac`\\xbf^\\xa4\\x1a\\x96C\\x13\\x8e?\\xf8\\xa6\\xb7\\x16\\xb4\\xdd`?\\x00\\x9d\\x1c\\xd9\\x9a_6\\xbf\\xfc\\xf09V\\xceG\\x96?\\\\\\xe2e\\x9fS\\x92m\\xbf\\xe0T\\xabh\\xaf\\xdcX?\\xd8\\x0b\\xfd\\xb89\\x85v\\xbfJ\\xa8\\x18T\\xa4\\x9ci\\xbf\\xa8\\x07\\xce^y\\x1av\\xbfP\\x00\\xd6U`\\xeb|\\xbf8\\xdalc\\xad\\xa9b?\\x0c\\x14!\\x05\\xec\\xc2w?|\\xd5\\xa1\\x9dL\\x01V\\xbf\\xcb\\xf4\\x8bvo\\x1fA\\xbf@\\xad\\xb8\\x0f\\x9c\\xf3\\xff>^\\x9e\\xf8\\x02\\xdeNY\\xbf`\\xe9Y\\x058\\xd4\\xf9>P2~\\x9c\\xb5\\xec\\x0f\\xbf\\x88]\\xd8=\\xea-D?\\x98U\\x9b\\xff?\\xb9:\\xbf\\x80\\'\\xae\\xb5\\xf0\\xfa\\xda>=\\x002B\\xc0\\x8eT?\\xeee\\x9c\\r?\\xc9;\\xbf\\x1c\\xbe\\xb4\\xd6\\x18v*\\xbf\\x80\\xd5w\\xaaV\\xbeR?@\\xcdT:P\\xd2[?\\xa0\\xc2\\xccV)v,?\\x99Y&\\xb0\\xa4QL\\xbf\\xda\\x1b\\xce\\x1d\\xeb\\')?\\xe6\\x846j\\xfd\\xbe*\\xbf\\xfc\\x87\\x85\\x13u2\\x1b\\xbf2\\x1c\\xdc\\xad\\xd4\\x8bX? \\xcc\\x9e\\xf6\\xe6\\x1b+\\xbf^\\x05&\\x00\\xbd\\x170\\xbf\\x061\\xf7tAj`\\xbfl\\x08\\x92d\\xba\\xcfT?\\x8cT\\x13pi\\xe8h?\\x0cd\\xb6\\xff\\xce\\x18:\\xbf\\xc8G\\xe1\\x85*\\xe6,\\xbf\\x826u\\xad_\\xa5Q\\xbf<o\\xc2)\\xb2\\xaaH\\xbfV\\xa8\\xf4\\x1c\\xfc\\xc1Q?\\xad\\xa2\\t\\xc6F\\x17K\\xbf\\xaf-\\xc5\\x82\\xef\\xf6c?\\xa8T\\xd4\\xca\\x9f$f\\xbfFC;\\xc1\\xaf\\x00`?\\x80\\xc1/\\x88\\xf2\\xd4\\xcb\\xbe\\x988g\\xf0\\x03i=\\xbf\\xc0\\x10^K\\xbbS\\xf9\\xbeF \\xa8\\xf5V\\xf3p?\\xe2\\xc8I\\xccA\\x10]?L\\xae\\xb9\\x0c\\xdcW6\\xbf!}\\xc0\\x95w\\xber\\xbf~\\xb6\\xa4=\\xd8\\xc0[\\xbf\\xd8\\xe7-\\xc1qKc?\\xe4q>?%RQ?&\\x00\\xaf\\xfaie\\x1f?\\xf3\\xbd\\xe3I\\xb1\\xd0B\\xbf\\xdfB\\xb84c\\xc5a?P\\xfbQ/u\\x97C?2\\x90\\xc4\\xa2;\\x7fR?9\\xa4\\xcc\\x121\\xeek\\xbf\\xcc\\xb7F\\x81\\xf8\\xec[\\xbf\\x96\\t5\\xb1V\\xcac\\xbf@\\xa7\\xa6T|\\x03-\\xbf\\xe0i\\x0br\\xa1\\x0bc\\xbf\\xc0\\x9f\\x8d\\xc5\\xbed*?\\x00H\\xceA\\x04\\xb3\\x15\\xbf\\xc2\\xe6\\x8e\\xfb\\xe0Za?\\x9b\\x04l\\x80\\xd1&z\\xbf$\\xb9\\xae\\xd2\\x92\\x85\\\\?D\\xa1\\x16c\\x06\\xa8C?\\x9dUz\\x94\\xf3\\x07L?IM\\xe76\\xad\\xc5R\\xbf\\xf0\\xb0\\x0c\\x87\\x16:.\\xbfi\\xabe\\xb8[\\xa8\\\\?E\\xb0U\\xf8l\\x9c>\\xbf\\xf0\\xb5\\xdf\\\\}s*?\\xf4\\xdd\\xb9\\xbe\\xe6\\xa15\\xbf\\x00\\x07\\xf0q\\x8e\\xc4-?@|\\xb0N\\xd2\\xf60?p\\x04\\x7f\\xa2z\\x86@?\\xc4\\xe3\\xa7\\xebK\\xc8[\\xbf\\xd06e\\x0c\\xe6\\xc2I\\xbfv\\xbb\\xdc\\xbb\\xec\\xe0d?\\xa3r\\xf5\\xb4\\x9c\\xe5]\\xbf6#\\xcd\\x19\\xb0\\xf0@\\xbf\\xa05\\xd9\\x1fT\\x84T\\xbf\\x93[~\\xd4\\x9a[^?\\x06\\xfc\\xa9\\xfd\\xe0\\x8bK?\\xf8\\xf3@\\xc6\\xa3\\xb7R\\xbf\\x82\\xeb\\xf3~\\xcc\\x0eg\\xbfD_\\xd3\\x00r\\xae,?\\x88;\\x80\\x98\\xae\\xa1Z\\xbfV\\xd7\\xe9\\x043Jf\\xbf\\xd0\\xf2\\xab\\xd3\\x99\\\\\\x0b?\\x89\\xedu|\\xdd\\xda9\\xbf]\\xa1\\x15<q6d? \\x84\\x88\\xc7.\\xdfD\\xbfN\\xa2\\x85\\tM\\xc8<?h\\x8eJR\\xae\\xf3>\\xbf\\x11\\x13\"\\x8d}\\xabN\\xbf@\\xaa\\xeb7\\xc4\\xb6\\xf9>\\xd8\\xfd\\xec\\xb5&\\xdcM\\xbf\\x96\\xa1\\xcb\\x05\\xee)S\\xbf\\x0cd\\xb6\\xff\\xce\\x18:\\xbf~\\xa4\\x08\\x8a1\\xa6l?Fo\\xa2\\xb0\\x99T(? \\xf9\\x8d\\x9a\\xbc\\xdd@?\\\\\\x07)\\xb5\\xd6.J\\xbfg\\xdf\\t\\xab\\xfb\\x07U?\\xc4c\\xa4\\xf7R\\xa8\\x12?\\xfe,f&\\xd9\\x18Y\\xbf`\\xf7\\xcaJh\\xab\\\\?\\xd4\\x9e\\xe5\\xc3k$M\\xbf\\x90\\xb0\\xd8M\\xb6\\x03Q\\xbf\\x7f\\xa0)Y\\xa6\\xefN?\\xef\\xfbow\\x94\\xc1R\\xbfdu8x\\x10\\xeed?\\xc0\\x04L\\xc90>Q?@{\\xbe \\xe1n\\x1e?\\xd0T\\xa6\\xe57Zl?*7\\t\\\\?\\xfcQ\\xbf\\x18\\xd2\\x92P\\xd3\\x86>\\xbf\\xb9\\x06h\\xb5\\xdexO\\xbf\\xe8|\\xcei\\x83<\\xfe\\xbe\\xbe\\xc4\\xa8a\\x83\\x80`?\\x0c\\x15\\xaa\\xeb\\xaacf?\\x90\\xf3vL\\x19\\x06@\\xbfW\\xf7\\x1c\\xf1n\\'h\\xbf\\xb9\\xec\\x8eh\\xa7\\xc4s?D\\xe1}+\\xc3@d\\xbf\\x80[\\xa2\\xa9\\x8eRF?\\xc0q\\xab\\x8dz\\xa6X\\xbf\\xf2F\\x81\\xdd\\xd3y]?\\x90\\x82e\\x19\\xceDM?\\xd8\\xbc\\x1dQ\\x95~s\\xbf(q\\xbe\\xf7\\xcaOW?\\xcc\\xa6\\t\\xa4\\xbb\\xe0\\x07?,\\xe1\\r:\\x01\\xc3H\\xbf\\x88\\xa3\\x9b#\\x00\\x1e4\\xbf\\rZ\\x15\\xcby\\x1fm?\\xa0\\x8a0\\xfa\\x91\\xa9\\x16\\xbf\\xfe;\\x04T\\x86\\x07G?\\x00\\xb6h\\xa5(:\\xe1>\\\\)K\\xc4W\\xce@?\\\\$\\xc5\\x9c\\x81+N?\\xc8\\n\\xc2g\\xb7\\xb4D?\\x80\\xb4E\\x1b\\xff\\x0cH\\xbf1\\x1b2\\xb4\\xf5\\xe9b\\xbf\\xc4\\xda\\x12\\xaf])B\\xbf\\xd0Ho\\xa3\\x1b|\"?F\\xfc\\xbf C\\xba/\\xbf\\x14\\xf2\\xd6\\xe2\\xfc\\xcaP\\xbf4\\x8f\\xed\\xc6Gd3?\\xac\\x86\\x1e\\xd9\\xf6xJ\\xbf\\xbb\\t]\"\\xc6;S?n\\x10\\xcdS\\x81E\"?\\xecpjp\\x14\\x07@?\\x9a^\\xf8\\x10\\xc0\\x91=\\xbf\\xbeR\\x86/\\x01\\xaaI?c\\x92\\xd7\\x11\\xc7\\x88\\x12\\xbf\\xe0\\xa8\\x80\\xff\\xe9Z\\xe3\\xbe\\xd8\\xcfE\\'\\xa0]F\\xbf\\xa4\\xa2\\xa7!\\xe2\\xd5\\x00\\xbf\\x84\\xfc\\x84\\x04t?<?\\x12\\x11L\\xf2\\x99\\x9cA\\xbf?\\n\\x12\\x94nq]?\\xedt\\x84O9k\\x17?\\xda\\xf5\\xe7=\\xcf\\x1bB?0\\x057\\xe0u\\xd9:\\xbf}i`\\xb7\\x9e\\x10D?\\xba\\xbb\\xe7\\xbe/dT?\\xe0\\xe0o@z4\\xe2\\xbe\\xc8G\\xe1\\x85*\\xe6,\\xbfFo\\xa2\\xb0\\x99T(?\\xbeZ\\x07T\\xfb\\xd8a?P^{\\xd3\\xe1\\xa6>?S7\\x9a\\xc8\\xbfjG\\xbf&\\xba\\xd3\\x1e\\x15\\\\G?\\xb5\\'\\x1c4Md3\\xbf\\xff\\x81\\xea\\x0c\\xa8\\xbfY\\xbf^\\xb1I\\x8c)\\x93P? \\xda}b\\x01\\xb3\\xed>b\\xb7Zf\\xf37b?~p\\xee\\x9d\\xfc\\x8f\\x13\\xbfZ\\x10\\xda\\xe9:i*\\xbf\\x04\\x0fa\\xcbT9W\\xbf#Z\\xe7\\xfe%\\xf5a?\\xbe\\x1c\\x87\\xfa\\xff}P?q\\t\\xc3\\x1f\\xcc\\x183?S\\x01\\xcf\\xae\\xbc\\x1dK?\\x11R\\x11\\xac@\\x93X\\xbf\\x92\\x84\\x8f\\x05\\x08\\x08F?+\\xbc4\\x8e\\x85\\x12D?\\xf8\\xd3\\x92xl\\xfeC\\xbf\\x8c\\x9e\\xe4\\xf5\\x8a\\xffS\\xbf\\xe0\\x8e\\x9a\\xb5\\x04\\xdcT?\\xc99\\xc9\\xf7\\xfa\\x86T?\\xb0\\xfa3~\\xc5\\x14:\\xbf\\x0c\\x92\\x02G\\x92\\xcfl?I\\xcc\\xc0\\xc3\\xf5\\x02[\\xbf.\\xa9\\x14\\x12\\xa2}l\\xbf\\x85\\x98\\xae\\xf3\\xcb5W?\\xeeU\\xf0\\xc9\\x7f\\x06F\\xbf\\xe0\\xa4\\xbb\\x8e\\xf6\\x17J?\\x89\\x9d\\xa8\\x1c\\x9e@N\\xbf\\x8e \\xc5\\x94\\x10\\xf8Q\\xbf\\xda\\xac\\x93%\\xf3\\x01M\\xbf\\xe6\\x88D4\\xa7<S?\\xa2\\x06\\xa7#\\xc7\\xd2k\\xbfO\\xa7\\x99\\x11d\\x9a(?-\\xc0\\nt\\xe5\\xa75?\\x07\\xe4A\\xf8q\\x06E?\\xfc\\x87#\\x86\\xa9{4?@=\\\\\\xf1i\\xd6\\x08\\xbf\\xea\\xd6\\xe9\\xc1=S\\x16\\xbf\\x02\\x96M9\\x80V$\\xbf\\xe9\\x12\\xc4\\x98\\xc9\\x86B\\xbf\\xb0zT\\x13\\x1c_1\\xbf\\x80\\\\\\x7f5\\xcb\\x90,?\\xa0\\xa0\\xb2d\\xbfDH?\\xc0\\x9f/\\xcdw\\xba)?\\x00^\\x9by\\xceH\\xe4>\\xa0\\x17\\xcd\\xcc\\x0f\\x08J?`8\\x90}\\xeb\\x1c]?\\xae\\xd83:\\x9dGH?\\xda\\xbc6\\xad\\xd0\\x8fJ\\xbf\\xd0>f\\xe3\\xd9od\\xbf\\xd0O\\x1e\\xe9\\xb0l=\\xbf\\x00L\\x02~r\\xfb\\x05\\xbfH\\x9fQ\\x1c\\x0b9h\\xbfDP\\xb9^\\x9e\\x1b@\\xbf@9\\x1fU\\xfc\\xfa\\x1c?\\xa8\\rb\\xeaw\\x8cB?\\x98gm?\\xbbhI\\xbf\\xdc\\xd3\\x18\\xceD\"J?\\xb4\\xf5[i_\\x81:\\xbf\\xf0\\xdd\\xc8\\x8e]RG?\\xc0\\xa7>\\x1c*\\x8e!?\\x00\\x8dQ (\\xe1,?\\xe0\\xc5\\xba\\xe0\\x03\\xa8B?p\\x10\\x1f\\xa7\\xd0P]\\xbf\\x826u\\xad_\\xa5Q\\xbf \\xf9\\x8d\\x9a\\xbc\\xdd@?R^{\\xd3\\xe1\\xa6>?G\\xc5\\xdd\\xc7\\xcd8x? \\x82\\xfc\\xd4\\xcd$e\\xbf\\xc0\\x8b]L\\xaa\\xd2Z\\xbf\\x88\\xea\\xae\\xa7?\\xd5d?\\xa0\\xb2\\xae%\\xe7\\xceX\\xbf\\x90\\xdd\\x94\\x0b\\xc0\\xebn?\\x80a\\xf6\\xaa\\x92\\xdd$?\\x8cL\\x1d#\\xb3\\xa2@?\\xb0\\xf4\\xf8\\x15r\\x80I\\xbf\\xb07#j\\x85\\xac*\\xbf\\xe8c\\xf6%t\\xf7n\\xbf\\xa0\\r\\xe4\\xa0\\xd9\\xb3Q?\\xc0\\x07AI\\xb4\\xc88\\xbf\\x18|w\"\\xf8\\xffp?\\xc0\\xb9\\x02\\xa63\\x8e2?P:y\\xb2~7b\\xbf\\x94\\xa6\\x03\\x85\\xa4\\xe4U\\xbfj\\xdc7\\xae2QD?l\\x89\\x1d\\x88\\xba\\xb0V\\xbf\\x00j\\xa7J\\xe8<_?\\x90\\xb3Ms\\x82&z?\\xa0\\xbf\\xde\\x8a\\xa7\\x9co\\xbf@\\x01\\xe1\\xb4\\x8c\\x85l?\\xa0\\x191V\\x85\\x90s\\xbf\\x18\\x05\\xed9\\xb3 p\\xbf\\xe0_\\x84~\\x9f\\xe6\\x83?\\x80\\xf47\\x02\\xf5\\x94p\\xbf\\x80\\x004! \\xc9e\\xbf\\xc0\\x86N4Z\\xbau\\xbf@c\\xa5\\x83\\x03\\x1fD?`\\xedl[\\xbcga\\xbf\\xe0\\xf0h\\xa9b\\x87G\\xbf`TH\\xe66\\xa37\\xbfq5\\xc0d\\xac\\xbfd\\xbf\\xf8P\\xb4\\x00W\\x8dU?@\\x91\\x93r\\x08\\xa6H?\\x80rn\\x93\\x0e\\x068\\xbf\\x80\\x14\\xa7\\x9d\\xd5T<?\\x00X\\x86#\\xdf\\x95\\r\\xbf\\xc0\\x1a\\xf2\\ta#N?\\xa0|\\x9a\\x0bRi1\\xbf\\xc0\\xf4\\xfa\\n?\\xac6\\xbf0\\xbf\\x90\\xd6X0w\\xbf\\x00B\\xb7\\xb6\\xd80\\xfa>`RieJ\\xf0U?\\xcc\\xbfi?\\x1e\\x02p\\xbf\\x80l\\xdc\\xec\\xd2\\xf3:?\\x00\\x1c\\xb2\\x11\\x89^!?\\xe4\\xc8)\\x86\\xc7\\xadt? 0E\\xfa\\xf9\\x1c\\x00?\"\\xb79\\xa6i\\x10P\\xbf\\xec\\x8bk\\x01o\\x83x?\\x9aQ\\xda\\xc2/\\x10e?\\xe0\\xec3\\x1d\\xf0\\xe67\\xbf\\x1c?%?\\xba\\x93p?\\x07\"\\x0f\\xcb\\xa0Bb\\xbf\\x00\\\\\\x1a\\xa75Q\\r\\xbfHY\\x87\\xa9\\xee\\xee\\\\?\\xa0f\\xc62 \\xc6#?\\x86\\x1fkq\\xab\\xdc`\\xbfPQ\\x05\\x89u\\xd7O?,\\xf8@\\xa3\\x0e\\ru\\xbf\\xf0>\\x987\\x0e\"l?\\x80\\xfb\\xad\\x98\\xe1\\xebJ?\\xe0l\\xa4\\x18\\xe86R?\\xc0\\x89\\x1fE\\xb2\\x8ff\\xbfDo\\xc2)\\xb2\\xaaH\\xbf\\\\\\x07)\\xb5\\xd6.J\\xbfS7\\x9a\\xc8\\xbfjG\\xbf \\x82\\xfc\\xd4\\xcd$e\\xbf\\xecz\\xf2\\xe8\\xe3H\\x89?4\\x90\\xcb\\xa8\\xaaPt\\xbf\\xaa\\x14\\x7f3hzT\\xbf\\xc0R*:&\\xd1[?\\xe0\\t\\x10\\x90\\x1e\\x9fs?LZ>H\\xad9o?\\xedD\\xbd\\x08\\xcf*v?hz4\\xdc\\x8e|_?\\xf8\\xa5u@\\xf2_\\\\\\xbfd8)7o\\x81\\x83\\xbf\\xc0h\\x1e\\xce\\xc9\\xf0\\\\\\xbf0\\xce\\t8\\xdfrP\\xbf\\xf8\\'b\\t\\x1b6\\x7f?\\x00\\xbb\\xb4V\\x97\\xc5D\\xbfp\\xa8\\xaaa\\xa2\\xa8h?\\xac\\x90ex1}o?(l\\xbem\\x87&[\\xbf\\xb6\\x1b\\xfckp*\\x7f\\xbf<b=+\\xbe\\x05\\x8e\\xbf\\x00\\xd8.\\x81?\\xac/? \\x0c[\\x07\\x95Fn?\\xf8mR\\x14\\xa8V\\x88?p\\xebj\\xad\\x8b>~?Xw\\x9f)l\"n\\xbf\\x80\\xcf[B\\xfd\\xbbv\\xbfX{\\x87\\xfei\\xe1|?A(\\xbdB\\xe4\\n|?x\\xf4\\x1e\\x18\\x96\\xfb\\x92?\\x10\\xa3\\xa0\\xfb\\xae\\x0ce\\xbfB.\\x1cz\\x8dY~?H1\\x9f\\x89\\x0fUe?\\xf0\\x91\\xa3\\xb3\\x89\\x12V?\\x14\\xd4x~\\xc9\\xb5j\\xbf \\xf2\\x9aQ\\xfe\\xc5L?\\xb4fujL\\xb1s\\xbf\\xe0RV!\\xd8\\rj?\\x00@\\xc9Y#[\\x97\\xbe$i\\xb8\\x9a\\xa5rq?\\x00\\x1eZ\\x80Pf`?\\x00\\xa4\\x19)gqF?@LUP\\xa5\\x9d@?\\xd2\\xaaG\\x1dj\\xf4`?\\x00\\xac\\x07C\\xd2q\\x1a?\\xe0\\x01<s\\xe7\\x823\\xbfh-b\\xc6\\xc0\\xc1T?\\x00PXS\\x83\\xd56?\\x98\\x9d\\xc7\\xb9\\xd2\\x95R\\xbf\\xe0ly\\xeehGj\\xbf,5=\\x13\\xf7\\x042?\\xcc\\xb8O\\x10\\x9f\\xd4T?\\x9c\\xd6\\xb6\\x16\\xe9\\\\f\\xbf\\x00Z\\x7f\\xee\\xab\\xd9W\\xbf@\\x9e\\n\\xbd\\xe9\\xad2?\\x80\\x92\\xba@\\x054_\\xbf*\\xd7;I\\x8am]?\\xa0b\\xcb\\x9c\\xf8\\x07<?P\\xec\\xbd \\x081??8\\xdd\\xcbe\\xab\\x89G?@\\xd2\\x17cD`A?\\x00\\xe3\\xa7\\xcaAn\\x17?\\x80\\xb0_F&\\x0bm?\\x02\\x00S7\\xce\\x9a\\x7f\\xbf\\x80\\xa1\\xc6O\\x07\\xc4-?\\x88\\xf5?h\\xe0\\n`\\xbf\\xdc\\x85\\xea\\xd85Ey?V\\xa8\\xf4\\x1c\\xfc\\xc1Q?g\\xdf\\t\\xab\\xfb\\x07U?&\\xba\\xd3\\x1e\\x15\\\\G?\\xd0\\x8b]L\\xaa\\xd2Z\\xbf4\\x90\\xcb\\xa8\\xaaPt\\xbf0\\x8c-\\xea\\x81\\xb4\\x8c?{\\x14\\xb6\"\\xba\\xb6e\\xbf\\xc0\\xc4\\xb7\\xc0\\xda}9?\\x9c\\x01\\xb3df_\\x86\\xbf\\xf4\\xfe\\x07\\x8c\\xfbEl\\xbf\\xc8\\xd1 dy\\xb0N?\\x80\\xaf\\x1a\\xbb`\\x95\\x1c\\xbff%\\xdc\\x10\\xb9,W?|\\x88\\xf1\\xbfy\\x93{?\\x10g\\x15\\xc5\\xbfln?p/\\xba%V\\x04D\\xbf\\x90\\xf8\\xe3m<\\x89h\\xbf\\x10f\\xb3G\\x04\\xc2t\\xbf\\x88P#er\\xb2g\\xbf@A{\\x8f%SC?\\xf6bA*\\xaa\\x11>\\xbfW\\x07\\x90\\xc6&\\'\\x82?\\x14f\\xbd\\xb4\\xf9k\\x8d?\\xa0u\\x1f\\x9dq5d\\xbf\\\\\\r\\x9f\\xda<\\x9fT\\xbf\\xa0\\x91\\xe9\\x1bC\\x14j\\xbf\\xe0\\x01o\\xe5\\xc5\\xf5f\\xbf\\x10\\xe4)46G\\\\?\\x00n-\\x0e\\xd1\\tN\\xbf`7g\\xa2\\x93\\xe4z\\xbf\\x9b\\xd6\\xe0\\x19\\xc8x{\\xbf@\\xa5\\xcd\\xed\\xcf\\x98f?\\xe0\\xcb\\'\\x171\\xabj?\\x009\\x19\\xcc`*K?\\xf8\\xd7C\\xfa\\xf8\\nb\\xbf\\x8c\\x8bm\\x93\\xc1\\x7fo\\xbf\\xc4\"\\x9fT\\x19As\\xbf\\x80\\xeb8\\x03\\xab\\xdc@\\xbf\\x90\\x9a\\xc8\\xec\\x96\\x9bu?\\xaa@BB\\\\q\\x82\\xbfH\\xcd\\x1b%\\xe7\\x82B?x^6f\\x9f~l\\xbf|Jz\\x05\\xa7\\xaeq\\xbf\\xd8\\xc2@\\x84s-X\\xbf\\x80\\xff$\\xa6Z\\xb74\\xbf\\x8b\\xdeAT\\x1a\\xdbQ\\xbf \\xe7\\xb3\\x96\\x95\\xeaI\\xbf\\x08\\x19\\xf2\\xb4\\xa8nA?(*`&^J;\\xbf\\xe8U2\\xe1.:(\\xbf\\xa0\\xe5+lu\\xb68?4\\xd9\\xa9M\\x0b\\xfb]?@\\xa4\\x93Z\\xd2~\\x05?\\xfc\\xfb1L=\\x11\\x1b?\\xd2\\xd7k\\xe4\\xed\\xe5a\\xbf\\x00V)\\x06\\x1c$-\\xbft|IJ\\x9c\\xc66?\\xcdlV\\xd9\\xeeCa\\xbf\\xb4\\\\\\xdeW\\xc6\\x9cc\\xbf\\xae\\x02\\xa8\\x9eL\\xbcE? \\xdf9\\xd6\\xcd\\x19\\x1b?\\xf80\\x8f\\xcc,\\xfa\\'?\\xf2\\x02\\xae\\'\"-<\\xbf\\xff\\'\\x19\\x8aq+E?\\x10\\xf4\\xea4\\x94x?\\xbf\\xd2\\x181\\xfa\\xd1\\x14L?\\xd8\\x00\\x12\"\\x17\\xc7>\\xbf\\xc0\\x17\\x80\\x96\\xf5?;?\\r}\\x16Jz\\x8ar\\xbf\\xad\\xa2\\t\\xc6F\\x17K\\xbf\\xc8c\\xa4\\xf7R\\xa8\\x12?\\xb5\\'\\x1c4Md3\\xbf\\x88\\xea\\xae\\xa7?\\xd5d?\\xaa\\x14\\x7f3hzT\\xbf{\\x14\\xb6\"\\xba\\xb6e\\xbf\\xe1\\xff\\xe1\\x8eg\\xday?\\xd2\\xdbZ@\\x8e9b\\xbf\\xa5\\xc5wQ\\x9ds\\x7f?\\x7f\\x18\\x14,\\xa3\\x17c?\\x1d\\x0e\\x88\\x17\\xb7\\xa8l\\xbfL\\xb5\\xdd\\x1c\\xe9L6?\\x14\\xfc\\xfe[\\xbcI(?:#\\x83\\xe6\\x9e\\xf8b\\xbf\\xc2\\x96i\\xdb\\xcf\\tg\\xbf\\x8c\\xf1\\x90h\\xb1\\xe50\\xbfJ1w\\xcd\\xdchk?h\\xeb\\xab\\xabT\\x9aK?j\\xdd\\xf4\\x9e\\x00\\xfaf?>%\\x01;d\\xf8]\\xbf\\xf8oO\\x97H\\xad\\xe6>1\\xb68\\xe1E\\xabZ?\\xdc\\x0fP\\xf5\\xaa\\xfck\\xbf(\\x8f\\xe4\\xa0N\\xcd^?\\xa8a^g_kq\\xbf\\x80\\x1d\\xda\\x0e\\xd5\\'p?\\xf1\\x06\\x0e\\xa7Z\\xb9~\\xbf\\x10\\xa1\\xd2w\\xa4\\xebA\\xbf\\x00\\xa6\\x9f\\x95[\\xccQ\\xbf,R,\\xba\\xd7ce\\xbf\\xb9e\\xdb\\x91\\xa4 {\\xbft;qeyOp\\xbf\\xe4U\\x89S\\xaeWa?\\x8d\\xa9\\xe9\\xb6R\\xd3\\x80\\xbf\\x04\\x9e\\xa5\\x9d\\xc7;_\\xbf\\x1du\\xdd\\x01,\\xda`\\xbf6\\xc4y\\x84\\xb7\\xc2\\x80\\xbf\\xd8\\xf5\\xde\\xc2sS_?\\xec\\xdd\\x8b\\x01I\\xdaZ?\\xdb\\x06\\xe6\\xc2\\xa8\\x06e?\\x10\\xd4\\xa6<\\x99kR?\\x94\\xc4\\r\\xb5\\x1cWU?\\xf56\\x96\\x94\\xfa\\x8ei?\\xf9!\\x1f\\x12\\x8d\\'R\\xbfT%T\\x0c\\x88Ic\\xbfY\\x08Z\\xdbK\\x9cj?\\x0b\\xde\\xc4\\x0f\\x16\\x96i\\xbf=juK\\x81\\x86v\\xbf\\x96\\x85$\\xb7\\xbd\\xa6p?P\\xb6ee1\"@\\xbf\\xf6g\\x98\\xce2\\x9fh?\\xd0S\\xe4\\xcch\\xec}\\xbf\\x9c\\x01L\\xc9K\\xd1\\'\\xbfH~M\\xb5\\r8R\\xbfX\\xc1\\xc8A\\xee\\x15s?6\\xc3\\x944\\xae/w\\xbf@R\\xef8bl>\\xbf\\xc0Z\\xc9\\xd6C4h?k$\\x944\"\\xea\\x85?\\xa0G(\\xa6c\\xfd9?`3$\\x94u\\xc08\\xbfrZ)\\xaf\\x89Tc\\xbf\\x08\\xe3\\xaeP\\xd2f5?,k\\xbfe?\\xcfB\\xbf\\x00\\xb7\\xc3rj\\xc3I?\\xf8\\x08\\x15R0\\xe8P\\xbf\\xe4}X3\\x7f\\xe8o\\xbf\\xb8:\\x0c\\xb5T\\xe4\\x8c\\xbf\\x14@\\x13\\xbb\\x96\\xb0\\x87?\\xaf-\\xc5\\x82\\xef\\xf6c?\\x00-f&\\xd9\\x18Y\\xbf\\xff\\x81\\xea\\x0c\\xa8\\xbfY\\xbf\\xa0\\xb2\\xae%\\xe7\\xceX\\xbf\\xc0R*:&\\xd1[?\\xc0\\xc4\\xb7\\xc0\\xda}9?\\xd2\\xdbZ@\\x8e9b\\xbf{\\xcf\\'\\x06^\\x1f\\x9f?\\xf0\\xc5TUWk\\x9b\\xbfTx\\xdc\\x17\\xa0!\\x89\\xbfJ\\xad]\\xcb\\x9b\\x81{?\\x80\\x95CjQ\\xe7\\x1d\\xbf\\n\\x1d\\xb7\\xb7>a\\x7f\\xbfh:\\r\\xa7\\x0e\\xed\\x81\\xbfP\\x16)\\x8c\\xc2qo?\\x08R\\xea\\x13\\xe3f|\\xbf\\xa0/\\xd6\\xeb9\\xdaP?\\xa8\\x11\\x92\\x95\"\\xd8h?\\xe0\\xe0\\xd5\\x03\\xe4\\xcb~?\\x8a\\xfadIT~n\\xbf\\xd9\\xc0 \\xd5\\xc6,b\\xbf\\xd0us\\x87\\xf50\\x8d\\xbf\\xb8\\xa1\\xcc\\x17\\x06Bp\\xbfD#s\\x95\\x89\\xa1\\x98?nu\\x8a\\x1c)N\\\\\\xbfxk\\x14\\xb2\\xea*\\x84\\xbf\\xfe\\x18\\xdcD\\xa2#\\x95\\xbf\\x83zTT\\x00b\\x95\\xbf\\xf0$c\\xf3\\xf4\\x8f\\x90?b\\xa9\\x03\\x8cf\\x8b\\x82\\xbf\\xe5\\x7f\\xed\\xacU\\xdco\\xbf\\xf0\\xec]1\\x19\\xfe\\x8f\\xbf\\x18\\tP\\x1b\\xd9\\xc4}?\\xda?\\xeb\\xe3\\xd0\\x8bb?\\xba`#\\xaex\\x1e\\x84?\\x1d\\xccd\\xbd\\x04\\xa6q\\xbfR\\x1e\\xec\\xab\\xef\\x92\\x9e?\\x92Q\\xc0\\x1e\\xc0\\x8fy\\xbf\\xb8\\xff_,\\xd7\\x8bU?\\xbc\\xd5\\xd5\\xd4t\\xa5z?\\xa2\\xd0\\xc8\\x0f\\x9b\\xc3w\\xbf\\x90\\x13M38\\xc2P\\xbf\\x9c\\xac\\xc4O-\\x1dd\\xbf8\\x0b\\x96\\xedg\\x97m?T\\xa8\\x84~\\xa3\\x1fz?\\xee\\xd8S\\x08\\x9c\\xa6y\\xbfHp\\x8f\\xd9W\\x08Q?\\x86\\xe7>\\xae,V|?l\\x06\\xa5E\\x15$p\\xbf@\\x9bLY\\xae\\xc2L\\xbfh!\\xf8!\\xb40i\\xbf\\xfc\\x9cpT&\\xd6\\x83?$\\xc6\\xf3O#\\x82Q?@N\\xde\\n\\xf0q\\x0f?h\\x088\\x99H\\xe1P\\xbf\\x9fC\\x1a\\xa1\\xaf\\xd9y?`v\\xd8Y\\xf7a9?@\\x165\\xf5a\\xcaJ\\xbf\\x02\\x1f\\xa3\\xa2%\\xac\\x8d\\xbf@Ov\\xef,@H?\\x80\\xf6\\xaf\\xc8\\xd6\\xf1A?\\xb0\\x8e\\x03F\\x99\\x0en?\\xb0j\\x8b\\xa9\\x87\\xf6H\\xbf\\x9a\\x98K\\xab\\xef\\x17`?\\xa0\\xca\\xfb\\xb4d\\xb0k\\xbf\\x98^\\xfbka\\xb7z?\\x18\\xdd\\xa5~\"\\xb2l?<oS\\xec\\xa1\\xc2\\x89?&\\x91Z#\\x94\\xef\\x96\\xbf\\xacT\\xd4\\xca\\x9f$f\\xbf`\\xf7\\xcaJh\\xab\\\\?\\\\\\xb1I\\x8c)\\x93P?\\x90\\xdd\\x94\\x0b\\xc0\\xebn?\\xe8\\t\\x10\\x90\\x1e\\x9fs?\\x9c\\x01\\xb3df_\\x86\\xbf\\xa5\\xc5wQ\\x9ds\\x7f?\\xf0\\xc5TUWk\\x9b\\xbf\"\\xeb\\xcc\\xb7\\xd0\\xc3\\xa7?\\xf4\\xcdQ\\xd5\\xe6G\\x94?\\x18\\xab\\xcb{y\\x83m\\xbf\\xd2+w\\x94\\x07\\xe5p?\\xf6\\xf9\\xb42\\xd8vr?\\xc0o\\xc62:\\xd0Q?\\xb0\\x88)\\xdb\\xacMt\\xbfV\\xc0U\\xfa\\x86m{?@\\\\\\xd7}^\\xfa}?\\x00\\\\dK\\t`O?\\x08\\x0f\\x11\\xa2\\x96Yp?(\\x976\\x1b\\x0bYs?\\xa5\\xec\\xceH\\x19\\x8bH?\\x14ml\\x86\\x88vi?Z\\t*0\\x1c0\\x90\\xbf\\x90\\x19\\xd9b\\xceq\\x89\\xbf\\xa8Z\\xf4;\\xf5\\x86b?0+\\x8eC\\xd4[\\x9c?\\xe0jp\\xc1\\x8c\\t\\x90?\\xf4\\xb0>\\xceUgt?p\\xfd\\x9c\\xad5\\x8e\\x91\\xbf\\x18#,;\\t\\x91\\x7f?K\\xb2\\x027\\xf1\\x8aw?\\x90\\x14\\xbe\\xce\\xd8\\x8d\\x8d?\\x80\\xfb?\\xbb\\x9e\\xef[?\\x14\\xb3\\x0cp3\\xf3\\x97\\xbf\\xfe\\x8a\\xe7}==\\x81\\xbf\\xd8}Q6\\x11Mo?\\xa9!9f-\\xaf\\xa7\\xbf\\xd4$dX\\x82\\xde}?\\x88\\x0f=}\\xce\\xdec\\xbf\\xc0\\x93\\x82@\\xf8z\\x84?\\xa4\\x9e|\\x9f\\x8c\\xda}?X+\\xc3\\x8f\\x94\\x94\\x84?\\xfe\\x8e\\x93\\xf1\\xf40\\x89?\\xac0]6\\x96us\\xbf\\xf8\\x9a\\x80\\xf6\\x8bl\\x88\\xbf\\xae\\xde\\xfa3\\xae({\\xbf\\xd9\\xd0]\\x00\\xcba]?\\x8b\\t,Y\\\\p{?+d\\x87;k=v\\xbf\\xa0\\xa0\\x8a\\xa5&k8?dR\\xc4m\\xf3\\xe5`\\xbf\\xb3\\x89A5\\xa8Q\\x85?\\x90F\\xad\\xe4\\xafa\\x1f\\xbf\\x0e\\x040k\\x9a\\x04\\\\\\xbf\\x00\\xc0\\xfe\\xe9\\x94\\'\\xb4>\\x94\\xf6\\xd05\\t\\x7fr?\\x88F\\xae\\xbc\\xdec:\\xbf \\xda\\x0c3\\xf6tV\\xbf,\\xc8\\x817^7s\\xbf@ \\x9a\\xecX\\xf9:?\\x02\\xebu\\xb6\\xb4\\xecs?\\xb0\\x8b\\x19\\n\\xb8\\xc5!\\xbf3J\\xc3\\xf2k\\x89U\\xbfx\\xf1\\xbdkt\\xeca?\\xf0\\x0e\\'\\xbc\\xe8o6\\xbf\\x82\\xf31\\xd8[Lg?\\xf0\\x8cb\\xe2z\\xcan?\\xa6\\xc4\\xf8\\x98\\xca]x?\\x97\\xd0\\xca}\\xa2i\\x82\\xbfFC;\\xc1\\xaf\\x00`?\\xd2\\x9e\\xe5\\xc3k$M\\xbf\\xe0\\xd9}b\\x01\\xb3\\xed>\\x80a\\xf6\\xaa\\x92\\xdd$?PZ>H\\xad9o?\\xf4\\xfe\\x07\\x8c\\xfbEl\\xbf\\x7f\\x18\\x14,\\xa3\\x17c?Tx\\xdc\\x17\\xa0!\\x89\\xbf\\xf4\\xcdQ\\xd5\\xe6G\\x94?/^Ot\\xd04\\xa0?`\\xbfy@q\\x87R?\\xdc\\xbey\\xfa\\xd8\\xb8T\\xbft\\xfe\\xdb\\xfap9r? \\x87\\x1f\\xa9\\xbfvj\\xbf\\x98;\\x00\\xf9\\xf0\\xa7i?\\xd2\\x0e\\xc0\\xa9\\xa3\\xebu?pn#\\x10\\'\\xb3T?r\\xc7\\xa4r\\x0fF\\x7f\\xbf\\xb9j\\xf0\\x14U\\x13\\x86?\\x04m\\xf8x(r\\x81?\\xd7&2h\\x04D`?\\xcc\\x7f\\xc4\\xd7p\\xe5I?uMmM\\xe9A\\x86\\xbfp\\xd4@y\\xe3\\x8fs\\xbf\\xf2>h\\x8fCn|?R\\x1bx%\\x85\\x04\\x82?\\xc4\\xb8X\\xa3\\xaa\\x92\\x89?\\xc4\\xae\\xa4\\x10\\x18\\x9a`?4\\xc6\\x1f}\\xb1\\xd5\\x81\\xbf@\\xa40\\xb3\\xbc\\xack\\xbf0\\x10}\\xcd\\xc4\\x90\\x7f?\\xf4\\x7f\\x18\\xdfu\\x90\\x94?\\xf8.i\\xf9\\xceix?8)\\x7f\\xd5\\xdf\\xb0\\x8d\\xbfP\\xd4\\xc1,\\xff*[\\xbf\\x96f\\xf9\\t;3k?hQ\\xdf\\xc1:\\x00\\xa1\\xbfgu\\xe8\\x02\\x16\\xdbm?\\xd8%>/\"\\x95X?\\\\\\x08\\x9cL\\xd2/i?8\\x05\\x12\\xff\\xce\\x99q?2\\x1e\\xda~\\x03\\x88t?,\\xb7\\xdeVe\\xa0o?\\xf8p&G\\x00\\x81c\\xbf\\x9c\\x92E\\x9b\\xce\\xect\\xbf\\xe6!I\\x82B\\xf2j\\xbf\\xd0\\x15\\x96B\\xad\\xda&\\xbf\\x8e\\x96YlH>^?8m\\x0b\\xe4\\xbe\\x9d?\\xbf\\x9f\\xce\\x9et\\xc0\\x19@?,\\xdc\\x7f\\x8e\\x8c\\xa5A\\xbfR3\\\\%\\xee\\xcdb?qw5\\xfe\\x82\\x8f]?y)P\\x92\\x99\\x17l\\xbf\\xa4\\xbfa\\x86\\x15\\xccb?O\\xe0z\\xad\\xfd\\xb0Q?\\xeey\\xce\"7\\xa2P\\xbf${\\xbb\\xbf\\xe3\\x06C\\xbf\\x9e\\xae\\x87!_\\xc5!\\xbf\\xda\\x17\\xe39\\xd2\\xe7@?\\xff\\x91\\xff\\xfbioj?F\\xaa~\\xf5\\x19}p\\xbf\\xa6\\xbc\\x12\\xa4\\xaf\\x1bq?\\xbc\\x9fh\\xb2\\x12\\x86T?T\\xc4\\x95\\xca\\xde\\xebd\\xbf\\xf6i\\xb8\\x95q6_\\xbf7\\xbf\\x94\\xe0YPM?\\x009\\xe3\\xeb\\x17\\x1fD?x\\xc1\\xa6\\xa3\\xb9\\x17k?\\x80\\xc1/\\x88\\xf2\\xd4\\xcb\\xbe\\x90\\xb0\\xd8M\\xb6\\x03Q\\xbf`\\xb7Zf\\xf37b?\\x8cL\\x1d#\\xb3\\xa2@?\\xe9D\\xbd\\x08\\xcf*v?\\xc8\\xd1 dy\\xb0N?\\x1c\\x0e\\x88\\x17\\xb7\\xa8l\\xbfJ\\xad]\\xcb\\x9b\\x81{?\\x14\\xab\\xcb{y\\x83m\\xbf`\\xbfy@q\\x87R?d\\xd1\"\\xf7\\xc0\\xfa\\xa5?~\\xb4\\xcc\\x99\\x19\\xf4r\\xbf\"?\\xe8v\\xc8Zm\\xbfR\\xb11\\x83\\xddP\\x8e\\xbfr\\xe4\\x1d\\xd4\\x8a\\xecz?\\x00B*\\xbd\\x0b\\x15n?p\\x85\\x80\\xbb+\\x14J\\xbfj\\x9eA\\xcc\\xa2-\\x85?\\x84\\x8c\\x9b\\xe6:\\xab\\\\?\\xed\\x94\\x9f\\xda}>\\x96?\\xf4]N\\xef\\\\W~\\xbf_zs\\xe4\\xd8!\\x8c\\xbf\\x05\\x16\\t\\xcf\\xa6\\x87\\x86\\xbfW!I\\n\\x06\\x18\\x95?\\x86\\x85?\\x1e\\x96\\xa6\\x90?`%\\xf2M>\\x014\\xbfK\\x04XF\\x08a\\x94?v\\xba\\xe6\\x81\\xf2P\\x8e\\xbf\\x00j=2\\xfa\\x0e5?p\\xf4\\x86\\xbb\\xa26K?A\\xfb\\xa9Q\\x03\\xf4\\x85?\\xdd\\xe1\\x138\\x89\\xa8\\x95?l\\xac*%\\xc7;f\\xbf\\x96\\x98\\xf7\"@l\\x86?\\xcc\\x99\\xc4\\x13,&Z\\xbfV\\xbcK\\xb0d\\xb2f?\\x80\\xfc\\xb3\\xb4\\x95\\x96\\x87\\xbf\\xe7\\x80\\x8e\\x88\\xf1\\x7fg?\\xc8\\xd2t\\x89\\xe9U_?`\\xf5\\x0f\\xee\\xc2\\xa5d?\\xbe8-\\xa3A\\xe7W\\xbf\\x00\\x02\\xb9\\x05p<\\x1a? \\x1d\\xa3\\x9b\\xa7ZJ\\xbf\\xf0\\xb5\\xce\\xfd\\x91\\x0e]?y4\\xd6\\x93\\x80eu?\\x89\\xab-Yz\\r\\x81?\\xe8\\xdaY\\x0e,a3?.\\xc6S\\x16\\xf4|d\\xbf\\xb7\\xf5\\xe7w\\xb2+\\x80?\\xa0m/\\xd0\\x8d\\t.\\xbf\\x00(\\x00\\x06\\xf0\\x86\\x01\\xbf\\xecu\\x97\\xcbo\\xa9\\x81\\xbf\\x00g\\x12\\xc5\\x8b**?QC\\xf9\\n\\x04\\xd7[?\\xdcwb\\x9b\\xc0sU\\xbf\\xb0(\\xc0\\x89\\x958L\\xbf\\xa8\\xf7\\xab\\xfe^GD?P|%\\x01\\'\\x18K\\xbf@H\\\\\\xa4\\x06\\xf9-?\\xa0\\xfbGq\\x1c\\x89-?\\xbc\\x82\\x1a \\x92\\xaeL\\xbf8\\xf0T4\\xc2\\x96d?y\\x9b\\x9ce\\x88mR?\\xa2%\\xdel\\x87=O\\xbf\\x00Q\\x92\\xce\\x05\\xdf\\xf1\\xbe\\x08\\xfae`oHG?\\x90b\\xeb\\x00BRB\\xbf\\x90\\x10I\\x9d\\x16\\xa7E\\xbf\\x0eh/8\\x89\\x0ef\\xbf\\x988g\\xf0\\x03i=\\xbf\\x7f\\xa0)Y\\xa6\\xefN?vp\\xee\\x9d\\xfc\\x8f\\x13\\xbf\\xb0\\xf4\\xf8\\x15r\\x80I\\xbfhz4\\xdc\\x8e|_?\\x80\\xaf\\x1a\\xbb`\\x95\\x1c\\xbfL\\xb5\\xdd\\x1c\\xe9L6?\\x00\\x95CjQ\\xe7\\x1d\\xbf\\xd2+w\\x94\\x07\\xe5p?\\xdc\\xbey\\xfa\\xd8\\xb8T\\xbf~\\xb4\\xcc\\x99\\x19\\xf4r\\xbfrE3\\x1d\\x07\\x18\\x89?\\xf6i{e~1R?+\\xa85\\'\\xca/\\x85?TX\\xe7\\x19\\x1c\\x16~\\xbf\\xde\\x00\\x07\\x19\\x80\\xb0d\\xbf\\xf8a\\x86F\\x87\\xd4[\\xbfR\\x13\\xae\\xfe\\x07\\xe3p?\\x04\\xb8d\\x94\\x01\\xcbw?\\xd9\\xe1\\x1a\\xd3\\xf19e\\xbf:\\xa2X6&\\x9dU\\xbf\\x96wyE\\x05Pv?\\xda\\xe2\\xf8\\xc1[0|?\\xa0\\xb8\\x93\\x85G\\xb7z\\xbf.\\x16\\xb8F;\\xedo\\xbf\\x94\\xa3\\xa8\\x987V\\x86?\\x9c\\x85<\\x9ah$x\\xbf\\xe0\\xba\\xfb\\xd6\\x94Sr?\\x80y\\xdf\\x19\\xaf\\xc8H?@\\x1c\\xf6\\x15i99\\xbf>G\\x08\\xde\\xa2Ol\\xbf\\x80b\\xe6\\xee^\\x88X\\xbf\\x80\\x99\\xc9\\xc1\\x8aF \\xbf\\x96@\\xcb\\xd1\\x14\\x95X?\\xb0\\xbeK\\xf1\\xf4\\x8eB\\xbf(\\x9d\\x93\\xd2\\x14\\xd8p\\xbf\\\\\\x08\\xb9s\\x01\\xbe`?P\\xd1\\xcb\\x19\\x1b\\xf4J\\xbf\\xfeN`\\x11\\x92fl\\xbfP&3\\x9c\\x9dHk\\xbfPaf\\xf5M\\xc4(\\xbf\\x00!m\\x15\\x97\\x02$\\xbf\\xc4\\xfd\\x12\\x93\\x92dW?x\\x9e\\xe8\\xfc\\xa5\\x83F\\xbf\\x00lt\\xfa\\xe2~F\\xbf@:vV\\'\\xa9\\x1d?\\x92\\xa5\\xda\\x1b\\xeb\\xc0Q?\\xdd\\xa3J\\xf4W\"^?\\x90\\xf1\\xf6\\xd1\\x0c\\x9bL\\xbf\\xb0\\x90E\\x9caMW?X\\xec#E\\xf7\\x8a\"\\xbfZ|iTG;a?\\x12\\\\:\\xafszI\\xbf\\xc3+i\\xc5\\xd02?\\xbf\\xdc\\xb2\\xbb\\xd8\\x13\\x16<\\xbf\\xb3\\xad\\xde\\xd3\\th\\\\?\\xd0\\xbf\\x0f\\x9f\\x87\\x101\\xbf\\xc0\\x8d\\xe9|W\\x9a\\'?<:=\\x83\\x82\\xc0Z\\xbf\\x00\\xf9\\x19&D\\xf1\\x15?\\xba9\\x97\\xfb4\\xc1`?\\xf2\\x8a\\r\\x1b\\xd2+C?\\x08\\xc4i\\xdf\\xb4\\x93/?j\\xa2\\xd6\\xa2\\xb3\\x06N\\xbfP\\xe8\\x13w\\xc8\\xe9=?\\x08Q\\x98=4E0?\\x00\\x94\\x18\\x96\\n+\\xe3\\xbe\\x94\\xff\\xb1\"\\x89\\x94k?\\xfc\\xd1#j\\xc8\\x0ef\\xbf\\xc0\\x10^K\\xbbS\\xf9\\xbe\\xef\\xfbow\\x94\\xc1R\\xbfb\\x10\\xda\\xe9:i*\\xbf\\xc07#j\\x85\\xac*\\xbf\\xf8\\xa5u@\\xf2_\\\\\\xbff%\\xdc\\x10\\xb9,W?\\x1c\\xfc\\xfe[\\xbcI(?\\n\\x1d\\xb7\\xb7>a\\x7f\\xbf\\xf6\\xf9\\xb42\\xd8vr?t\\xfe\\xdb\\xfap9r? ?\\xe8v\\xc8Zm\\xbf\\xf5i{e~1R?\\xbe&:\\xf7\\x91]\\x86?~\\x83\\xa4uT\\x9d\\x85?c\\x99\\xae\\x03\\xb0\\xc6\\x88\\xbf\\xfbF\\xfbmPvy?Hw\\xc5\\xccfQ\\x80\\xbfCP\\xb9B\\x90\\x88\\x80?\\xc0\\x1e\\xc1\\xde\\xf1+D\\xbf\\x96v\\xed\\xb7r(C?\\x99\\xa1\\x87\\x0b\\xcc\\x876?\\xf4\\x10\\x9e\\x94v%\\x8b?\\x99+,\\x1c\\xb8\\xcf\\x89?\\x9c\\x12\\xf0\\x00\\xc4\\x12\\x92\\xbf\\xc0\\xc8\\xdf\\xf3\\x18\\xe1\\x81?@\\xcf\\xf8~\\x16au\\xbfE\\xd0)\\x8d\\xf1\\xe5\\x8a?kC\\xf4\\xe9v\\x93\\x8a?8\\xf7\\xe2\\xfe\\xe2%c?\\x8elZVk\\xa7\\x81\\xbf\\x00\\xdez\\x87\\xedmi?\\xd8W\\x11N7\\xc7r?F\\xe1\\xc1b|*q?\\x1e\\x82\\xb2\\x9c\\xaf\\x9cv\\xbf\\x94D=\\x1ft\\xc3_\\xbf\\xbe\\xfd\\xca+g\\xa1_\\xbf]\\r\\xd1\\x82?\\xd2\\x89\\xbf\\x00\\x97\\x9d\\xd6\\xce\\x94b?\\xf0\\xf7e\\x18a\\x9aJ\\xbfdN\\xffE\\xc7\\x80{\\xbf(b\\xcf\\x82\\xef\\x89-?@N\\x96\\x98h\\xe9c\\xbf\\x90T\\xf0\\x97\\xda,^\\xbf\\xb0\\xc0q\\xa7\\xe9\\xb11\\xbf\\xf2\\xe3\\x05\\x82\\xe5)_?6T\\x93[\\x02\\xc9\\x91?pW\\x91\\x82\\x8aPX\\xbf\\x84\\x9f\\xdcW\\x11\\xdap\\xbf\\xd1\\xe3\\x12{\\xd7x\\x91?\\x8e\\x94M\\xba\\x1d\\x0bc\\xbf \\xa05\\xfe\\x04PI?\\xadPIc\\x0b\\x11\\x92\\xbf\\x9c\\xd0\\xca\\x84\\xa6\\x8dB?\\xe7\\xd3\\xe1\\n\\x99gh?W\\x1f9i\\x9b\\xeb\\x80\\xbfhD\\xc1G\\x03E\\x83\\xbfx{\\xb5\\xbc\\x85\\xe0Q? \\xca\\x96\\xf2\\xb3\\x94x\\xbfx\\x1f\\x04\\xd7:=C?\\xd0\\xf4\\'\\x85\\xe9>A?\\xf6\\x91J\\xc7\\x1b\\x98\\x7f\\xbf\\xc2{\\x91\\xcf\\xcc\\x15\\x84?\\xb8<\\x1cwr\\xac5\\xbf\\xfe\\xfc\\x82.\\xed\\xb8c\\xbfH\\xa4\\x11*\\xcbFy?X\\xb8\\x90\\xe8\\xe8\\xea`\\xbf\\x10F\\xf4h\\x9e\\ri\\xbf`\\x9b@\\x801/n\\xbf\\xb8\\xd4\\xac8\\x80\\x02b\\xbfF \\xa8\\xf5V\\xf3p?du8x\\x10\\xeed?\\x05\\x0fa\\xcbT9W\\xbf\\xe8c\\xf6%t\\xf7n\\xbfh8)7o\\x81\\x83\\xbf|\\x88\\xf1\\xbfy\\x93{?:#\\x83\\xe6\\x9e\\xf8b\\xbfh:\\r\\xa7\\x0e\\xed\\x81\\xbf\\xe0o\\xc62:\\xd0Q?\\x1c\\x87\\x1f\\xa9\\xbfvj\\xbfR\\xb11\\x83\\xddP\\x8e\\xbf+\\xa85\\'\\xca/\\x85?~\\x83\\xa4uT\\x9d\\x85?Lt\\x88\\x94\\n9\\xb1?\\x0c`\\xddL\\x1f\\xa6\\x92\\xbfx\\xe9N\\xa2\\xc4\\xf5d?\\x93\\x93\\xf4\\x0e\\x94\\x15\\xa6\\xbf\\xd0\\x9f\\x15p\\xfb}\\x8b?@4\\x91\\x03\\x18\\xb0F?4\\xc8\\x1a!$\\x14`\\xbf\\x83\\x8a|9\\x8e\\x98l\\xbf*K#\\xff\\xd3$\\x99?\\xdcU\\n;%\\xa6\\xad?\\xf8Og\\xdcfV\\x98\\xbf\\xab\\xbd\\x0fa\\xf6<\\x7f?L\\x83Y[\\xa3\\x88\\x97\\xbf\\x00\\x98f6\\x98\\xf4B\\xbfh\\x0c\\xcd\\xd7|\\x88\\x91?`&\\xdf\\x81*\\x8f\\x85\\xbf\\x00\\x18x\\xa4\\xe0MR?o\\x87,\\xffB\\x89\\\\\\xbf\\x00z$\\xc7\\x07\\xe0X?\\x80\\x1b\\xe7:C:L?\\x92\\xae$\\x02d~\\x84\\xbf@\\x85<b\\xbc\\x984?\\x90\\xa9c\\xee\\x82P~\\xbf\\xf4\\xd7@\\xa1M\\xb3h?\\x00r\\xee\\x1bvn@\\xbf\\xe0\\x8e\\xc3\\xd90\\xabG?Tm>\\xee2\\xc9\\x8a\\xbf\\xa4+\\xaedq\\x0cR\\xbf\\xc8\\xcc\\x81\\xb0\\xc2\\xf6{\\xbf\\xc0\\xd4]\\xa4d\\x90?\\xbfP;h,\\x96\\xae\\\\\\xbf\\x80\\xeb\\\\\\xf5\\x87\\xf6X?\\tp\\x87.\\x94\\xc8\\x7f\\xbf\\x006\\xe7\\xc9\\x1e\\xac\\xf1\\xbe\\x88\\xb2\\xcbj=\\xf5b?\\x9c\\x02:\\xd47\\x8a\\x7f\\xbf`\\x0c\\xd5s\\xc4$D\\xbf\\xc0\\xa7,\\xa4a\\x18[\\xbf@\\xee\\x1c\\xc0\\xa4Rt?\\x00\\xc9\\xac\\xda@\\x13+?\\xa0\\x07\\xbc\\xb5\\xdf6L\\xbf8u\\xb0\\x9ai\\xb7b?\\xa0m0\\xd6\\x9e\\x0bU?\\x00\\x12!\\xac\\xd1\\xa3\\x1a\\xbf\\xa0\\x08p%h\\x94V?\\x92\\x12\\xa8\\xe9\\xd6xe?\\xd0\\xbf\\xbe\\x1e\\x9f)B\\xbf\\x14\\xc0\\xa0\\xcb\\xc3Ea\\xbf\\x8a\\x93\\xfb\\xe7\\xbeij\\xbfX`V\\xfc\\xc3\\xf4T?\\xe0\\xe72UTBM?\\xd4\\x84.&s\\xa9r?\\x881\\xe6\\x8ft\\xe6j\\xbfp3\\xee\\x7f\\x05\\x85c?\\xa0\\'\\xc0w,=h\\xbf\\xc8I%f\\x11\\x1fu?\\xe2\\xc8I\\xccA\\x10]?\\xc0\\x04L\\xc90>Q?#Z\\xe7\\xfe%\\xf5a?\\xa0\\r\\xe4\\xa0\\xd9\\xb3Q?\\xc0h\\x1e\\xce\\xc9\\xf0\\\\\\xbf\\x10g\\x15\\xc5\\xbfln?\\xc2\\x96i\\xdb\\xcf\\tg\\xbfP\\x16)\\x8c\\xc2qo?\\xb0\\x88)\\xdb\\xacMt\\xbf\\x98;\\x00\\xf9\\xf0\\xa7i?q\\xe4\\x1d\\xd4\\x8a\\xecz?\\\\X\\xe7\\x19\\x1c\\x16~\\xbfc\\x99\\xae\\x03\\xb0\\xc6\\x88\\xbf\\x0c`\\xddL\\x1f\\xa6\\x92\\xbfxw\\xdaybk\\xa3?n\\xd1<\\\\\\x12\\xdbw\\xbf`\\xf5\\xfe\\xbfk\\xf7\\x82?\\xd4\\x00\\x08\\x1c\\xf6_\\x9c\\xbf0\\x1c\\xf8\\xde\\xc2\\x02r\\xbf\\xc0\\x01\\x9f\\xaf\\x07\\x94U?\\xf80swe\\x83q?\\xb5\\xb3z\\xb3\\xee\\x12\\x97\\xbf\\x88\\x9a\\x1c\\xb8\\xa1\\x06\\x95\\xbf4J-\\'b\\xd6\\xa0?\\x84\\x01\\x94>n]\\x86\\xbf@}\\x12&s1o?\\xf0\\x9fe\\x080\\x93\\x86\\xbf\\x00\\x8a_>\\xfb\\x1f\\x95\\xbf\\x90\\xb4Z\\x07\\xfc\\xa5\\x93\\xbf\\xa8\\xad\\x18\\xc8\\xa8\\x0c\\x87?F\\x8e,\\x9a]\\xa9n\\xbf\\x00y\\x113\\x17j\\x7f?POp\\xa5\\x0f\\x00w\\xbf\\x05k\\xc7\\xccVZ\\x89\\xbf\\xf0\\x12|L9\\x02e\\xbf\\xe4+\\xb7J\\xb81s?\\x90I\\xd5\\xd4Z\\xdf\\x85\\xbf\\xc0\\xa5Y\\n\\xa0\\xbeB\\xbf\\x04x\\xbf\\xc2{\\x90s?pts\\xe9\\xb7\\x1a\\x8e?\\xe6*\\x86\\xce,\\xd1q?\\xd0\\x0b\\r)Q\\xcc\\x80?\\xb0\\xe9f\\n\\x80\\xc1q?XF\\x11b\\xba\\xc4f\\xbf\\x10esV\\xbd=\\x80\\xbf!MN\\x8e\\xc2\\xf4j\\xbfP\\x95B{\\x91\\x01S\\xbf\\xfa\\xf7K\\xfe\\xd1\\xabe?\\xa4\\xf7\\xcfM\\xa1r[\\xbf \\\\\\xbaB\\xf6\\xb77\\xbf\\x9a\\x97\\xd9\\xa9v\\xa3[\\xbf\\xc9\\xe8p1\\xf9Xr?r\\x00>\\x8a3\\x8eP?\\xf3\\xf15\\x13q\\xdfR\\xbf\\xa0\\xec\\x12}\\x8b\\x88&\\xbf\\xf8\\xda\\xb2)\\xaa^M?\\x84A\\x92q\\xec\\xc5E\\xbf`:V\\xca\\x8fEG\\xbf\\xd6j]\\x10\\x89\\x00t\\xbf\\xf0\\tK\\x8f\\x8a\\x91 ?\\x99\\\\\\x8c\\xf3\\xabXg?\\xa0d\\xb9\\xf3M\\x88G?p5\\n\\xc7\\xdd\\x1cT?\\xa5\\xa2z\\x15c\\x98P?P1\\xd8\\nm(H\\xbf\\x08\\x1a=\\xa0W%L?Ln\\x8d\\x1bvTV?\\x94+\\\\\\x0bYSk?\\xd8\\x84\\x8d\\xb2rWj\\xbfL\\xae\\xb9\\x0c\\xdcW6\\xbf@{\\xbe \\xe1n\\x1e?\\xbe\\x1c\\x87\\xfa\\xff}P?\\xc0\\x07AI\\xb4\\xc88\\xbf0\\xce\\t8\\xdfrP\\xbfp/\\xba%V\\x04D\\xbf\\x84\\xf1\\x90h\\xb1\\xe50\\xbf\\x08R\\xea\\x13\\xe3f|\\xbfV\\xc0U\\xfa\\x86m{?\\xd2\\x0e\\xc0\\xa9\\xa3\\xebu?\\x00B*\\xbd\\x0b\\x15n?\\xe2\\x00\\x07\\x19\\x80\\xb0d\\xbf\\xfbF\\xfbmPvy?x\\xe9N\\xa2\\xc4\\xf5d?n\\xd1<\\\\\\x12\\xdbw\\xbf\\xa0\\xd0C\\x0c\\xdb3\\x88?D\\xb2b\\xe36\\x04r\\xbf\\xa9\\x86\\x00\\\\r\\xe0\\x85?\\x00Ryl\\x90\\xbd0\\xbf\\xec\\xf4tC\\x02Ie?m\\xe5\\x11\\x00\\xfboc?Fu\\xd64m\\xafw?\\x00\\xa7\\xa2\\xe9\\xbaV?\\xbf\\xd8Q\\x8e\\xb0\\xeat\\x80\\xbf&\\xe4\\xeb\\xc0\\xb54\\x90?\\xb8V\\xa0\\xab\\x99\\xa1\\x85\\xbf\\xe9\\x00\\x1d\\xbc\\x85B\\x96?d\\x13\\x11\\x8f(\\xd0x?8j\\xefc\\x9af\\x80\\xbf0\\xd9\\xa5\\x8a\\xc2\\xbdX\\xbf\\xbe\\xc3\\xe1T\\xc4\\x8e\\x89?\\x00\\xba\\xa9\\xfc>\\tV\\xbf\\xbaII0\\\\\\x1f\\x80?\\xedq\\x06\\x80\\x06\\xf9r\\xbf\\x04\\xbc\\xbc\\xc3m\\xb2h\\xbf\\xf0x\\x1b%\\xed\\xdc@?\\x88{\\x1ad4\\xa5\\x89\\xbf\\xf6%\\x9d\\xd5\\xf8.b?B\\x0cQ\\x00\\xf1.s?x\\x94\\x00F\\x06\\xfbX?H\\x82S\\x13\\xff\"K?\\xc8\\x92518<Q?\\x00:\\x85\\x10>\\x9d\\xfa>`\\xde6^\\n\\xbc@\\xbf\\xd8\\xe3\\x05?J\\x92Z\\xbf\\xd8W\\xbb\\x0f0[\\x88\\xbf\\xb0!\\x96\\x1ac\\x1cR\\xbfP*\"K#\\rX?F\\'{\\x02\\xd1\\xf6\\x82\\xbfP[\\xcch5\\xa9N\\xbf@\\x92UqJsN\\xbf`\\xaer@\\x04\\x9f\\x88?\\xda\\xf2\\xe8\\x16\\x81\\xcab?D\\xc5uP\\xf2\\xc3N?\\xcc\\xcdL\\x02\\xee\\xf1r?F\\x85\\xa2\\xb6\\xd5Sg?\\x00p\\x0e\\xc1t\\xb8\\xec\\xbe\\xe0%Y\\x9b\\x19\\xa3g?\\xf0G\\xcb\\xd0\\xb69x\\xbf dt\\x94-\\xb90\\xbf\\xf3t\\x01\\xa5\\x08\\xe0s?`\\x9dM\\xa9\\xd0w?\\xbf\\x8a\\xad|\\x999\\x0bm\\xbfJ\\xdfk\\xe6\\xb3\\xc0^?d\\x97\\r\\x81M\\xbbx\\xbf\\xc0\\xd9\\xef\\t\\xabJC?\\xe8\\x9e\\xaaGcrb? \\xdd\\x1dJ\\xca:_?P\\xe5U>\\xb4\\x95o\\xbf\"}\\xc0\\x95w\\xber\\xbf\\xd0T\\xa6\\xe57Zl?s\\t\\xc3\\x1f\\xcc\\x183?\\x18|w\"\\xf8\\xffp?\\xf8\\'b\\t\\x1b6\\x7f?\\x90\\xf8\\xe3m<\\x89h\\xbfJ1w\\xcd\\xdchk?\\xa0/\\xd6\\xeb9\\xdaP?@\\\\\\xd7}^\\xfa}?`n#\\x10\\'\\xb3T?p\\x85\\x80\\xbb+\\x14J\\xbf\\xf0a\\x86F\\x87\\xd4[\\xbfEw\\xc5\\xccfQ\\x80\\xbf\\x93\\x93\\xf4\\x0e\\x94\\x15\\xa6\\xbf`\\xf5\\xfe\\xbfk\\xf7\\x82?D\\xb2b\\xe36\\x04r\\xbf\\xb0\\xca/\\xd8\\xf7Z\\xa8?\\x84D\\x13\\x9a8\\xa0\\x8f\\xbf\\x00\\x18o\\xe1L\\x804?\\xd0\\\\&\\xaakLo\\xbfy/\\xdc\\x1f\\x01\\xf5[?\\x800\\xe9a\\n\\x99\\x80\\xbf\\\\H\\xd3\\xae\\xce\\xd1\\xa1\\xbf\\x80\\x1d\\xb4\\x83\\xediw?\\x8a/\\xab\\xff\\xa1\\xe2\\x93\\xbf\\xe6\\x0c\\x90\\x962\\x9d\\xa5?p/0\\r\\x8a9\\x88\\xbfh<\\xee\\x84\\xebsu\\xbf\\xa0\\xbd}\\xfc|C\\x90?\\xa0\\xf7\\x8bp43b\\xbf\\x10p\\x86d\\xce\\xe4E\\xbf\\x00FO\\x97\\x97\\xc3\\x92\\xbf@\\xdd\\xb7-\\xab\\x84z?\\xa4\\xd3\\xee\"\\x8eS~?\\xe0\\'J\"\\xc0_R\\xbfp\\x98J\\x80\\x8b.h?\\n\\x94\\x0f\\x10\\xacv~?\\xc0\\xe0\\x83\\x83-M;\\xbf\\xa0\\xbcVV$Jp\\xbf\\x98\\x8a\\xa8 \\xd2mw?\\xfe\\xf7\\x1aJ\\xae\\xb8d? \\xc0\\x91\\x00\\xcc\\xe4\\x80?@\\x87\\xb0\\x08\\xa3\\xbd[?0\\x02o]\\xe1~P\\xbfx[\\x1f\\xf2\\xa2m|\\xbf=\\xfafwB\\xdf\\x84?4PQ+\\x0f\\xb3`\\xbf6!\\x0fy\\x8dKr\\xbfs\\xd0v7\\x80\\x7f\\x86?\\xa0\\xa3\\x1f\\xf2n\\xd07?\\x80\\xfdn=\\xb2\\x01$?P{\\x8eK\\xdc\\xc0\\x7f\\xbf\\xae\\x84\\xe5)X\\xfc^?\\x14M\\x14\\xa5t0\\\\\\xbf\\xe0\\xe1\\xb6\\x1f\\xd9\\xe0[\\xbfZ\\x9c\\xa9\\x1b\\x08\\xbcd\\xbf\\x80\\xd4\\x84\\x8f\\x00\\xf1C\\xbf\\xc0\\xd8\\xc4\\xda\\r\\'J\\xbf\\\\~U\\xed\\xff\\xe2h\\xbf@\\xcc\\xd6%\\x13uI?\\xa0c\\x104\\xcf\\xaag?\\x00\\x98w\\xd9\\xd2G\\xd0>\\xdc\\xa9_\\xf9>U\\x80? \\xb7W_!\\x1aP\\xbfP!P\\xeet\\x96o\\xbf\\xa0\\x1c\\xaa\\xf3\\xbb\\xbdk?0x\\x84a6\\xccd\\xbf\\xc0{\\xc2\\xe1\\xfa\\x9ff?@\\xdbl\\xad\\x07\\xe5_\\xbf~\\xb6\\xa4=\\xd8\\xc0[\\xbf*7\\t\\\\?\\xfcQ\\xbfS\\x01\\xcf\\xae\\xbc\\x1dK?\\xc0\\xb9\\x02\\xa63\\x8e2?\\x00\\xbb\\xb4V\\x97\\xc5D\\xbf\\x10f\\xb3G\\x04\\xc2t\\xbfh\\xeb\\xab\\xabT\\x9aK?\\xa8\\x11\\x92\\x95\"\\xd8h?\\x00\\\\dK\\t`O?j\\xc7\\xa4r\\x0fF\\x7f\\xbfj\\x9eA\\xcc\\xa2-\\x85?R\\x13\\xae\\xfe\\x07\\xe3p?CP\\xb9B\\x90\\x88\\x80?\\xd0\\x9f\\x15p\\xfb}\\x8b?\\xd4\\x00\\x08\\x1c\\xf6_\\x9c\\xbf\\xa9\\x86\\x00\\\\r\\xe0\\x85?\\x84D\\x13\\x9a8\\xa0\\x8f\\xbf\\xa4\\x88\\x07\\xb1\\x7f%\\xa9?\\x9c$\\x05v|s\\x82?e\\x17\\xdby\\xe6\\xac\\x80\\xbf\\xf7\\x8e\\xad\\xd2\\x89Iu\\xbfQ\\rlJ\\xf4&\\x84?\\xc0\\xf0[\\xf9\\x9a=\\x84?\\xe0\\x9b\\xba\\xb9\\x00\\xf2\\x84\\xbfB\\xda\\x98la\\x7f\\x9d?8\\xa2\\x1f\\x97\\x8c\\xf5\\x92\\xbf8^\\x8a\\xecfO\\xa1?\\xac\\xbf\\xb5e\\x94T\\x80? \\x06f\\x88EBr?\\xe0\\t\\x85[\\n\\xe0Y\\xbf\\x08=\\xe3A\\xd73\\x88?pZ\\xa3\\x18Fl\\x8b\\xbf\\x00F0\\xf7\\xddqV?\\x8b\\x0f\\xae\\xbf\\xf4\\x92\\x91?\\xf8\\xd1\\xe5\\x9d\\xbf\\xffc?\\x00\\xb4M\\xc1\\xe17\\'\\xbf\\x86e7\\x94\\xcfC\\x8e?\\x80\\xb5\\x8f\\xce\\x04\\xd3G\\xbf\\x80L\\xa9\\xa4\\xd6\\xf2I\\xbf\\x80N\\x95ej\\xdct\\xbf\\xd6\\xf6\\tB*\\xc1y\\xbf\\x9cx\\\\\\x83\\xf4S\\x83\\xbf\\xa4\\x0e\\x17V\\xf2\\x03t\\xbfDe$T\\xd0\\xf8u?x%\\xae0s \\x86?F\\x97\\xf4\\xc5\\x88kq?\\xac\\xe4\\x18\\x92\\xcf\\xe9S\\xbf\\xc0$\\x95\\xdd\\x81\\x1c1\\xbfX\\xfe\\x9c\\xacQ\\xfar?\\x90:\\xe0e\\xcb\\xf9B\\xbf\\xe0\\x86\\xba*\\xbc\\xb2Q\\xbf\\xd4$\\x02)\\xaf\\x03s\\xbf\\xc0\\t]U\\xd18\\xf6>\\xb57\\xe0O\\x99\\xd1G\\xbfh\\xb08G\\xadXU?\\xb0\\xfes<\\xd3\\xa6I?\\x80\\x8e\\xadYrX\\x16?p\\x90u\\x92\\x91\\xf9T?\\x80\\xdf\\xc1\\xf3\\xba\\x80\\'\\xbf\\x10\\xc6\\x897\\x0e?N?@jXO)\\x0b\\x1c?L\\xb9\\xd1\\xe8\\xe6\\xf5T?\\xf0\\xcdPFIuP?\\x98\\x8f\\xc2|\\xfa\\xd8=?\\xa0A\\xed\\x19JSO\\xbf$\"\\xbf\\xdf\\xafQd?\\x18:{wyOR\\xbf0\\xc0ZW\\xa4\\xf8e\\xbf ti\\x85\\xce\\rj\\xbf\\xd8\\xe7-\\xc1qKc?\\x18\\xd2\\x92P\\xd3\\x86>\\xbf\\x11R\\x11\\xac@\\x93X\\xbfP:y\\xb2~7b\\xbfp\\xa8\\xaaa\\xa2\\xa8h?\\x88P#er\\xb2g\\xbfj\\xdd\\xf4\\x9e\\x00\\xfaf?\\xe0\\xe0\\xd5\\x03\\xe4\\xcb~?\\x08\\x0f\\x11\\xa2\\x96Yp?\\xb9j\\xf0\\x14U\\x13\\x86?\\x84\\x8c\\x9b\\xe6:\\xab\\\\?\\x04\\xb8d\\x94\\x01\\xcbw?\\xc0\\x1e\\xc1\\xde\\xf1+D\\xbf@4\\x91\\x03\\x18\\xb0F?0\\x1c\\xf8\\xde\\xc2\\x02r\\xbf\\x00Ryl\\x90\\xbd0\\xbf\\x00\\x18o\\xe1L\\x804?\\x9c$\\x05v|s\\x82?0\\xcd\\xc7\\xe5\\xb7\\xdc\\x9e?\\xf4\\x8aF7\\xbc0i\\xbf\\xa8\\xd47\\xfc\\xfe\\x07q\\xbf\\x00a\\xd2\\xcc.\\xa8Y\\xbf\\xf0\\xcdl\\x84Y\\xd6\\x8a\\xbf\\x00n\\xa3\\xc6\\xf8\\x16;?kCY{)Xq?\\x18%\\x08j\\xdd\\xa7\\x84?\\x00\\xe3\\x9b\\xb2\\x19\\x80@\\xbf\\xb8)+\\x96\\x90\\xf0p\\xbf\\xe0\\xd7Y\\xb3\\xc1-\\x7f\\xbf\\xe0q\\xbb\\xd1R\\xbbe\\xbf\\x16d\\xaa\\xab\\xa8\\xb0F\\xbf\\x00P\\x1b\\xb4R)\\x14?x\\x12$\\xce\\xd8\\xbcz?\\xf5\\xfd\\x12k\\x14&\\x87\\xbf\\x00o\\xb3\\xf7/C0?\\xc0G\\x94>\\x0b\\xd8H?j\\xf5K\\xd6(0\\x80\\xbf\\xa0\\xb7\\x96\\xdd\\x06\\xe7Q? \\\\\\xa0H\\x0e\\xf2W\\xbffN\\x7f\\x05\\xca\\xcd\\x80? \\xe2\\xa9\\x1c\\xb6&&?\\x10\\x1c\\x97\\t\\xaa\\xab[?\\x9a9\\x04]\\xe6\\xccq?@(N\\x06\\x08\\xfeG\\xbf@\\xd9F\\xbb\\xd7\\rU\\xbfrha\\xb13\\x11`\\xbf\\xf2\\xc62&\\xf8J`?\\x11:J\\xe6G\\x8fl?\\xd4X\\xd1+\\xdc\\x1eW\\xbf\\x80\\xb1\\x04\\xc5\\xb1=\\x1e?\\x88m\\x0b\\xed\\x91\\xd7H\\xbf\\xd2\\x83\\x9a1\\xd5\\xeae?\\xa6X\\xfd\\xde\\xd8qJ\\xbf\\xdcY\\n4\\x81\\xf1\\'?0?\\xa6.\\x06\\xe0W\\xbf\\xa1\\x04\\xed\\xce\\x04~i?\\x90\\xa2\\x919U\\xa43\\xbf`\\x128\\xc2T\\xa4f\\xbf\\xea\\xdd\\xe0]\\x03C@?@\\xe3\\xc2\\xdc\\x0c\"\\t\\xbf\\xe4\\xc7\\xf1\\x0312J?\\xf0L\\'\\xff\\x9fA2\\xbf\\xce>\\x80\"\\x88\\xbef\\xbf\\x0e\\xc2\\xe6$\\xac\\x9dW?\\x90f#\\xc7:\\xd22?\\xf0\\xe1\\x89D\\xfd85\\xbf!\\xa8\\xcaj\\xca\\x11a?\\xd0-\\xcdz\\xaf7_?\\x00\\xf5v\\xf8\\x17mV\\xbf\\xe4q>?%RQ?\\xb8\\x06h\\xb5\\xdexO\\xbf\\x94\\x84\\x8f\\x05\\x08\\x08F?\\x94\\xa6\\x03\\x85\\xa4\\xe4U\\xbf\\xac\\x90ex1}o?@A{\\x8f%SC?>%\\x01;d\\xf8]\\xbf\\x8a\\xfadIT~n\\xbf(\\x976\\x1b\\x0bYs?\\x04m\\xf8x(r\\x81?\\xed\\x94\\x9f\\xda}>\\x96?\\xd9\\xe1\\x1a\\xd3\\xf19e\\xbf\\x96v\\xed\\xb7r(C?4\\xc8\\x1a!$\\x14`\\xbf\\xc0\\x01\\x9f\\xaf\\x07\\x94U?\\xec\\xf4tC\\x02Ie?\\xd0\\\\&\\xaakLo\\xbfe\\x17\\xdby\\xe6\\xac\\x80\\xbf\\xf4\\x8aF7\\xbc0i\\xbf\\xf8\\xd3\\xa8F\\xed\\xf7\\x9f?\\xef\\xdc\\x19\\ri/k\\xbfo+\\xb0\\x9f\\x03Gh\\xbf\\xc0a\\x98i7\\xc5>\\xbf\\xc0f\\x1a|_\\x16E\\xbf\\xca\\xb8\\xc3\\x9f[\\x0ew?\\x00W\\x0f\\xad\\x81tc?h_XTO;m?AN\\x8d\\x8dUV\\x80\\xbf\\xc0~a6\\xa9\\x84E?\\xc8\\xd6*\\x02\\x9c\\th\\xbf\\n\\xed\\x90vq#v?\\xb47\\xa7\\x9f\\xb4\\xe5\\x95?\\xa0\\x046\\xaf\\x8a\\xc8u?\\xed\\xa0\\x1b\\xc2\\xc1\\xa7}\\xbf\\xfe\\'g\\x12\\xd1L`\\xbf\\x00\\xb9\\xe1\\xd8q\\xe3Y?\\x1a\\xb2\\xdb\\xb7o\\xb3\\x95\\xbf\\x93\\x12\\x14\\xdb&zj?\\xee\\xdc\\x9a\\x9a\\xd3al?\\x00^6\\xadv!G?(\\x192\\xd4\\xdaYY?\\x18\\x84G4\\xab\\xb1e?\\xd8\\xdb\\xdf\\xcd\\xfe\\xfdd?\\xd0D\\x17h\\x1b\\x98_\\xbf\\xd4N\\xa2\\x9d\\xf2)b\\xbf9\\xa5V\\x08\\xa0%t\\xbf\\xf2\\x8b\\xf04p\\xc4P\\xbf_A\\xc9H\\x80Jb?\\xe3\\xa3\\xc3\\xa9<Sn\\xbf\\xc8\\x0b:\\xd6\\x10hB\\xbf\\x943\\xa8\\xd2~\\r\\xf9>\\xb9!\\x81+<+t?\\x81>!\\x8ec\\x1e(?\\x8e\\x0e\\x07\\x1b\\x0f\\xcbQ\\xbf\\x069!\\xe5\\xachH?hk_\\xf1\\xdb\\xe16?@\\x94\\xa3\\x04\\xbe\\xc97\\xbf&eIkcZ=\\xbf\\x16h\\xbf\\x17\\x00\\x1fV\\xbf.\\x9fA\\x9f\\xd6\\x02$\\xbf\\x12A^Mq\\xb99?4\\xab\\xae\\x8e\\x08\\xb3C\\xbf\\xce\\x07\\xe7\\x1c\\xe6\\x03E\\xbf\\x1a\\xa4\"fh\\x85M?\\x8ac\\xc0\\xa7\\xa4\\xf8I?\\xec\\x93 }\\xaet\\'?\\xd4\\x862\\xa5r\\x8bW?\\x00\\xa3W\\x0b,\\x13\\xfc\\xbe\\x1e\\x14\\x10\\x033\\x0b)\\xbf$\\x00\\xaf\\xfaie\\x1f?\\xde|\\xcei\\x83<\\xfe\\xbe+\\xbc4\\x8e\\x85\\x12D?h\\xdc7\\xae2QD?+l\\xbem\\x87&[\\xbf\\xf2bA*\\xaa\\x11>\\xbf\\xf8oO\\x97H\\xad\\xe6>\\xd9\\xc0 \\xd5\\xc6,b\\xbf\\xa2\\xec\\xceH\\x19\\x8bH?\\xd8&2h\\x04D`?\\xf4]N\\xef\\\\W~\\xbf:\\xa2X6&\\x9dU\\xbf\\x97\\xa1\\x87\\x0b\\xcc\\x876?\\x83\\x8a|9\\x8e\\x98l\\xbf\\xf80swe\\x83q?m\\xe5\\x11\\x00\\xfboc?w/\\xdc\\x1f\\x01\\xf5[?\\xf8\\x8e\\xad\\xd2\\x89Iu\\xbf\\xa8\\xd47\\xfc\\xfe\\x07q\\xbf\\xef\\xdc\\x19\\ri/k\\xbf\\x9e\\x0f\\x9f \\x8c\\xbd\\x81?vA\\xc6\\xa6v\\xdd_\\xbfY<\\xf4S\\xe5fp\\xbff}\\xc5\\xd8\\x9eKO?v(E\\xc2v\\tY?\\x87\\xc8}\\\\V\\x87y\\xbfk\\x01\\xdb\\xb7\\xc7.k?}\\xc7\\xbd#\\xd8`q\\xbf\\xd2\\xa0\\xba\\xaa\\xa5Wu\\xbf!\\xf0\\xbcn~\\xdfU?\\xf7v\\xda4\\x94Ul?\\xdc\\x94\\x96e\\x1aZp\\xbf\\xd2\\xe5%\\xaf\\xb4qb?Hs(\\x07(>\\x84\\xbf\\x1c\\xfd.\\xf1\\x8a\\xd3\\x10?|\\xa0\\xd7n\\xd8\\x9aZ?\\x1f\\x96|\\xb5\\x9bBc\\xbfn\\xdaS\\xd6\\xdb\\xfbN\\xbfp\\xcb\\xbb\\xbd\\x80;n?\\xb3\\xbb\\xd9/\\xeb\\xb9t?\\xe4sEJ\\t\\xbeI?\\xb5\\x85\\xf5\\xc0E\\x84d?\\x99\\xd2\\xe4\\xdc*\\xd4U?\\xc4X\\xf6X\\xf5\\xb22\\xbf*\\xb9i\\x0fe\\x1en\\xbf\\xe8K\\x90r\\x12\\xc7\\x83?\\x80r\\x08\\xab\\xd0\\xc4\\x0f?/\\xe00W(*a\\xbf\\xcdFD/8U|?\\xa0\\xa8\\xa0_\\x0e\\xefK?(j\\xa2@\\xcaiN\\xbf\\x82\\xf8Z\\xbfF\\r~\\xbfJ--\\xc9\\x9et\\'?\\x93\\x1e\\x9b_\\xaaZh?\\x9b\\xee\\xe2\\xf7\\t\\xcd\\x80\\xbf  \\xf3\\xcb\\x1e\\x88K\\xbfDr\\xaba\\xec9L?\\x14\\xd0BI \\xf0r\\xbf\\xa9\\xd9\\x8b\\x97\\x00\\xb6i\\xbfX\\xaa\\xd4{\\x12|4?l\\xc5\\xd1]\\x0e-d?Is\\x887\\tvt?Z\\x0fo\\x12\\xccM@\\xbf\\x13\\x0c\\x01\\x96\\xdf\\xd2X\\xbf\\xcc\\x80\\x86;\\xa8\\x8f]?v\\xe2\\xb1t@sh\\xbf\\xc0I\\\\,\\xb4\\x0e\\x00?\\xf2\\x1d\\xaeL)\\xb7u?\\xf4\\xd2\\xe9\\xa7\\xbd\\xbaY\\xbf\\xf2\\xbd\\xe3I\\xb1\\xd0B\\xbf\\xbf\\xc4\\xa8a\\x83\\x80`?\\xfb\\xd3\\x92xl\\xfeC\\xbfl\\x89\\x1d\\x88\\xba\\xb0V\\xbf\\xb6\\x1b\\xfckp*\\x7f\\xbfW\\x07\\x90\\xc6&\\'\\x82?5\\xb68\\xe1E\\xabZ?\\xd2us\\x87\\xf50\\x8d\\xbf\\x14ml\\x86\\x88vi?\\xcc\\x7f\\xc4\\xd7p\\xe5I?_zs\\xe4\\xd8!\\x8c\\xbf\\x96wyE\\x05Pv?\\xf4\\x10\\x9e\\x94v%\\x8b?(K#\\xff\\xd3$\\x99?\\xb5\\xb3z\\xb3\\xee\\x12\\x97\\xbfFu\\xd64m\\xafw?~0\\xe9a\\n\\x99\\x80\\xbfQ\\rlJ\\xf4&\\x84?\\x00a\\xd2\\xcc.\\xa8Y\\xbfo+\\xb0\\x9f\\x03Gh\\xbfvA\\xc6\\xa6v\\xdd_\\xbf\\xa8\\xaf\\x16\\x8d:G\\xa6?|\\x8bv\\x1cA\\x89\\x9e?s#)&\\r\\xe8\\xa3\\xbf\\x92\\xd8\\xb1\\x07\\xbedx?pDh\\xdd.VQ\\xbf`\\xa9:\\xb7\\x06\\x8cm?\\x93N.I\\tM\\xa7?H\\xd9\\x0f\\x9c\\x11:\\x8d\\xbf)\\xfdS\\xe9%F\\x8f\\xbfd\\x87fp\\xdf\\x07r?\\x80\\xea\\xb0\\x03\\x9f\\x7fc?\\x05\\x8cB\\x04\\xbe\\x9f\\x81?\\xe20\\xf6\\x1bz\\x0bn?\\xd8/\\x93\\x0c\\xc4\\x99z\\xbf\\xceR\\xaf\\xd1\\x96^z\\xbfj\\x17\\xf0cm`f?\\xd4\\x11\\xf8\\xe9\\xf6\\x04U?\\xee\\xed\\xd0\\x05`D`?\\xd2\\xe2p\\x0e\\x01n\\x96\\xbf\\x00\\xb6\\x15\\x97\\xd5\\x841\\xbf<g\\x01\\xd2\\x8cu\\x85\\xbf\\x7f\\x1fp<\\x1b\\xcc\\x82\\xbf`\\xed\\xa5\\x83>w5\\xbf\\x08\\xa5n\\xa6r\\xf0b?\\t\\x18\\xe6\\xc3\\x89\\x9e\\x92?\\x80]\\x91\\xd4\\x9d\\xfbY?(\\x97\\xf1<\\x14\\x17u\\xbf\\xb4\\xa9(P\\x9eK\\x92?\\xd0\\x9aO\\tK\\x8dP\\xbf\\x10\\xefiS\\xe0fm?d\\x07\\x1a\\xa4F\\xcc\\x8d\\xbf\\xa3\\x11\\xb8\\r\\xccmV?\\xb5(\\xd7\\xdf\\r\\xf0i?\\xb6F}\\xda\\x19r\\x86\\xbf0x\\xbcG\\xea2\\x8d\\xbf\\xa0\\xc2\\xb4Y\\xc9NK?\\x94\\'\\xd7\\x9c\\xdaY\\x84\\xbf\\xd5h\\xa3\\xe5-\\xa7{?\\x00\\xe8d\\x82fS\\xe3\\xbe@1#\\xe7afr\\xbf\\x80\\x99\\xeb\\x10\\x9e\\x00{?(\\x88\\xbdkq\\xc6L\\xbf\\xd2\\x18\\xbc\\x98\\xd4Hq\\xbf,\\x03\\x17$c\\xd4\\x80?\\xee\\xa9\\xab\\xcb\\xdb\\x88\\x80\\xbf,\\x7f\\xc9\\xee\\xbfku\\xbf\\x80j\\xf5\\xbd\\xd2.\\x7f\\xbf\\xb8J4\\xbe\\xf4\\xd0v?\\xdfB\\xb84c\\xc5a?\\x0c\\x15\\xaa\\xeb\\xaacf?\\x8b\\x9e\\xe4\\xf5\\x8a\\xffS\\xbf\\x00j\\xa7J\\xe8<_?<b=+\\xbe\\x05\\x8e\\xbf\\x18f\\xbd\\xb4\\xf9k\\x8d?\\xdc\\x0fP\\xf5\\xaa\\xfck\\xbf\\xb8\\xa1\\xcc\\x17\\x06Bp\\xbfZ\\t*0\\x1c0\\x90\\xbfuMmM\\xe9A\\x86\\xbf\\x05\\x16\\t\\xcf\\xa6\\x87\\x86\\xbf\\xda\\xe2\\xf8\\xc1[0|?\\x99+,\\x1c\\xb8\\xcf\\x89?\\xdcU\\n;%\\xa6\\xad?\\x88\\x9a\\x1c\\xb8\\xa1\\x06\\x95\\xbf\\x00\\xa7\\xa2\\xe9\\xbaV?\\xbf\\\\H\\xd3\\xae\\xce\\xd1\\xa1\\xbf\\xc4\\xf0[\\xf9\\x9a=\\x84?\\xf0\\xcdl\\x84Y\\xd6\\x8a\\xbf\\xc0a\\x98i7\\xc5>\\xbfW<\\xf4S\\xe5fp\\xbf|\\x8bv\\x1cA\\x89\\x9e?\\x02~\\xeb\\x14^}\\xb6?0\\xd1`%a\\xc5\\x8c\\xbf\\xa0\\xc1\\xeaTw[:?\\xa8\\xc4rSeL\\x9f\\xbf\\x90\\xe5K\\xd5\\x13\\xaf\\x8f\\xbf\\xfd\\xcbQ,\\xb8\\x1f\\x9a?\\x10\\x19\\r\\x15\\xb4\\x98\\xa2?hF\\x9aj\\xa2\\x17\\x92\\xbfwI?\\xd5\\xb8[T?\\x00\\xbd\\xb9\\xaf\\x0f\\x0fy\\xbf@s\\xbc^\\xf3\\xb9i?g\\xbe\\xbd\\xf7\\xcf\\x90\\xa0?\\x80\\x1c\\xe0M\"yY?L\\xc40\\x81/\\x12\\x87\\xbf\\xdbF[6x\\x16\\xa0?\\x00B-\\x11$=#?\\x80G\\xb8G\\xf7mG?\\x04\\xd1\\xf7\\xcb]/\\xa4\\xbf\\xbalR6\\xb8\\x8fn\\xbf\\xd0o{#\\x13r\\x90\\xbfR\\xb6\\xba4\\xda\\xca\\x87\\xbf\\x00 /\\xbd\\xc6K-?\\xdc\\xd7\\xc6E\\xbev\\x83?\\x80\\xaa\\xaff\\xc3\\x93m\\xbf\\x80\\x08\\xb5\\xbc\\x98_b\\xbf\\x00\\x9f\\xbe\\xdf\\x1c\\x08E?@Yb\\x952\\n\\\\?@\\xbdCb\\x0bcR\\xbf\\xa0\\x99\\xd5\\xab\\xe7?]?\\x80O\\xce\\x82\\xf8\\x04L?:\\x10\\xc3Y\\xe0\\xb0_?\\xa0\\x0c9\\xaa\\\\\\xbds\\xbf\\xe0Hd\\xdf\\xc8Ui?\\x88\\xb4\\x11\\xce\\xf3o{\\xbf\\x80\"\\x80\\xd3u\\x8eP\\xbf\\x00+\\xb4\\xc0\\x7fFc\\xbfP\\x00\\xc9\\xd0\\xdf9\\x81?@\\xcb\\x90\\xc9\\xd9\\xbeK?\\xe0G\\x90&\\'%P\\xbfL\\x19X\\xa7\\xc8\\xabv\\xbfpJ\\xb4>V:l?\\x90TY\\xe4)\\xe7G?\\xa0\\x11\\xc8ry\\xa6r?\\x90\\x91\\xe3osLi\\xbf\\x80T\\xc0^\\x0c\\xc9Z\\xbf\\xd8N\\x8dL\\x8f\\x00\\x8e\\xbf\\xa0\\x19\\x15\\xae\\x84\\xc5}?p\\xfbQ/u\\x97C?\\x90\\xf3vL\\x19\\x06@\\xbf\\xe4\\x8e\\x9a\\xb5\\x04\\xdcT?\\x90\\xb3Ms\\x82&z?\\x00\\xd8.\\x81?\\xac/?\\xa0u\\x1f\\x9dq5d\\xbf(\\x8f\\xe4\\xa0N\\xcd^?H#s\\x95\\x89\\xa1\\x98?\\x80\\x19\\xd9b\\xceq\\x89\\xbfp\\xd4@y\\xe3\\x8fs\\xbfV!I\\n\\x06\\x18\\x95?\\xa8\\xb8\\x93\\x85G\\xb7z\\xbf\\x9c\\x12\\xf0\\x00\\xc4\\x12\\x92\\xbf\\xf8Og\\xdcfV\\x98\\xbf4J-\\'b\\xd6\\xa0?\\xd8Q\\x8e\\xb0\\xeat\\x80\\xbf\\x80\\x1d\\xb4\\x83\\xediw?\\xe0\\x9b\\xba\\xb9\\x00\\xf2\\x84\\xbf\\x00n\\xa3\\xc6\\xf8\\x16;?\\x80f\\x1a|_\\x16E\\xbfr}\\xc5\\xd8\\x9eKO?s#)&\\r\\xe8\\xa3\\xbf@\\xd1`%a\\xc5\\x8c\\xbf\\x14la\\xf4\\xc2x\\xb5?PU\\x88<\\x17GX\\xbf@\\x1en\\x9d}\\xf1\\x91\\xbf\\x98?D\\x93Q\\xd3\\xa0\\xbf`\\x07+\\xf7\\xd2\\xd7\\xa5\\xbf\\x80\\x97\\xcd-\\x1b\\x02~\\xbf\\xe0\\x8b\\xc4\\x83Q\\xad|?z\\x10V\\xb7%\\x91X?\\x00\\t) \\x9c\\xe5q?\\x00L\\x82\\xd7Q\\xf3r?\\x1ex\\xfa\\x9b\\xd8\\xc0\\x90?\\xa0\\xc2\\xfb*`\\x04e\\xbfPNI\\x8e\\xa6[t\\xbf\\xe89\\x16\\x84}\\xbdp?@I\\xab\\x1c\\x9cBh?\\xc4\\xdd\\xfe\\x12\\xd8j\\x90?X[\\x11}$\\x85\\x8c?P\\xe9\\xbd\\x81$u^?\\x18\\xe5$\\tt\\x06\\x82?\\xd0\\xd0B/\\x1fc\\x7f?\\x00KK_Z\\xf7^\\xbf\\xb0\\xc1)\\xc9\\xde\\xd4v\\xbf\\xd8L\\xe3/\\xde}d?^\\x01u\\xb8I\\xfbT\\xbf\\x19\\xa2\\x14\\x9c\\xdb\\x95c?s\\xdaFcr\\rm?\\x8e\\xb7?t\\xe0\\xe0[?h\\x0ee:\\xc1^I\\xbfH\\x8b\\xc9\\xd1\\xa6\\xd4G?\\x96[~\\xec)\\xb7K?\\xbfB\\xa9q\\x17\\x0bu\\xbf\\xc8)\\xfd\\xe3\\xd9\\xdaO\\xbf\\xfb\\x0f\\xbdX\\x9f\"^?\\xb2y\\xcb5\\xb6\\x11U\\xbf\\xe4$.]\\xfd?Z\\xbf\\x9f\\xd0\\xa8t\\xf2\\xedf\\xbf\\x98\\xa6\\xd5ECf4?\\xe8h\\xb15\\xdfzp?\\x87\\xcb\\xf7\\x04%\\x81V\\xbf^\\xb6_\\x9av\\nr?\\x02\\x0b\\xf8}3\\xc7V?P=\\x93W\\xb1JN\\xbf.\\x9c!\\xd5+\\xeab?\\x81\\x0cLB\\xef\\xc3Y?\\x11\\'\\xce\\xde\\xd1rp?P\\xd3rL\\xf9\\xb7<\\xbf2\\x90\\xc4\\xa2;\\x7fR?W\\xf7\\x1c\\xf1n\\'h\\xbf\\xc99\\xc9\\xf7\\xfa\\x86T?\\x9c\\xbf\\xde\\x8a\\xa7\\x9co\\xbf \\x0c[\\x07\\x95Fn?\\\\\\r\\x9f\\xda<\\x9fT\\xbf\\xa8a^g_kq\\xbfnu\\x8a\\x1c)N\\\\\\xbf\\xa8Z\\xf4;\\xf5\\x86b?\\xf5>h\\x8fCn|?\\x86\\x85?\\x1e\\x96\\xa6\\x90?.\\x16\\xb8F;\\xedo\\xbf\\xc0\\xc8\\xdf\\xf3\\x18\\xe1\\x81?\\xab\\xbd\\x0fa\\xf6<\\x7f?\\x84\\x01\\x94>n]\\x86\\xbf&\\xe4\\xeb\\xc0\\xb54\\x90?\\x8a/\\xab\\xff\\xa1\\xe2\\x93\\xbfB\\xda\\x98la\\x7f\\x9d?kCY{)Xq?\\xca\\xb8\\xc3\\x9f[\\x0ew?v(E\\xc2v\\tY?\\x90\\xd8\\xb1\\x07\\xbedx?\\xa0\\xc1\\xeaTw[:? U\\x88<\\x17GX\\xbf\\x93c\\xd8\\x91:Y\\xad?,\\x85\\x0e\\xfd\\x1f\\x9b\\x9e\\xbf\\x92\\xd4\\x13\\xf0\\xf62\\xab?\\xe0\\xe1\\x9d\\x18\\x81b\\\\?\\x88\\x8e\\xb5\\xfc{\\xc1\\x9d\\xbf\\xc8\\x03\\x04\\x08\\x92\\x92^\\xbf7\\x0f\\x97\\xc8+\\xc9\\xa7?\\xba\\x0e$\\xc9e\\x90\\xa5?\\x96\\x19\\x1d\\xed\\xa1\\xf5\\x8b?\\xd1U\\xb7Q\\xa4\\xb0f?T\\x87QyI\\x94V\\xbfzd-3\\x8d\\x03g?+\\x90J\\xc4\\xdb\\xd0\\x90\\xbfq\\x10\\x85\\x8d%9t?\\xc0$\\xa5\\x17u0\\x88?\\xcc \\xe8\\x7fh\\x0ee?\\xe9\\x91\\xe2\\xc2\\x8e\\x9dQ\\xbf\\xf4\\xaa\\xfeo\\x7fE_\\xbf\\x0c\\x00\\x1dlG\\xd1Y\\xbf\\xfa\\x88\\x91\\xd7\\x9doe?\\x06\\xda$!\\xaf\\xa7a?lx\\xe2\\xdd(\\xf4t\\xbfPho\\xe62\\x8aR?\\xc0\\x81\\xe1\\xee\\x00\\x15^? \\x11\\x00\\x12\\xb0\\xa8x\\xbf\\x00\\xe7(\\xd7a\\x0b\"?\\xd0s(\\x06\\xe4\\xe3_\\xbf@y:\\xb2V\\tp?\\xf8L\\x9c7\\xe6\\xc2S?b\\xce\\xad\\x83M\\xbci?\\xa8Q\\xdau\\x88\\'k?b\\xc8\\xc8\\x02o7\\x82?pMz\\x9c\\xae\\x0eR?\\xc0\\xf3d\\x94\\x98dq?\\xc4\\'\\xdf<i\\x01\\x81\\xbf`fu\\'D\\xa5C?\\xa0\\x83\\xc3\\x9b\\xf84U?\\x92+\\xc8\\xde\\xe0\\xa6p?<?|\\xcc\\x1d\\xb8n\\xbf@\\xc4{\\xc8 ,O?\\xa0\\xe7\\x91\\x01\\x91\\'w\\xbf\\x00%`e\\xb5\\xccb?\\xe8%\\xd0\\xc4\\x8a\\xb2n?\\x80q+\\xf0\\xa5\\xd5\\x81?\\xd4\\x19\\x8f9\\xceD\\x8c\\xbf9\\xa4\\xcc\\x121\\xeek\\xbf\\xb9\\xec\\x8eh\\xa7\\xc4s?\\xb4\\xfa3~\\xc5\\x14:\\xbf@\\x01\\xe1\\xb4\\x8c\\x85l?\\xf8mR\\x14\\xa8V\\x88?\\xa0\\x91\\xe9\\x1bC\\x14j\\xbf\\x80\\x1d\\xda\\x0e\\xd5\\'p?xk\\x14\\xb2\\xea*\\x84\\xbf0+\\x8eC\\xd4[\\x9c?R\\x1bx%\\x85\\x04\\x82?\\x80%\\xf2M>\\x014\\xbf\\x94\\xa3\\xa8\\x987V\\x86?@\\xcf\\xf8~\\x16au\\xbfL\\x83Y[\\xa3\\x88\\x97\\xbf }\\x12&s1o?\\xb8V\\xa0\\xab\\x99\\xa1\\x85\\xbf\\xe6\\x0c\\x90\\x962\\x9d\\xa5?4\\xa2\\x1f\\x97\\x8c\\xf5\\x92\\xbf\\x18%\\x08j\\xdd\\xa7\\x84?\\x00W\\x0f\\xad\\x81tc?\\x87\\xc8}\\\\V\\x87y\\xbfpDh\\xdd.VQ\\xbf\\x90\\xc4rSeL\\x9f\\xbfP\\x1en\\x9d}\\xf1\\x91\\xbf*\\x85\\x0e\\xfd\\x1f\\x9b\\x9e\\xbf\\xee\\x89e\\x15Z\\xfd\\xb5?pd\\xb4\\xa2\\xb1G\\x88\\xbf\\x88>^\\xb4\\xf1\\x14\\x7f\\xbf\\x80\\x9dOl\\xa2m\\x8a?@n\\xc4\\x12\\xfb\\xbeh\\xbf\\t\\x95\\x87E\\xa7\\x8a\\x8b\\xbf@\\xebW\\xf8\\x06\\xa3p?\\x80=\\xb7H\\xcf\\xb2^\\xbf\\xd2\\xd9S\\x0e\\x9fr\\x9d\\xbf\\x80\\x1d\\xca<\\x1d\"V\\xbf0\\xff\\xdb\\xf5G\\xb3d?(\\xed5~u\\x0e\\x95\\xbf\\x00\\xbb\\xd8\\xf9\\xb4\\xfd&\\xbf\\xec\\xcb\\x8a\\xf53\\r\\x92\\xbf\\x10\\xdb\\x81\\x1b@7\\x85?\\x8c\\xe4\\xd9\\xa5}\\x8dr?\\x90\\xd5\\x85\\x8d\\x987\\x86?\\xe8m\\xeeu\\xbe\\xf6\\x80?\\x10\\xbf\\xe9\\x0f\\xeb\\xcbe\\xbf\\x005\\xceP\\x04\\xde\\x80\\xbf\\xb0\\xc8\\x94G%\\xb8z\\xbfpH\\xf6\\xb2(9V?P\\xd3\\x12\\x89\\xee\\xb3v?\\xe8]1b\\x82\\xe8t\\xbf\\xa0FiK\\xa1\\x9f_?\\x80kU\\x0c\\xc3\\xf9b\\xbfx2\\xa4.\\xa7\\x19\\x89?t\\x89\\x12\\xc1\\x1d\\xa5[?R$\\xf8\\xb00\\xffw\\xbf\\x10\\xd7\\xbcb\\x84sd?\\xd2\\xd8\\xed\\xc6\\xceP~?\\xa0\\x87\\xee\\x0bM\\x91S\\xbf\\xc0o\\xa6\\xcc\\xfe\\xe9[?\\xe1\\xcb\\x9c/B\\xee\\x8b\\xbf\\xd04\\xdb72\\x07U\\xbf\\xc8@p4\\x10\\x9eu?Pke\\xd5\\x16\\x92f\\xbf\\x82\\x9e\\xb7\\xf3\\xbf\\xb8z?4\\x16\\xd5f\\x02\\xd5Y?\\xa02\\xb0\\x94\\xcd<\\x7f\\xbf\\x809\\xc9jvpr?,\\x7f\\xc5\\xae\\x85\\xfbt?,w\\xe6|\\x12\\xa1\\x92?0\\xb6\\xfd\\x9d\\xfa-y\\xbf\\xcc\\xb7F\\x81\\xf8\\xec[\\xbfD\\xe1}+\\xc3@d\\xbf\\x0c\\x92\\x02G\\x92\\xcfl?\\x90\\x191V\\x85\\x90s\\xbfp\\xebj\\xad\\x8b>~?\\xe0\\x01o\\xe5\\xc5\\xf5f\\xbf\\xf1\\x06\\x0e\\xa7Z\\xb9~\\xbf\\xfe\\x18\\xdcD\\xa2#\\x95\\xbf\\xe0jp\\xc1\\x8c\\t\\x90?\\xc4\\xb8X\\xa3\\xaa\\x92\\x89?K\\x04XF\\x08a\\x94?\\x9c\\x85<\\x9ah$x\\xbfD\\xd0)\\x8d\\xf1\\xe5\\x8a?\\x80\\x98f6\\x98\\xf4B\\xbf\\xf0\\x9fe\\x080\\x93\\x86\\xbf\\xe9\\x00\\x1d\\xbc\\x85B\\x96?\\x80/0\\r\\x8a9\\x88\\xbf8^\\x8a\\xecfO\\xa1?\\x00\\xe3\\x9b\\xb2\\x19\\x80@\\xbfh_XTO;m?i\\x01\\xdb\\xb7\\xc7.k?`\\xa9:\\xb7\\x06\\x8cm?\\x90\\xe5K\\xd5\\x13\\xaf\\x8f\\xbf\\x98?D\\x93Q\\xd3\\xa0\\xbf\\x92\\xd4\\x13\\xf0\\xf62\\xab?pd\\xb4\\xa2\\xb1G\\x88\\xbf\\xcch\\xecy\\xcbw\\xba? \\x11\\xbb\\xa3O\\xc0\\x81? E{\\x85\\xbe\\'\\x90\\xbf\\x10b\\xc0;\\x06\\xbf\\x8a?\\xab\\x9dO\\xc2\\x81<\\xa1?`Si\\xad9\\xa3\\x9a?\\xc0\\xce\\xeeZrM{\\xbf\\xf8\\x85\\xda\\xe7!Ui?@\\x9cJ)\\x9a\\xceY?\\xf0\\x05=0\\xed\\x0c\\x91?\\x1a{\\xaa\"\\x85\\xa5\\xa3\\xbf\\x80\\x1c\\x03\\x93\\x98,Z?\\x90;\\xb3\\xf9\\x04\\x19d\\xbf\\x00j{\\x0c\\x83\\xe4S?\\x00\\x98\\x8e\\xd1\\xb7\\xba#\\xbf\\x80%!N\\xaa0j\\xbf \\xa7\\x9c1\\xa0Lm\\xbf _\\xef\\xa7\\xd2\\x07o?`Y\\x89\\x82\\r\\xe3x?\\x88=\\xa4\\x805\\x19\\x81?\\xbf\\x91\\xa7\\xcd\\xaa\"s?\\x90\\x00W\\x02C\\x07W\\xbf*\\x96Ud\\xd4\\x06z?\\x00\\xc0\\xcbk\\xc8U+\\xbf\\x80\\x8c\\xb4\\x86\\x0c\\x8b+\\xbf\\xec\\x135]#\\r{\\xbf\\x88]\\xf5\\xa0F\\xe0)\\xbf\\x14z\\xf2O\\xf4\\xa6b?\\x05\\x14r\\xb1m\\x80~\\xbf\\xd0\\xbe2/\\xec\\x89a\\xbf4\\x98<g\\x1f\\\\`?\\x10,_\\xc71\\x88t\\xbf\\xf6\\x8a8\\r\\xfbem\\xbf\\xb4y2\\x927\\xc5c\\xbf\\x80\\x89\\x17B\\xeb*N?;N\\xd5\\xb3\\xf1yd?\\x18K\\x1ag\\xe24M\\xbf\\xe23\\xec\\x19\\x86\\xb5e\\xbf\\x82\\xee!\\xb70Cp\\xbf\\xe0\\xe3O(\\xc6\\x0fa?\\x00\\xc2\\xc3\\xa5\\x0e\"\\x18?\\xb4\\xa3\\xe8\\xd8\\xdd\\xc9\\x80? \\x89G=\\xca\\xc1K\\xbf\\x96\\t5\\xb1V\\xcac\\xbf\\x80[\\xa2\\xa9\\x8eRF?I\\xcc\\xc0\\xc3\\xf5\\x02[\\xbf\\x18\\x05\\xed9\\xb3 p\\xbfXw\\x9f)l\"n\\xbf\\x10\\xe4)46G\\\\?\\x0c\\xa1\\xd2w\\xa4\\xebA\\xbf\\x82zTT\\x00b\\x95\\xbf\\xf4\\xb0>\\xceUgt?\\xc0\\xae\\xa4\\x10\\x18\\x9a`?t\\xba\\xe6\\x81\\xf2P\\x8e\\xbf\\xe0\\xba\\xfb\\xd6\\x94Sr?kC\\xf4\\xe9v\\x93\\x8a?h\\x0c\\xcd\\xd7|\\x88\\x91?\\xfc\\x89_>\\xfb\\x1f\\x95\\xbfc\\x13\\x11\\x8f(\\xd0x?h<\\xee\\x84\\xebsu\\xbf\\xac\\xbf\\xb5e\\x94T\\x80?\\xb8)+\\x96\\x90\\xf0p\\xbfAN\\x8d\\x8dUV\\x80\\xbf\\x7f\\xc7\\xbd#\\xd8`q\\xbf\\x93N.I\\tM\\xa7?\\xfd\\xcbQ,\\xb8\\x1f\\x9a?\\\\\\x07+\\xf7\\xd2\\xd7\\xa5\\xbf\\xd0\\xe1\\x9d\\x18\\x81b\\\\?\\x88>^\\xb4\\xf1\\x14\\x7f\\xbf \\x11\\xbb\\xa3O\\xc0\\x81?\\xfa\\xb2$\\x16ec\\xbe?0\\xda\\x1bm\\n\\xcc\\x8a\\xbf\\x00\\xa5B\\xae\\xadPC\\xbf\\x8e0\\x12\\xd43:\\xa6?`\\x18\\xd8ui\\xc7\\x84\\xbf\\xd8\\xf4\\x0f\\xd8u\\x8b\\x83\\xbf\\x9c\\xe3\\xf6\\xda\\xcc\\x04\\xb8? \\x01\\xe8\\x07]/\\x88\\xbfp\\x88\\x8f\\x9c\\xc1\\xc9H\\xbf\\x9a?\\xae\\x90TL\\xb2?\\x90/\\x9e\\xeb\\xa8BW?\\x02\\x03\\x8b\\xfb\\x12M\\x85\\xbf\\x04\\xe9m\\xe80\\xf1\\xa6\\xbf\\xb6\\x18\\x93Sw\\x07`\\xbf\\xa1RIN=~\\x90\\xbf\\x90(\\'\\xe9z\\r\\x96\\xbf\\xa8\\xd2PX\\x15\\xebn?>|\\xd1jq\\x1b\\x85?\\xc0#[\\x96X\\xe4^?\\x0c\\x06l\\xd0\\x1em\\x81?`\\xa2\\xc2v\\xdc\\xe8r\\xbf\\x10\\xd6^\\xda?\\x0ey?\\xc0\\xa6\\x98\\xd5\\xd7\\xa8S\\xbf\\xe0\\xf5\\xb6+\\x86\\x90z?\\x00\\xfa\\xee\\xf7\\xad\\x15p?`\\xee\\x8f\\x11\\x1a\\xd97?d>|;R}g?\\x00Vl\\x02Z\\xff\\'?\\t\\x07\\xf5c\\xe72\\x91\\xbf\\x00L)PtP5?\\xa0\\xda?\\x95Y\\xa4}\\xbf\\xb1\\xdcdL\\x93\\x88\\x8c?\\xe0\\x05$j\\xe5\\x7f\\\\\\xbf\\\\\\x01\\xad\\x823$|\\xbf\\x90g\\xf2\\tw\\x9dk\\xbf\\xbam\\xb9\\xc6\\x95_{\\xbf\\x8cA\\xca`\\x05\\x1en\\xbf\\x00,\\xda\\xfb\\xf9\\xc3@\\xbf@\\xaf\\xd3\\xdf\\x0c\\x1ce\\xbf\\xd8\\xd3\\x12\\xe4\\xb7\\x08v\\xbf\\xb0\\xff\\xcd._S\\x8a\\xbf@\\xb4\\xc4p\\xca]j?@\\xa7\\xa6T|\\x03-\\xbf\\xc0q\\xab\\x8dz\\xa6X\\xbf.\\xa9\\x14\\x12\\xa2}l\\xbf\\xf0_\\x84~\\x9f\\xe6\\x83?\\x80\\xcf[B\\xfd\\xbbv\\xbf\\x00n-\\x0e\\xd1\\tN\\xbf\\x00\\xa6\\x9f\\x95[\\xccQ\\xbf\\xf0$c\\xf3\\xf4\\x8f\\x90?h\\xfd\\x9c\\xad5\\x8e\\x91\\xbf4\\xc6\\x1f}\\xb1\\xd5\\x81\\xbf\\x00j=2\\xfa\\x0e5?\\x00y\\xdf\\x19\\xaf\\xc8H?0\\xf7\\xe2\\xfe\\xe2%c?`&\\xdf\\x81*\\x8f\\x85\\xbf\\x90\\xb4Z\\x07\\xfc\\xa5\\x93\\xbf@j\\xefc\\x9af\\x80\\xbf\\xa0\\xbd}\\xfc|C\\x90? \\x06f\\x88EBr?@\\xd8Y\\xb3\\xc1-\\x7f\\xbf\\x00\\x7fa6\\xa9\\x84E?\\xd2\\xa0\\xba\\xaa\\xa5Wu\\xbfP\\xd9\\x0f\\x9c\\x11:\\x8d\\xbf\\x10\\x19\\r\\x15\\xb4\\x98\\xa2?\\x80\\x97\\xcd-\\x1b\\x02~\\xbf\\x88\\x8e\\xb5\\xfc{\\xc1\\x9d\\xbf\\x80\\x9dOl\\xa2m\\x8a? E{\\x85\\xbe\\'\\x90\\xbf0\\xda\\x1bm\\n\\xcc\\x8a\\xbf\\xe2,\\xbf\\xd6Q\\x8a\\xd2?\\\\h]\\x8f\\x92\\x03\\xb5\\xbf\\x86\\x14\\x8d\\xdc\\x12\\xff\\x95\\xbfH\\xe1=|\\xfbS\\xc7\\xbf (\\xfb8\\x01\\x9c\\xaa?\\xe5\\x8bNI\\xec\\x9f\\xb1?\\x88\\xbe\\x90\\xbc\\xb7l\\x9b?\\x00;\\x00\\xf6X\\x07\\x9d\\xbfK[\"84\\'\\xa3?p\\x137\\xb9\\xf6\\x12\\x94\\xbf\\x80uv\\xe2e\\xaba?\\xd0\\xbd\\x89\\x18\\xc6F\\xa5\\xbf\\xacT\\xb0;4\\xaep\\xbf\\x00RF\\x98~tS\\xbf\\xf0`_\\x9cN\\x1b\\x89\\xbf\\x00\\x87\\x18`#\\xbeD?\\xb0^\\xdb\\xa5\\x9d\\xd0\\x83?\\x00\\x84B\\xb3!\\xe5?\\xbf\\xe8\\xaa\\x89\\xb4\\xa8\\x11V\\xbf\\x00\\x80\\xeeZ\\x9f\\x95\\xdc\\xbe@\\xf0\\xaa>^m@?\\xe8\\xf3!\\xc1s!^\\xbf@J\\xca\\x0b\\x93\\x81D\\xbf\\xa0\\xcc\\\\:\\xe6\\xbfR\\xbf\\x08\\xc3C\\xde\\xd2tO?\\xe0xihO,\\x1c\\xbf\\x00:v\\x00>s\\x13\\xbfp\\xcb\\xf4\\xefc\\x1cc? \\xed[\\xff5\\xec@?\\x00CV\\xa5\\x81\\xcaS?\\x80\\xda\\x88,\\xe1\\xbb\\x80\\xbfX\\x9a@\\xde\\x0e|Q\\xbf\\xae\\xa2.\\xa3\\x11&c\\xbf\\xd0\\x8cl\\x91U\\x92V?\\\\m\\\\=N\\x9cW?D-\\x13\\x0em\\xd5`?\\xcc\\x146\\xa9BTv\\xbf\\x80,\\x1dKlBl?\\x80!\\x97\\xd2\\xd9\\x15b? |\\xa2\\xf2\\xbe*}?@\\x14\\xf1\\x13\\'\\x9aa\\xbf\\xe0i\\x0br\\xa1\\x0bc\\xbf\\xf2F\\x81\\xdd\\xd3y]?\\x86\\x98\\xae\\xf3\\xcb5W?\\x80\\xf47\\x02\\xf5\\x94p\\xbfX{\\x87\\xfei\\xe1|?`7g\\xa2\\x93\\xe4z\\xbf,R,\\xba\\xd7ce\\xbf`\\xa9\\x03\\x8cf\\x8b\\x82\\xbf\\x18#,;\\t\\x91\\x7f?P\\xa40\\xb3\\xbc\\xack\\xbfp\\xf4\\x86\\xbb\\xa26K?@\\x1c\\xf6\\x15i99\\xbf\\x8elZVk\\xa7\\x81\\xbf@\\x18x\\xa4\\xe0MR?\\xa8\\xad\\x18\\xc8\\xa8\\x0c\\x87?0\\xd9\\xa5\\x8a\\xc2\\xbdX\\xbf\\xc0\\xf7\\x8bp43b\\xbf\\xe0\\t\\x85[\\n\\xe0Y\\xbf\\xe0q\\xbb\\xd1R\\xbbe\\xbf\\xc0\\xd6*\\x02\\x9c\\th\\xbf \\xf0\\xbcn~\\xdfU?)\\xfdS\\xe9%F\\x8f\\xbfpF\\x9aj\\xa2\\x17\\x92\\xbf\\xe0\\x8b\\xc4\\x83Q\\xad|?\\xc0\\x03\\x04\\x08\\x92\\x92^\\xbf@n\\xc4\\x12\\xfb\\xbeh\\xbf\\x00b\\xc0;\\x06\\xbf\\x8a?\\x00\\xa5B\\xae\\xadPC\\xbf\\\\h]\\x8f\\x92\\x03\\xb5\\xbf\\x16\\x8dg\\x80\\xe5\\xf6\\xb0?\\xc2+E]L@\\x87?\\x10\\x1f~H\\xf5\\x01\\xa4?\\xd2w\\x03\\xaa\\x1b\\x8e\\xa5\\xbf\\xe7o/\\xed\\x83\"\\x98?@U\\xc0\\x8f\\x91\\xaax\\xbf\\x9f\\xf9\\xaa\\xb1&#\\x96?\\xd8\\xdd\\x84\\xa0\\xf0\\x88\\x97?h\\xe7\\x06\\xd8\\x8e\\x0fp?\\xc4\\x90\\x9fj\\x9b<\\x86\\xbf\\x80\\xf4)@@2\\x86?p_:k\\xd6_J? \\xcd\\xfa\\xcf\\xa6\\x16b?\\x14\\xc1\\x93\\xf1\\x8b\\xb8y?`\\xde\\xe9N6pJ?\\xf0\\xdcB\\x13\\xc5\\xe7h\\xbf\\xebz,\\xe4\\xc6\\xf6Z?\\nG\\x84\\xdf\\xc6rO\\xbf\\xb1l,n<\\xa9q?\\xbcq%\\xbb\\x97\\x08v?\\x02_\\xb7\\xdf\\xb2De\\xbfb\\xc9\\x1a\\'lNK?3\\x03\\xe9<c\\x11S\\xbf\\xd8\\xd5\\xe3Wl+h?\\xcf\\xd1\\xa9n8;q\\xbf\\x8e\\xe5\\x96\\x9a\\xec\\xd9n\\xbf\\x00=\\xb2M*\\xb8\\\\\\xbf*H0\\x11\\xc3\\x93@\\xbf\\x9bb\\x86=\\xd7\\x16x\\xbf4\\xe3\\xd7o0tn\\xbft\\xbcr\\x9c\\x94\\xd4L\\xbf\\xde\\x0f\\xc79\\xb3\\xb6b?\\xcc+\\x05#6\\x05L?\\xf2\\x11\\xbaG\\xaa\\xf2_\\xbf\\xe34SW\\xc3\\xddm?\\xccU\\xe6E\\x16\\xc6o\\xbf\\xf0S \\x95\\xf4]r?2\\xcb\\xb6xd\\x8dk?\\xd4`U\\xe7{\\x1be?\\x1eB\\x8a\\xd7l\\xf3`\\xbf\\xbc\\x9f\\x8d\\xc5\\xbed*?\\x92\\x82e\\x19\\xceDM?\\xeeU\\xf0\\xc9\\x7f\\x06F\\xbf~\\x004! \\xc9e\\xbfA(\\xbdB\\xe4\\n|?\\x9a\\xd6\\xe0\\x19\\xc8x{\\xbf\\xbae\\xdb\\x91\\xa4 {\\xbf\\xe5\\x7f\\xed\\xacU\\xdco\\xbfM\\xb2\\x027\\xf1\\x8aw?0\\x10}\\xcd\\xc4\\x90\\x7f?C\\xfb\\xa9Q\\x03\\xf4\\x85?=G\\x08\\xde\\xa2Ol\\xbf\\x00\\xdez\\x87\\xedmi?o\\x87,\\xffB\\x89\\\\\\xbfF\\x8e,\\x9a]\\xa9n\\xbf\\xbd\\xc3\\xe1T\\xc4\\x8e\\x89?\\x14p\\x86d\\xce\\xe4E\\xbf\\n=\\xe3A\\xd73\\x88?\\x18d\\xaa\\xab\\xa8\\xb0F\\xbf\\x0e\\xed\\x90vq#v?\\xf7v\\xda4\\x94Ul?b\\x87fp\\xdf\\x07r?|I?\\xd5\\xb8[T?z\\x10V\\xb7%\\x91X?7\\x0f\\x97\\xc8+\\xc9\\xa7?\\t\\x95\\x87E\\xa7\\x8a\\x8b\\xbf\\xac\\x9dO\\xc2\\x81<\\xa1?\\x8e0\\x12\\xd43:\\xa6?\\x84\\x14\\x8d\\xdc\\x12\\xff\\x95\\xbf\\xc2+E]L@\\x87?\\xff\\x1dS@\\xd6\\xa2\\xbe?\\xc0\\xf4\\x9b\\xa1\\xcd\"\\xa1?\\x0f,\\x04\\xd96\\xd6\\x85?\\xf8\\x9en4\\x13\\xf1\\xb1?\\xb2\\x92*\\xac~\\xdbu\\xbf\\x16BGiK\\x82\\x81?\\xdb7\\xd1\\xb5\\xbe\\x00\\xb6?\\x88\\x11\\xc3\\x18\\x1a\\x0bo?*h\\xd2<g\\xaas?,\\xfe\\xc9\\xb4\\xc0pw\\xbf6\\x85\\xb0\\xf5S\\x8ac\\xbf\\xd8\\xbdBV\\x90\\x1ch?[=\\xf1\\xd6\\xd0\\x17w\\xbf\\x82\\x0e\\xba\\x10\\xd9\\x13z?X\\x8eV1:]g\\xbf \\xf4\\xc6\\xdez\\xbc~\\xbf`\\x18\\xbb\\xeb\\x92]a? \\x96\\xd0\\x0f\\xda\\xad\\x84?\\x18\\x9fY\\xcd\\xc8\\x02\\x8a\\xbf0\\x93\\x98\\xb1\\x88({?@C\\x87\\x87[\\x80`\\xbf\\xe0\\xcb].\\x91\\xbby?P\\xf5u\\x1ez\\xa2U\\xbff\\xa3\\x08o\\x00\\xb5|\\xbf\\xa0\\xc2]\\xf5\\x877r?`\\x13?\\r\\x17:\\x94?\\x00\\xba\\x06\\xa9\\xb8\\xe6>\\xbf\\xb0\\xbb\\xd6\\xdd7\\xe9\\x82?\\x10\\xe7\\xde\\x00\\xcf,\\x80\\xbf\\xc0\\x81x\\x83\\xc9\\xdf]?~v\\x8dP\\x9c\\xad\\x80?\\x80\\xd1\\xd7\\xbc\\xa2*q\\xbf0\\xa0\\xb9@\\xa1Be?\\x14\\xccRi\\n\\'h?\\xa0\\x8f\\x8f\\x9f\\xc6Us\\xbf@b@pA\\xaaQ?\\x00\\xfc\\xfb\\xd0\\x05\\x16P?@N\\x96G\\r\\xe7\\x8d?\\xa0\\xdd\\x8cx\\x96\\x0fr\\xbf\\x00I\\xceA\\x04\\xb3\\x15\\xbf\\xd8\\xbc\\x1dQ\\x95~s\\xbf\\xe0\\xa4\\xbb\\x8e\\xf6\\x17J?\\xc0\\x86N4Z\\xbau\\xbf\\x80\\xf4\\x1e\\x18\\x96\\xfb\\x92?@\\xa5\\xcd\\xed\\xcf\\x98f?p;qeyOp\\xbf\\xf0\\xec]1\\x19\\xfe\\x8f\\xbf\\x90\\x14\\xbe\\xce\\xd8\\x8d\\x8d?\\xf4\\x7f\\x18\\xdfu\\x90\\x94?\\xdf\\xe1\\x138\\x89\\xa8\\x95?\\x80b\\xe6\\xee^\\x88X\\xbf\\xd4W\\x11N7\\xc7r?\\x00z$\\xc7\\x07\\xe0X?\\x00y\\x113\\x17j\\x7f?\\x00\\xba\\xa9\\xfc>\\tV\\xbf\\x00FO\\x97\\x97\\xc3\\x92\\xbfpZ\\xa3\\x18Fl\\x8b\\xbf\\x00P\\x1b\\xb4R)\\x14?\\xb27\\xa7\\x9f\\xb4\\xe5\\x95?\\xdc\\x94\\x96e\\x1aZp\\xbf\\x80\\xea\\xb0\\x03\\x9f\\x7fc?\\x00\\xbd\\xb9\\xaf\\x0f\\x0fy\\xbf\\x00\\t) \\x9c\\xe5q?\\xba\\x0e$\\xc9e\\x90\\xa5?@\\xebW\\xf8\\x06\\xa3p?`Si\\xad9\\xa3\\x9a?`\\x18\\xd8ui\\xc7\\x84\\xbfH\\xe1=|\\xfbS\\xc7\\xbf\\x10\\x1f~H\\xf5\\x01\\xa4?\\xc0\\xf4\\x9b\\xa1\\xcd\"\\xa1?\\xba\\xc6\\xefK\\x13\\x84\\xd3?\\xc8\\xf7p/\\xbc\\xac\\xb1\\xbfY\\xf4\\x8f\\x96\\x1c$\\xa9\\xbfP7~!,S\\x8b\\xbf(\\x9b>\\xf3\\xf9\\x8a\\x9f?\\x00$\\xeeY\\xd8\\xcd\\xb6\\xbf\\xd8\\xa3\\xd6\\xbbQ\\xfe\\xa2?\\xccS\\xff?\\x14\\x03\\x9b\\xbf\\xa0\\x80]\\xc8\\n\\xae\\x84?@4M(\\x7f\\xf3Y?\\x10\\xd1\\x91iEB\\x88\\xbf\\xc0OHe\\xcb\\xc9|?\\x80\\xa1\\xd5!\\xfa.m?@\\xc8\\xb7!\\xf5\\xe7\\x8a?\\x80D\\xc6\\x9c*\\xefS?p\\xa2>\\xean\\xc9X\\xbf\\xe0\\xa9\\xee\\xe8JZN? \\x16MZ\\x83\\x1br?P\\x80<<C\\nR\\xbf\\x90i\\xd8.\\x8caS\\xbf\\x00wU\\x9f\\xc1\\x9eK?\\x08\\xdbD\\x92\\xe1i7?\\x88\\xe6/\\xf7\\x93\"T?\\xb0\\xe2\\xb3\\xabz\\x82_\\xbf\\xa1r\\xb8m\\xe6*t\\xbf\\x80hf\\xc6\\r\\xa7D\\xbf\\xc8b\\xe3t\\x84Vu\\xbf\\xab\\xe7\\xfc\\x85\\xe0Jk?\\x00=\\x1fo\"\\x14I? 0l\\xbcQ~P?<\\xf1art\\x92r?00\\x87\\xff\\x93Us\\xbf\\xd8\\x97.\\x96E\\xcdC?\\x18\\x81]\\xb6\\xba\\xcew?\\xd0c\\xe7\\x13!\\xd3b\\xbf\\x90\\xed\\\\\\x97P\\x9cW?\\xfc\\x93\\xf6\\xee\\'\\xe7\\x80\\xbf\\xa0\\xb1716\\xac`\\xbf\\xc2\\xe6\\x8e\\xfb\\xe0Za?(q\\xbe\\xf7\\xcaOW?\\x8a\\x9d\\xa8\\x1c\\x9e@N\\xbf@c\\xa5\\x83\\x03\\x1fD?\\x10\\xa3\\xa0\\xfb\\xae\\x0ce\\xbf\\xe0\\xcb\\'\\x171\\xabj?\\xe6U\\x89S\\xaeWa? \\tP\\x1b\\xd9\\xc4}?\\x80\\xfb?\\xbb\\x9e\\xef[?\\xf8.i\\xf9\\xceix?l\\xac*%\\xc7;f\\xbf\\x00\\x99\\xc9\\xc1\\x8aF \\xbfF\\xe1\\xc1b|*q?\\x80\\x1b\\xe7:C:L?POp\\xa5\\x0f\\x00w\\xbf\\xbaII0\\\\\\x1f\\x80?@\\xdd\\xb7-\\xab\\x84z?\\x80F0\\xf7\\xddqV?x\\x12$\\xce\\xd8\\xbcz?\\xa0\\x046\\xaf\\x8a\\xc8u?\\xd0\\xe5%\\xaf\\xb4qb?\\x05\\x8cB\\x04\\xbe\\x9f\\x81?`s\\xbc^\\xf3\\xb9i?\\x00L\\x82\\xd7Q\\xf3r?\\x99\\x19\\x1d\\xed\\xa1\\xf5\\x8b?\\x80=\\xb7H\\xcf\\xb2^\\xbf\\x80\\xce\\xeeZrM{\\xbf\\xd8\\xf4\\x0f\\xd8u\\x8b\\x83\\xbf (\\xfb8\\x01\\x9c\\xaa?\\xd2w\\x03\\xaa\\x1b\\x8e\\xa5\\xbf\\x0f,\\x04\\xd96\\xd6\\x85?\\xc8\\xf7p/\\xbc\\xac\\xb1\\xbfa\\xe8\\xd4*f\\x06\\xb2?\\x16\\xbfZ\\xbb\\xae\\xe2\\x8f\\xbf\\xc0\\xb9\\xedW\\xa5\\xeaS?w\\x8e\\xb5\\x7f\\x9e\\x9b\\x95\\xbfr\\x00\\xae\\xb7\\x96\\xac\\x9a\\xbf XP\\x122\\xaat\\xbf\\x14_L\\xd5\\xddH\\x9d?\\xa0\\xc0\\xb9\\xdcf(c?\\xac\\xc7\\xdc\\xd4~6u?\\x14\\x00\\xdb\\xd7r-\\x8b?\\x18u\\\\j\\xdffs?\\xd0G\\x91\\x86-\\xf8}\\xbfd\\xb9ki\\xd6Z\\x90\\xbf\\x1c\\xf9\\x8e\\xa7\\xe85\\x94?b\\x85\\x8e\\n\\x1c\\xb9\\x89?\\xfe\\xa2\\xe1\\xee0\\xa3x\\xbf\\xcc\\xc90\\t,P\\x95?\\x9d|\\x95u\\x9fK6\\xbfRh\\xc5\\xb7/Ar?#\\x17*\\xe2Dj\\x8a\\xbf\\x84\\x1d\\x03P\\xbfVa?(3F\\xca\\xb2\\nJ?\\xa23\\xca\\xc1\\x83I\\x8e\\xbfT\\xa3\\xc3y\\xa5\\x8f\\x88\\xbf\\xce\\xfb\\x06\\xe7\\xa77b?Xj1\\xb6M~\\x92\\xbf\\x88\\xe8\\x8f\\xaa\\x8b\\xc2\\x81?V\\x92\\xaf\\x9f\\xdb\\x83r\\xbf\\x0cr\\xd1_\\xc1\\x9aE?\\x1a\\xf5\\xcf\\x9a\\x9f\\xf7p\\xbffv\\r\\xc8\\xa0|4?b\\x02\\xd3\\xc8\\x93\\xccV\\xbf\\xae\\xd1sYP\\x98\\x82\\xbflV\\x03l\\x03!_\\xbf^g[\\xf5\\x17\\x1cG?\\x14\\xed-E\\xd8\\xf9H?^\\xa4\\x1a\\x96C\\x13\\x8e?\\x9b\\x04l\\x80\\xd1&z\\xbf\\xc4\\xa6\\t\\xa4\\xbb\\xe0\\x07?\\x8d \\xc5\\x94\\x10\\xf8Q\\xbf_\\xedl[\\xbcga\\xbfD.\\x1cz\\x8dY~?\\x169\\x19\\xcc`*K?\\x8d\\xa9\\xe9\\xb6R\\xd3\\x80\\xbf\\xda?\\xeb\\xe3\\xd0\\x8bb?\\x14\\xb3\\x0cp3\\xf3\\x97\\xbf8)\\x7f\\xd5\\xdf\\xb0\\x8d\\xbf\\x94\\x98\\xf7\"@l\\x86?\\x95@\\xcb\\xd1\\x14\\x95X?\\x1e\\x82\\xb2\\x9c\\xaf\\x9cv\\xbf\\x92\\xae$\\x02d~\\x84\\xbf\\x08k\\xc7\\xccVZ\\x89\\xbf\\xeeq\\x06\\x80\\x06\\xf9r\\xbf\\xa6\\xd3\\xee\"\\x8eS~?\\x8c\\x0f\\xae\\xbf\\xf4\\x92\\x91?\\xf5\\xfd\\x12k\\x14&\\x87\\xbf\\xeb\\xa0\\x1b\\xc2\\xc1\\xa7}\\xbfHs(\\x07(>\\x84\\xbf\\xde0\\xf6\\x1bz\\x0bn?h\\xbe\\xbd\\xf7\\xcf\\x90\\xa0?\\x1ex\\xfa\\x9b\\xd8\\xc0\\x90?\\xd1U\\xb7Q\\xa4\\xb0f?\\xd6\\xd9S\\x0e\\x9fr\\x9d\\xbf\\xe4\\x85\\xda\\xe7!Ui?\\x9c\\xe3\\xf6\\xda\\xcc\\x04\\xb8?\\xe6\\x8bNI\\xec\\x9f\\xb1?\\xe7o/\\xed\\x83\"\\x98?\\xf8\\x9en4\\x13\\xf1\\xb1?U\\xf4\\x8f\\x96\\x1c$\\xa9\\xbf\\x16\\xbfZ\\xbb\\xae\\xe2\\x8f\\xbfh\\x80\\x8a\\x0c\\xd6\\xff\\xd0?\\x92\\xe5`[\\xa0/a\\xbf\\xe3\\xd6\\xe7N\\xba\\xed\\x8b?Mn\\x1e\\x9c\\x1dz\\xc5?Z\\x02b\\xc8z\\x98o\\xbf%\\xc5\\xb9\\xac\\x977\\x88\\xbf*z<+\\xc6\\x9a\\xb5\\xbf^\\xad\\x0fxM7\\x81\\xbf\\xcau\\x1dR5\\t\\x9a\\xbf0\\xa2\\xfd\\xcb\\xe7\\x95\\xa2\\xbf/\\xfd\\x030\\x1c\\xc1\\x81?5o\\xd0\\xb1\\xda\\xd1\\x95?\"P\\xe3\\xf1\\xa0\\x11d\\xbf`We&s\\x11O\\xbf\\xd8\\xac\\xf5@l\\x10b\\xbf\\x08\\x1f\\x84\\x06~\\x0c[\\xbf\\xd8i\\xb7g\\xf5m@\\xbf\\x8cBj\\xc3\\xfc\\xd6`?\\xa0=\\x8di\\x96\\xcaO?\\xc0*j\\xb5\\xeb\\xa6\\x1a?\\xb0$t\"\\xb5\\xc9)\\xbf\\x97KuU\\xee>s?\\xd9\\xd8\\xebN\\xa4\\x9ej\\xbf@h\\xd1|zo/\\xbf\\x18\\xc1\\xce\\xb93Nn?\\x86\\xd7\\xb0\\xfa\\x91\\xf6m?\\xc0\\xbaD\\xccS\\x00!?\\xf8B:C\\x99\\\\C\\xbf0y\\xa1u\\xdf\\x8e2\\xbf\\x14\\xce\\x8e\\xa96\\x87O\\xbf\\xd8\\x8b\\xdeH\\xb1\\xb7B\\xbf\\xc0\\x9e\\x0b)\\x99)R\\xbf\\xc4X\\xd86\\x18wc?\\xac\\xc3\\x8fc\\x93\\xce`\\xbf\\xc8\\x86R_s\\x9ar\\xbf\\xf8\\xa6\\xb7\\x16\\xb4\\xdd`?$\\xb9\\xae\\xd2\\x92\\x85\\\\?,\\xe1\\r:\\x01\\xc3H\\xbf\\xda\\xac\\x93%\\xf3\\x01M\\xbf\\xe0\\xf0h\\xa9b\\x87G\\xbfP1\\x9f\\x89\\x0fUe?\\xf8\\xd7C\\xfa\\xf8\\nb\\xbf\\x0c\\x9e\\xa5\\x9d\\xc7;_\\xbf\\xb8`#\\xaex\\x1e\\x84?\\xfe\\x8a\\xe7}==\\x81\\xbfP\\xd4\\xc1,\\xff*[\\xbf\\xcc\\x99\\xc4\\x13,&Z\\xbf\\xb0\\xbeK\\xf1\\xf4\\x8eB\\xbf\\x98D=\\x1ft\\xc3_\\xbf@\\x85<b\\xbc\\x984?\\xf0\\x12|L9\\x02e\\xbf\\x04\\xbc\\xbc\\xc3m\\xb2h\\xbf\\xe0\\'J\"\\xc0_R\\xbf\\x08\\xd2\\xe5\\x9d\\xbf\\xffc?\\x00o\\xb3\\xf7/C0?\\xfe\\'g\\x12\\xd1L`\\xbf0\\xfd.\\xf1\\x8a\\xd3\\x10?\\xd8/\\x93\\x0c\\xc4\\x99z\\xbf\\x80\\x1c\\xe0M\"yY?\\xa0\\xc2\\xfb*`\\x04e\\xbfT\\x87QyI\\x94V\\xbf\\x80\\x1d\\xca<\\x1d\"V\\xbf@\\x9cJ)\\x9a\\xceY? \\x01\\xe8\\x07]/\\x88\\xbf\\x88\\xbe\\x90\\xbc\\xb7l\\x9b?@U\\xc0\\x8f\\x91\\xaax\\xbf\\xb5\\x92*\\xac~\\xdbu\\xbfP7~!,S\\x8b\\xbf\\xc0\\xb9\\xedW\\xa5\\xeaS?\\x91\\xe5`[\\xa0/a\\xbfD\\xeb1\\x1b_\\x00\\x92?\\xf8\\xe8p\\x7f\\x1e\\xf2X?\\xf4v\\x9a5\\x11E\\x89?\\x94\\xbe\\x1e\\xfe\\xefr\\x80\\xbf\\x04\\xf85\\xa6\\xe8\\xbdl\\xbf\\x80\\xc7v\\x99\\xcamE\\xbf\\x9ar\\xf2\\xc3+Ts\\xbfX\\\\\\x08X\\x9e\\x81o\\xbfj\\x10\\xfe\\xa3E\\xc0p\\xbf\\x8c\\xde}d\\xd4\\xafn?Tw\\xed>C\\xc4}?\\xec\\x01!%\\xbe\\xb0f\\xbf\\xa26\\x01\\x94\\xb9(c?$\\xe2\\xbd\\xcbZ6`?\\x96\\x0b\\x82K9\\xdau\\xbf`\\xd0\\xd3\\xa6K\\xf5*\\xbf\\xb0i\\x93\\xb8\\xeb37\\xbf`\\x01Kh\\x93\\xeaz?\\x8c9\\x8e>s\\x17 \\xbfq\\x0c\\xca\\x83\\xd7\\x8aO\\xbf\\x80^\\xa9\\x07\\x0b\\x01U\\xbf\\x85\\x1a\\x11\\xdd&;c?\\xe0Y\\xdb\\xca\\xb8\\xb0+?\\x98\\xc4\\x83\\xf1o(Q?m*\\x8a\\xd8\\'\\xf2a\\xbf*v\\x99\\xeb\\xf8\\xcfR\\xbf\\xcfI,\\xacu\\'U\\xbf\\xbf{\\xc2\\xd4F#`\\xbf\\xfb\\xce\\xe2\\xd7T\\xc7P?\\xd0\\xee\\rE\\xa6`#?\\xcc\"\\x10\\xca\\x83+d\\xbf2t\\xae\\xf3N\\xdce? !\\xc6\\x80\\xe5\\x18S?\\xf8\\x92/m\\xf1\\x91v?\\x00\\x9d\\x1c\\xd9\\x9a_6\\xbfF\\xa1\\x16c\\x06\\xa8C?\\x88\\xa3\\x9b#\\x00\\x1e4\\xbf\\xe6\\x88D4\\xa7<S?\\xa0TH\\xe66\\xa37\\xbf\\xf0\\x91\\xa3\\xb3\\x89\\x12V?\\x90\\x8bm\\x93\\xc1\\x7fo\\xbf\\x1du\\xdd\\x01,\\xda`\\xbf\\x1d\\xccd\\xbd\\x04\\xa6q\\xbf\\xd0}Q6\\x11Mo?\\x94f\\xf9\\t;3k?V\\xbcK\\xb0d\\xb2f?(\\x9d\\x93\\xd2\\x14\\xd8p\\xbf\\xbe\\xfd\\xca+g\\xa1_\\xbf\\x94\\xa9c\\xee\\x82P~\\xbf\\xec+\\xb7J\\xb81s?\\xd8x\\x1b%\\xed\\xdc@?`\\x98J\\x80\\x8b.h?\\x00\\xb4M\\xc1\\xe17\\'\\xbf\\xc0G\\x94>\\x0b\\xd8H?\\x04\\xb9\\xe1\\xd8q\\xe3Y?~\\xa0\\xd7n\\xd8\\x9aZ?\\xceR\\xaf\\xd1\\x96^z\\xbfL\\xc40\\x81/\\x12\\x87\\xbfPNI\\x8e\\xa6[t\\xbf~d-3\\x8d\\x03g? \\xff\\xdb\\xf5G\\xb3d?\\xf0\\x05=0\\xed\\x0c\\x91?P\\x88\\x8f\\x9c\\xc1\\xc9H\\xbf\\x00;\\x00\\xf6X\\x07\\x9d\\xbf\\x9f\\xf9\\xaa\\xb1&#\\x96?\\x16BGiK\\x82\\x81?(\\x9b>\\xf3\\xf9\\x8a\\x9f?w\\x8e\\xb5\\x7f\\x9e\\x9b\\x95\\xbf\\xe3\\xd6\\xe7N\\xba\\xed\\x8b?\\xf8\\xe8p\\x7f\\x1e\\xf2X?QT\\xaf\\x9e1\\xf1\\xab?\\xe4@\\xcb\\x03A`\\x86?\\x84\\x053U\\xceCw?6\\xd1\\xab\\xcd\\xd4\\x00\\xa6\\xbf\\x00Y\\xf9DX\\x9e\\x1c\\xbf\\x01K\\xed\\xd6\\x1bqm\\xbfXd\\xc5\\x8c=\\xf0\\x82\\xbf\"\\x1f\\xa6\\x8c}Yu\\xbf\\xc2\\xc6\\xebv\\xf6\"r?\\xd0W\\xees\\x18\\xb8\\x84?\\xc4\\r`\\x16i\\x8e\\x92?\\xeaj\\xd3t\\xd59b\\xbfsHd\\x8ap=\\x8c\\xbf\"^vlt9\\x90?A\\x12[\\x00x*y\\xbf\\x9c<\\xc1i\\x86p{?yN\\x84\\xff\\xfa5\\x95\\xbf^ts\\xe5G\\xaeb?\\xd6\\xb7\\xb7LE\\x0bp?f\\xc5y\\x1d\\xe76\\x82\\xbf\\xa9\\r\\x1dO5\\x0b\\x8f\\xbf\\x00\\xe9\\x89\\x04D\\xceQ?\\x1f\\xd7!rg\\x14|\\xbfw$\\x88\\x1b\\x1c\\xbc\\x8e?u\\x9c\\xe0Y\\xc6\\xa3`\\xbf\\xcf+\\x034\\xd79i\\xbf\\x00\\xa3\\x13\\xdchA\\xe5\\xbe\\x1bN\\xc5\\xc3\\xcf\\xefU\\xbf\\xda\\x99\\xf7\\xac\\x94\\xf7<\\xbf\\x80]\\xd9\\\\\\x1enq\\xbf\\x0crf M+g?\\x92\\':4\\xbfno\\xbfT\\xf1u\\rM\\xa2\\x8d\\xbf\\xfc\\xf09V\\xceG\\x96?\\x9fUz\\x94\\xf3\\x07L?\\rZ\\x15\\xcby\\x1fm?\\xa1\\x06\\xa7#\\xc7\\xd2k\\xbfm5\\xc0d\\xac\\xbfd\\xbf \\xd4x~\\xc9\\xb5j\\xbf\\xc4\"\\x9fT\\x19As\\xbf6\\xc4y\\x84\\xb7\\xc2\\x80\\xbfR\\x1e\\xec\\xab\\xef\\x92\\x9e?\\xa9!9f-\\xaf\\xa7\\xbfhQ\\xdf\\xc1:\\x00\\xa1\\xbf\\x82\\xfc\\xb3\\xb4\\x95\\x96\\x87\\xbf[\\x08\\xb9s\\x01\\xbe`?]\\r\\xd1\\x82?\\xd2\\x89\\xbf\\xf4\\xd7@\\xa1M\\xb3h?\\x90I\\xd5\\xd4Z\\xdf\\x85\\xbf\\x88{\\x1ad4\\xa5\\x89\\xbf\\x0f\\x94\\x0f\\x10\\xacv~?\\x86e7\\x94\\xcfC\\x8e?h\\xf5K\\xd6(0\\x80\\xbf\\x1a\\xb2\\xdb\\xb7o\\xb3\\x95\\xbf\\x1e\\x96|\\xb5\\x9bBc\\xbfj\\x17\\xf0cm`f?\\xdbF[6x\\x16\\xa0?\\xd09\\x16\\x84}\\xbdp?+\\x90J\\xc4\\xdb\\xd0\\x90\\xbf(\\xed5~u\\x0e\\x95\\xbf\\x1a{\\xaa\"\\x85\\xa5\\xa3\\xbf\\x9a?\\xae\\x90TL\\xb2?K[\"84\\'\\xa3?\\xd6\\xdd\\x84\\xa0\\xf0\\x88\\x97?\\xdb7\\xd1\\xb5\\xbe\\x00\\xb6?\\x02$\\xeeY\\xd8\\xcd\\xb6\\xbfr\\x00\\xae\\xb7\\x96\\xac\\x9a\\xbfMn\\x1e\\x9c\\x1dz\\xc5?\\xf4v\\x9a5\\x11E\\x89?\\xe2@\\xcb\\x03A`\\x86?-]e\\x06?7\\xd3?\\xfc\\xc2Q\\xe6\\xd3B\\x99\\xbf|\\xd6\\xd3\\xb9\\xd8\\xa0\\x96\\xbf\\xa1\\'\\xc1P\\xf2\\xf2\\xa0\\xbf5\\x0c\\x1b\\xeb\\xd8\\xa9\\x97\\xbf\\xd2!\\xa1\\xf3ra\\x94\\xbf\\xaf\\xf5\\xa7yc\\xc2\\xa2\\xbf\\xd3fG\\x0e\\xd7\\x07\\x97?E\\x13\\x98\\xe2\\x9b\\xad\\x96?\\x10\\xcb\\x08Ck\\x87b\\xbfp\\xa5\\x98W\\x13;<?@\\xddH\\x81\\xee\\x1af?\\xe8\\x18\\x0b\\xa6\\xdf\\t]\\xbf\\xf0\\x83W\\'\\x06\\x8d<?\\x80\\nN(\\xcdFB\\xbf\\x00\\x1d\\xda\\x80fso?\\xe2\\xad\\x89\\x1e\\xce{2?f\\x99E\\xa7^\\rI\\xbft\\x80\\xa4.)qR\\xbf\\xc8\\xa0U\\\\\\x11vT?`\\xae\\xb4\\xfa^y\"?\\xc0\\x0cn\\x05\\x98\\xa1E\\xbf\\xfc^\\xd27\\xe7\\xadq\\xbf\\xa0\\xed\\x947\\xe2\\xaf-?\\xc8\\xcb\\xc3v\\xc0\\x0f0?\\xc0\\x93\\xcd\\x18V\\x04-?\\xc0\\xf4\\xfeu^\\xb4\\'\\xbfL\\xf6\\xba\\xe4\\x8f\\xdc??\\xa0\\x0e\\n\\x02\\xeePU\\xbf\\x00\\x8a7\\x7f\\xd7\\x145\\xbfX\\x0f\\xb4\\xdf#\\x83@\\xbfPa\\xc9v\\x10\\xdcb?\\\\\\xe2e\\x9fS\\x92m\\xbfHM\\xe76\\xad\\xc5R\\xbf\\xa0\\x8a0\\xfa\\x91\\xa9\\x16\\xbfN\\xa7\\x99\\x11d\\x9a(?\\xf8P\\xb4\\x00W\\x8dU? \\xf2\\x9aQ\\xfe\\xc5L?\\x80\\xeb8\\x03\\xab\\xdc@\\xbf\\xe0\\xf5\\xde\\xc2sS_?\\x90Q\\xc0\\x1e\\xc0\\x8fy\\xbf\\xd4$dX\\x82\\xde}?iu\\xe8\\x02\\x16\\xdbm?\\xe7\\x80\\x8e\\x88\\xf1\\x7fg?P\\xd1\\xcb\\x19\\x1b\\xf4J\\xbf\\x00\\x97\\x9d\\xd6\\xce\\x94b?\\x00r\\xee\\x1bvn@\\xbf\\x80\\xa5Y\\n\\xa0\\xbeB\\xbf\\xf6%\\x9d\\xd5\\xf8.b?\\xc0\\xe0\\x83\\x83-M;\\xbf\\xa0\\xb5\\x8f\\xce\\x04\\xd3G\\xbf\\x90\\xb7\\x96\\xdd\\x06\\xe7Q?\\x91\\x12\\x14\\xdb&zj?k\\xdaS\\xd6\\xdb\\xfbN\\xbf\\xd4\\x11\\xf8\\xe9\\xf6\\x04U?\\x00B-\\x11$=#?@I\\xab\\x1c\\x9cBh?q\\x10\\x85\\x8d%9t?\\x00\\xbb\\xd8\\xf9\\xb4\\xfd&\\xbf\\x80\\x1c\\x03\\x93\\x98,Z?\\x90/\\x9e\\xeb\\xa8BW?p\\x137\\xb9\\xf6\\x12\\x94\\xbfp\\xe7\\x06\\xd8\\x8e\\x0fp?\\x88\\x11\\xc3\\x18\\x1a\\x0bo?\\xdc\\xa3\\xd6\\xbbQ\\xfe\\xa2?\\x10XP\\x122\\xaat\\xbfZ\\x02b\\xc8z\\x98o\\xbf\\x94\\xbe\\x1e\\xfe\\xefr\\x80\\xbf\\x84\\x053U\\xceCw?\\xfc\\xc2Q\\xe6\\xd3B\\x99\\xbf\\x8c\\x9cH\\xd5\\x9fH\\x8d?\\xc8\\x8e.\\xab=\\xd8x\\xbf\\x80@\\x00:C\\xc2<?X,\\x1aRs\\x06h?\\xa0\\x14?\\xe1\\xf6\\xadS?\\x82\\x13\\xf3\\xe2\\xfe\\x9cs?\\xc4B\\xb4 t\\xade\\xbfP\\x94\\r[_\\x17X\\xbf2\\xef\\x9f6\\x82.e?(=\\xa6\\xfc\\xe1\\xd8h\\xbf\\xa0\\x90\\xa8\\xd0:,<?\\x96)\\x1d\\xdf\\xa3<{?\\xc0M\\xd4\\x97\\x8fmK\\xbf\\x80D\\x17\\xb6\\x05\\x04C\\xbf\\x8c\\x98\\xf0%\\xda\\xd5x\\xbf6B5[\\x97\\x16T?B\\xf74\\xb3\\xdbMZ\\xbf\\x1cD\\xa9\\xa6Q\\xbdg\\xbf\\x1c\\x013\\'\\xbf\\x83c\\xbf\\x90x\\xdf\\x05h\\tF\\xbfD\"`\\x1b\\xc8\\xf0v\\xbf\\xde\\xa6!\\x8f5+Q?\\\\U\\xe3Yg\\xafP?x\\xc2\\xd0\\xf5\\xb4\\x9fh?\\x0c\\xcd\\xfb\\x8aF)K? \\x11\\xffi\\xbe\\xc6,\\xbf#\\xbd)\\x0b[/V?Tv\\x10w\\xc4sq?\\xc8o\\x1d\\xfd\\x85\\x1bn\\xbfhP\\xf5V\\'tZ?H\\x1f\\x99+\\x8f\\xc4j\\xbf\\xe0T\\xabh\\xaf\\xdcX?\\xe8\\xb0\\x0c\\x87\\x16:.\\xbf\\xfe;\\x04T\\x86\\x07G?-\\xc0\\nt\\xe5\\xa75?@\\x91\\x93r\\x08\\xa6H?\\xb4fujL\\xb1s\\xbf\\x90\\x9a\\xc8\\xec\\x96\\x9bu?\\xed\\xdd\\x8b\\x01I\\xdaZ?\\xb8\\xff_,\\xd7\\x8bU?\\x88\\x0f=}\\xce\\xdec\\xbf\\xe8%>/\"\\x95X?\\xc8\\xd2t\\x89\\xe9U_?\\xfeN`\\x11\\x92fl\\xbf\\xf0\\xf7e\\x18a\\x9aJ\\xbf\\xe0\\x8e\\xc3\\xd90\\xabG?\\x04x\\xbf\\xc2{\\x90s?B\\x0cQ\\x00\\xf1.s?\\xa8\\xbcVV$Jp\\xbf\\x80L\\xa9\\xa4\\xd6\\xf2I\\xbf\\x10\\\\\\xa0H\\x0e\\xf2W\\xbf\\xee\\xdc\\x9a\\x9a\\xd3al?n\\xcb\\xbb\\xbd\\x80;n?\\xee\\xed\\xd0\\x05`D`?\\x80G\\xb8G\\xf7mG?\\xc4\\xdd\\xfe\\x12\\xd8j\\x90?\\xc0$\\xa5\\x17u0\\x88?\\xec\\xcb\\x8a\\xf53\\r\\x92\\xbf\\x90;\\xb3\\xf9\\x04\\x19d\\xbf\\x02\\x03\\x8b\\xfb\\x12M\\x85\\xbf\\x80uv\\xe2e\\xaba?\\xc4\\x90\\x9fj\\x9b<\\x86\\xbf*h\\xd2<g\\xaas?\\xccS\\xff?\\x14\\x03\\x9b\\xbf\\x14_L\\xd5\\xddH\\x9d?%\\xc5\\xb9\\xac\\x977\\x88\\xbf\\x08\\xf85\\xa6\\xe8\\xbdl\\xbf7\\xd1\\xab\\xcd\\xd4\\x00\\xa6\\xbf{\\xd6\\xd3\\xb9\\xd8\\xa0\\x96\\xbf\\xc8\\x8e.\\xab=\\xd8x\\xbf\\x9a\\x13pQm\\x9c\\xb0?\\xa4pW\\x11\\xed\\xa8v?\\xa8\\'\\xd7\\x8c\\xb8\\xdaw?\\x92\\xd6\\xb2\\xf3\\x8f\\xa6\\x80?\\xf6\\xa7\\x12\\xd1\\x03Z\\x80?\\xcc\\x16\\x8e`\\x88\\xcdx\\xbfW\\xceW\\xb6\\xe4\\xb8\\x92\\xbf\\tZ\\x1bN\\xe1g\\x85\\xbf\\xc4\\xfb\\xe2\\xc9\\xcc\\x8e{\\xbfH}\\xda\\x9e@\\xabb?[\\xb4\\xeb*P\\x1a\\x81\\xbf\\xdc.\\x19>V$_\\xbf\\xbcv\\xd5iL\\xbba\\xbfP\\xd5`\\xfau\\xb8w?\\x80F\\x17q$\\n\\xe9>\\xc3\\xe9Q\\xa1\\x7f,[\\xbf\\x88n\\x1d\\x01\\xb6\\xd7\\x81?\\x8e\\x81\\xa6W\\xa2\\xc6t?h\\xf3\\x86\\xa1\\xea\\x82S\\xbf\\x8e0\\xb6Y\\x18\\xfd\\x80?\\xda\\xa3\\xacG\\xfaSs\\xbf\\xc0\\xac\\xbcm\\x12\\x82S?\\xc82\\x13\\xfbI`M\\xbf\\x00\\x90?\\xbe\\xf8\\xd6\\xd6>X\\xcd^\\xe2\\n\\xa18?:R\\xd4\\x8d7\\x8fd?\\x000`N\\xe2 \\r\\xbf\\x18V\\x01\\xc69\\xafr?\\xc0A/\\x13\\xacmF?\\xc0\\xdb\\xcc\\x99\\xe8t]\\xbf\\xd8\\x0b\\xfd\\xb89\\x85v\\xbfj\\xabe\\xb8[\\xa8\\\\?\\x00\\xb5h\\xa5(:\\xe1>\\x07\\xe4A\\xf8q\\x06E?\\x80rn\\x93\\x0e\\x068\\xbf\\xe0RV!\\xd8\\rj?\\xaa@BB\\\\q\\x82\\xbf\\xdc\\x06\\xe6\\xc2\\xa8\\x06e?\\xbc\\xd5\\xd5\\xd4t\\xa5z?\\xc0\\x93\\x82@\\xf8z\\x84?\\\\\\x08\\x9cL\\xd2/i?`\\xf5\\x0f\\xee\\xc2\\xa5d?T&3\\x9c\\x9dHk\\xbfdN\\xffE\\xc7\\x80{\\xbfPm>\\xee2\\xc9\\x8a\\xbfpts\\xe9\\xb7\\x1a\\x8e?p\\x94\\x00F\\x06\\xfbX?\\x98\\x8a\\xa8 \\xd2mw?\\x80N\\x95ej\\xdct\\xbffN\\x7f\\x05\\xca\\xcd\\x80?\\x00^6\\xadv!G?\\xb1\\xbb\\xd9/\\xeb\\xb9t?\\xd0\\xe2p\\x0e\\x01n\\x96\\xbf\\x04\\xd1\\xf7\\xcb]/\\xa4\\xbfX[\\x11}$\\x85\\x8c?\\xcc \\xe8\\x7fh\\x0ee?\\x10\\xdb\\x81\\x1b@7\\x85?\\x00j{\\x0c\\x83\\xe4S?\\x04\\xe9m\\xe80\\xf1\\xa6\\xbf\\xd0\\xbd\\x89\\x18\\xc6F\\xa5\\xbf\\x80\\xf4)@@2\\x86?.\\xfe\\xc9\\xb4\\xc0pw\\xbf\\xa0\\x80]\\xc8\\n\\xae\\x84?\\xa0\\xc0\\xb9\\xdcf(c?*z<+\\xc6\\x9a\\xb5\\xbf\\x80\\xc7v\\x99\\xcamE\\xbf\\x00Y\\xf9DX\\x9e\\x1c\\xbf\\xa1\\'\\xc1P\\xf2\\xf2\\xa0\\xbf\\x80@\\x00:C\\xc2<?\\xa4pW\\x11\\xed\\xa8v?\\x08\\xc7\\xf3\\xd1\\xda\\xae\\xa9?\\x1e\\x7f\\xd7\\x9b\\xcd\\xacg?v\\xec\\xd4]\\xc3\\xe0\\x92?\\xb3$\\x02V\\xc0\\xb3\\x93?\\x80\\xa3\\xd2u\\xe96^\\xbf \\x87g\\xc4_<\\x8b\\xbff#\\x8e{\\x93vW\\xbfAE\\r\\xcb\\xd0\\xb3B?\\xd2\\x19d\\x08\\t\\xc1\\\\?LaHF\\x92\\x97M\\xbf\\xc0\\x15e\\xc3zp\\x16?\\xd4\\xedI\\x9b\\xa2&S\\xbfS\\xf1\\xb4\\xcc\\xf4\\xaea?\\xa4VDz\\xbc\\x8b\\x1e\\xbf\\x16m\\x84%\\xff\\xad5?\\x14\\\\\\xbcV\\xd9JA\\xbf\\xf4K \\xa3\\xf5\\x9fQ?\\x00\\xe7\\xd2\\xfcK\\xb1\\x01?\\x10\\xea\\xea\\xd5A9E\\xbf\\xddI\\xf1p\\xca-c\\xbf`06\\xe2C5\\x16\\xbf\\xd6\\xec?\\xb1\\x8eW8\\xbf\\x10M6\\x84\\x06nI?\\xf6\\xf1sn\\x1a\\xa4K\\xbfF@\\xfe~\\r\\xfb3?\\xf4\\xe3\\xac%\\x13\\x12M?\\xa8\\x10\\xc1\\xdc\\x12\\x8bE\\xbf\\xde\\x9e1\\xb9\\x92\\xc3P?\\xbcK\\xf7\\x97\\xfc\\xbf\\\\?J\\xa8\\x18T\\xa4\\x9ci\\xbfE\\xb0U\\xf8l\\x9c>\\xbf\\\\)K\\xc4W\\xce@?\\xfb\\x87#\\x86\\xa9{4?\\x80\\x14\\xa7\\x9d\\xd5T<?\\x00\\x00\\xcaY#[\\x97\\xbeH\\xcd\\x1b%\\xe7\\x82B?\\x11\\xd4\\xa6<\\x99kR?\\xa2\\xd0\\xc8\\x0f\\x9b\\xc3w\\xbf\\xa4\\x9e|\\x9f\\x8c\\xda}?8\\x05\\x12\\xff\\xce\\x99q?\\xbe8-\\xa3A\\xe7W\\xbfPaf\\xf5M\\xc4(\\xbf b\\xcf\\x82\\xef\\x89-?\\xa4+\\xaedq\\x0cR\\xbf\\xe8*\\x86\\xce,\\xd1q?L\\x82S\\x13\\xff\"K?\\xfe\\xf7\\x1aJ\\xae\\xb8d?\\xd6\\xf6\\tB*\\xc1y\\xbf \\xe2\\xa9\\x1c\\xb6&&?(\\x192\\xd4\\xdaYY?\\xe4sEJ\\t\\xbeI?\\xf8\\xb5\\x15\\x97\\xd5\\x841\\xbf\\xbalR6\\xb8\\x8fn\\xbfP\\xe9\\xbd\\x81$u^?\\xe9\\x91\\xe2\\xc2\\x8e\\x9dQ\\xbf\\x8c\\xe4\\xd9\\xa5}\\x8dr?\\x00\\x98\\x8e\\xd1\\xb7\\xba#\\xbf\\xb6\\x18\\x93Sw\\x07`\\xbf\\xb8T\\xb0;4\\xaep\\xbfp_:k\\xd6_J?8\\x85\\xb0\\xf5S\\x8ac\\xbf@4M(\\x7f\\xf3Y?\\xac\\xc7\\xdc\\xd4~6u?^\\xad\\x0fxM7\\x81\\xbf\\x9ar\\xf2\\xc3+Ts\\xbf\\x01K\\xed\\xd6\\x1bqm\\xbf5\\x0c\\x1b\\xeb\\xd8\\xa9\\x97\\xbfX,\\x1aRs\\x06h?\\xa4\\'\\xd7\\x8c\\xb8\\xdaw?\\x1e\\x7f\\xd7\\x9b\\xcd\\xacg?\\xc4\\xaa\\xba^\\xb7-v?r\\xeb\\xb5\\x7f\\x0b\\xe2u?\\x86+/\\x84\\xe3\\xc9u?\\xc4zh\\xfb\\xb4\\xe3o\\xbf\\x82\\x88\\x90\\x84\\x16\\xae|\\xbf9z\\xc7\\xd06\\xa3\\x81\\xbfp\\xb4\\xc7\\xdd\\x08cd\\xbfl\\xb8<\\xab\\xb2<i?0^\\xa3\\xc4\\xa5\\xb4u\\xbf\\xf4s\\xa5\\xbd\\xe6(S\\xbf\\xe0H;\\xc3~$N\\xbft\\x8a\\x0f\\x081\\xce}?`zd\\xefr\\xba3?pu\\xfeL\\x8b\\xfd&\\xbf\\x0eE\\x9f\\x99\\x98\\x8dt?\\xb0)\\xdcI\\x91pM?pUv%\\xc28@\\xbf\\xe8>4u\\x8c\\xabf?\\xa1\\x8f~\\xff\\x00\\x08r\\xbf \\x00d\\xee\\xa5\\x947?h\\xbc\\x91p\\xe5\\xe7J\\xbf\\x18\\x86\\xc6\\x9e3\\xf7^?0o\\x87\\xd2\\xb0\\xcag\\xbf\\xeas\\xb9\\x93\\xd5\\xc3Z?@\\xaa@\\x15\\x87H8\\xbf`\\xbf\\xb6:,\\xddM?\\xc8^\\xdb\\xc0\\xab\\xa7U?\\x00\\xbf\\x95n\\xad\\xd1\\\\\\xbf\\xa8\\x07\\xce^y\\x1av\\xbf\\xf0\\xb5\\xdf\\\\}s*?P$\\xc5\\x9c\\x81+N?@=\\\\\\xf1i\\xd6\\x08\\xbf\\x00X\\x86#\\xdf\\x95\\r\\xbf$i\\xb8\\x9a\\xa5rq?\\x80^6f\\x9f~l\\xbf\\x94\\xc4\\r\\xb5\\x1cWU?\\x90\\x13M38\\xc2P\\xbfX+\\xc3\\x8f\\x94\\x94\\x84?2\\x1e\\xda~\\x03\\x88t?@\\x02\\xb9\\x05p<\\x1a?\\x00!m\\x15\\x97\\x02$\\xbf@N\\x96\\x98h\\xe9c\\xbf\\xc8\\xcc\\x81\\xb0\\xc2\\xf6{\\xbf\\xd0\\x0b\\r)Q\\xcc\\x80?\\xd0\\x92518<Q? \\xc0\\x91\\x00\\xcc\\xe4\\x80?\\x98x\\\\\\x83\\xf4S\\x83\\xbf\\x10\\x1c\\x97\\t\\xaa\\xab[?\\x18\\x84G4\\xab\\xb1e?\\xb6\\x85\\xf5\\xc0E\\x84d?>g\\x01\\xd2\\x8cu\\x85\\xbf\\xd0o{#\\x13r\\x90\\xbf\\x18\\xe5$\\tt\\x06\\x82?\\xfc\\xaa\\xfeo\\x7fE_\\xbf\\x90\\xd5\\x85\\x8d\\x987\\x86?\\xa0%!N\\xaa0j\\xbf\\xa1RIN=~\\x90\\xbf\\x00RF\\x98~tS\\xbf \\xcd\\xfa\\xcf\\xa6\\x16b?\\xd7\\xbdBV\\x90\\x1ch?\\x10\\xd1\\x91iEB\\x88\\xbf\\x14\\x00\\xdb\\xd7r-\\x8b?\\xc9u\\x1dR5\\t\\x9a\\xbfX\\\\\\x08X\\x9e\\x81o\\xbfXd\\xc5\\x8c=\\xf0\\x82\\xbf\\xd2!\\xa1\\xf3ra\\x94\\xbf\\xa0\\x14?\\xe1\\xf6\\xadS?\\x8c\\xd6\\xb2\\xf3\\x8f\\xa6\\x80?x\\xec\\xd4]\\xc3\\xe0\\x92?r\\xeb\\xb5\\x7f\\x0b\\xe2u?Tw\\xbd\\x0f\\xd2\\xc1\\x92?\\x82\\xf6\\x9b\\xe4f\\x12\\x89?`\\xbf\\x0f\\xabr\\xc2s\\xbf\\x90\\x02u`5^\\x8c\\xbf\\xbe\\x07e\\x04\\xfc\\xb2h\\xbf\\x0e6ut\\xf3\\x89c\\xbf\\xc8gKa\\xaf\\x11[?@\\xa5\\xddgQ\\xd7#?&\\x1f\\xaf\\'\\xc6\\xe0W\\xbf(e\\xc0#\\xabp@\\xbf\\x88\\xceO\"\\xcd\\xe6\\\\?\\xff\\xad\\x0e)\\x92\\xd19?\\x96\\xba\\xbfg\\x9e\\xfc4\\xbf\\xc0\\xa3\\r\\x08=\\xd8c?\\x80\\xffq\\x17\\x0e\\xd7\\x10\\xbf@\\x97\\x0c\\x888Z%\\xbfx\\xa4\\x89]\\x11\\xf5U?\\xeb\\x8fr\\x1e\\xd6\\x82t\\xbf\\xd8tEp\\xdb\\xd3A?T\\x9aK\\xa2S]^\\xbfN\\xac9\\xdf.9]?\\xc8:<\\xed\\x02YX\\xbf$\\x1d<\\xea\\xe3\\xaeS?\\x80\\x04U\\xed\\x98\\x0cA\\xbf\\xa0\\x90!CE\\x0eT?@\\x8399\\xc4\\x90-\\xbf\\x80oq\\x04\\x0e\\xc7F\\xbfL\\x00\\xd6U`\\xeb|\\xbf\\xf4\\xdd\\xb9\\xbe\\xe6\\xa15\\xbf\\xc8\\n\\xc2g\\xb7\\xb4D?\\xf2\\xd6\\xe9\\xc1=S\\x16\\xbf\\xc0\\x1a\\xf2\\ta#N?\\x00\\x1eZ\\x80Pf`?|Jz\\x05\\xa7\\xaeq\\xbf\\xf56\\x96\\x94\\xfa\\x8ei?\\x9c\\xac\\xc4O-\\x1dd\\xbf\\xfe\\x8e\\x93\\xf1\\xf40\\x89?,\\xb7\\xdeVe\\xa0o? \\x1d\\xa3\\x9b\\xa7ZJ\\xbf\\xc4\\xfd\\x12\\x93\\x92dW?\\x91T\\xf0\\x97\\xda,^\\xbf\\xc0\\xd4]\\xa4d\\x90?\\xbf\\xa8\\xe9f\\n\\x80\\xc1q?\\x00:\\x85\\x10>\\x9d\\xfa>@\\x87\\xb0\\x08\\xa3\\xbd[?\\xa4\\x0e\\x17V\\xf2\\x03t\\xbf\\x9a9\\x04]\\xe6\\xccq?\\xd8\\xdb\\xdf\\xcd\\xfe\\xfdd?\\x98\\xd2\\xe4\\xdc*\\xd4U?\\x7f\\x1fp<\\x1b\\xcc\\x82\\xbfR\\xb6\\xba4\\xda\\xca\\x87\\xbf\\xd0\\xd0B/\\x1fc\\x7f?\\x0c\\x00\\x1dlG\\xd1Y\\xbf\\xe8m\\xeeu\\xbe\\xf6\\x80? \\xa7\\x9c1\\xa0Lm\\xbf\\x90(\\'\\xe9z\\r\\x96\\xbf\\xf0`_\\x9cN\\x1b\\x89\\xbf\\x14\\xc1\\x93\\xf1\\x8b\\xb8y?[=\\xf1\\xd6\\xd0\\x17w\\xbf\\xb0OHe\\xcb\\xc9|?\\x18u\\\\j\\xdffs?0\\xa2\\xfd\\xcb\\xe7\\x95\\xa2\\xbfj\\x10\\xfe\\xa3E\\xc0p\\xbf(\\x1f\\xa6\\x8c}Yu\\xbf\\xaf\\xf5\\xa7yc\\xc2\\xa2\\xbf\\x82\\x13\\xf3\\xe2\\xfe\\x9cs?\\xf6\\xa7\\x12\\xd1\\x03Z\\x80?\\xb3$\\x02V\\xc0\\xb3\\x93?\\x86+/\\x84\\xe3\\xc9u?\\x82\\xf6\\x9b\\xe4f\\x12\\x89?\\xc6\\x0e\\x8c\\xeaT\\x1c\\x91?r\\xbf\\xe8i\\xd0\\x0bu\\xbf\\xfe\\xd4r\\xe3M\\xf3\\x88\\xbf@\\x9e\\xaf\\x86V\\xb8!?\\xe0\\xf7O\\x84\\x12e+\\xbf(I&9\\'\\xdfP\\xbf`\\x995\\\\\\xf9\\xf6A\\xbf $X\\xcff\\x86$?\\xa0,A\\x1el\\xc2J?\\x80\\xe6\\x91R\\x85\\x8e=\\xbf\\x90\\x9e*\\xee\\x94\\xb4\\t?T\\x9d\\x04k\\x05\\x17H\\xbf\\xd8\\xd5\\xc5f)\\xd9M?\\xc0\\x0c\\x93\\xcb\\x7f\\xf6&? l\\xdcG\\x1aT$\\xbf`Vg\\'+\\xeeQ?y\\xe8\\xd9S-7W?\\x00\\xe5=\\xbb\\xe1\\x87\\x02\\xbf`~\\x917W\\xf6G?L=\\xa5d\"\\xf4W\\xbf\\xe7\\xbe\\xe8Q\\xd2mQ?\\xa0\\xbaJ\\x17\\xd8\\xfe!\\xbf\\xd8\\xa8\\xa9\\xda8\\xd3U\\xbf\\xb0\\x13\\'\\x8e\\xd1\\x1bT?@\\xe3(D\\x1cf;\\xbf\\x008DK\\x93\\xf8\\x01?(\\xdalc\\xad\\xa9b?\\xf8\\x06\\xf0q\\x8e\\xc4-?\\x80\\xb4E\\x1b\\xff\\x0cH\\xbf\\x02\\x96M9\\x80V$\\xbf\\xa0|\\x9a\\x0bRi1\\xbf\\x00\\xa4\\x19)gqF?\\xd8\\xc2@\\x84s-X\\xbf\\xf9!\\x1f\\x12\\x8d\\'R\\xbf8\\x0b\\x96\\xedg\\x97m?\\xb40]6\\x96us\\xbf\\xf8p&G\\x00\\x81c\\xbf\\xf0\\xb5\\xce\\xfd\\x91\\x0e]?x\\x9e\\xe8\\xfc\\xa5\\x83F\\xbf\\xb0\\xc0q\\xa7\\xe9\\xb11\\xbfP;h,\\x96\\xae\\\\\\xbfHF\\x11b\\xba\\xc4f\\xbf`\\xde6^\\n\\xbc@\\xbf0\\x02o]\\xe1~P\\xbf@e$T\\xd0\\xf8u?\\x80(N\\x06\\x08\\xfeG\\xbf\\xd0D\\x17h\\x1b\\x98_\\xbf\\xc4X\\xf6X\\xf5\\xb22\\xbf@\\xed\\xa5\\x83>w5\\xbf\\x00 /\\xbd\\xc6K-?\\xc0JK_Z\\xf7^\\xbf\\xfa\\x88\\x91\\xd7\\x9doe?\\x10\\xbf\\xe9\\x0f\\xeb\\xcbe\\xbf\\x00_\\xef\\xa7\\xd2\\x07o?\\xa8\\xd2PX\\x15\\xebn?\\x00\\x87\\x18`#\\xbeD?\\x80\\xde\\xe9N6pJ?\\x85\\x0e\\xba\\x10\\xd9\\x13z?\\x80\\xa1\\xd5!\\xfa.m?\\xd0G\\x91\\x86-\\xf8}\\xbf/\\xfd\\x030\\x1c\\xc1\\x81?\\x8c\\xde}d\\xd4\\xafn?\\xc4\\xc6\\xebv\\xf6\"r?\\xd3fG\\x0e\\xd7\\x07\\x97?\\xc4B\\xb4 t\\xade\\xbf\\xcc\\x16\\x8e`\\x88\\xcdx\\xbf\\x80\\xa3\\xd2u\\xe96^\\xbf\\xc4zh\\xfb\\xb4\\xe3o\\xbf`\\xbf\\x0f\\xabr\\xc2s\\xbfr\\xbf\\xe8i\\xd0\\x0bu\\xbf\\xe1\\xff\\n\\x91rmu?\\x80#=\\xa0\\xb3\\x19{?\\xbe/K\\x17\\xd0\\\\j?\\xec\\xa7\\xe8\\x0c\\xfbTa?\\x18i\\x88`\\xdd\\xb6`\\xbf\\xc0\\xc8ui\\xeb\\x8b@?Xm\\xa2^\\xc47]?\\xf0\\x05\\x10Yf\\xdfa?p^c\\xbf\\xd9\\x13c\\xbfz\\xe8\\xe6<0/H\\xbf\\x10\\xb5\\xf3{\\x1fVT\\xbf\\xc0\\xa1\\t\\x17M\\x163?\\x80K\\xe1\\xc0<\\x12\\x1e?\\x80\\x19|g\\xb4\\xe8\\x17?\\x80\\xe4\\x113j\\xf0M?\\x9d\\x04\\xf2\\x83\\x0bLu?\\xa0\\xf5\\x03\\xaf;L3\\xbf\\xacA\\xe7\\xb0\\x9e\\x15S?v\\x12\\xeb\\xe6\\xff\\x9ai\\xbf\\x899\\xdc\\xd4\\x05\\x07c?\\xb8\\x0brY\\x8bdY\\xbf`\\xf5\\xcb\\xa2!f[\\xbf\\x08?\\x08\\x82(\\x91P?\\xb0T]\\x08\\x88@]\\xbf\\x80N\\xcc\\xe7\\x80\\x1a7?\\x0c\\x14!\\x05\\xec\\xc2w?@|\\xb0N\\xd2\\xf60?1\\x1b2\\xb4\\xf5\\xe9b\\xbf\\xe9\\x12\\xc4\\x98\\xc9\\x86B\\xbf\\xc0\\xf4\\xfa\\n?\\xac6\\xbf@LUP\\xa5\\x9d@?\\x80\\xff$\\xa6Z\\xb74\\xbfT%T\\x0c\\x88Ic\\xbfT\\xa8\\x84~\\xa3\\x1fz?\\xf8\\x9a\\x80\\xf6\\x8bl\\x88\\xbf\\x9c\\x92E\\x9b\\xce\\xect\\xbfy4\\xd6\\x93\\x80eu?\\x00lt\\xfa\\xe2~F\\xbf\\xf2\\xe3\\x05\\x82\\xe5)_?\\x80\\xeb\\\\\\xf5\\x87\\xf6X?\\x08esV\\xbd=\\x80\\xbf\\xd8\\xe3\\x05?J\\x92Z\\xbfx[\\x1f\\xf2\\xa2m|\\xbfx%\\xae0s \\x86?@\\xd9F\\xbb\\xd7\\rU\\xbf\\xd4N\\xa2\\x9d\\xf2)b\\xbf*\\xb9i\\x0fe\\x1en\\xbf\\x08\\xa5n\\xa6r\\xf0b?\\xdc\\xd7\\xc6E\\xbev\\x83?\\xb0\\xc1)\\xc9\\xde\\xd4v\\xbf\\x06\\xda$!\\xaf\\xa7a?\\x085\\xceP\\x04\\xde\\x80\\xbf`Y\\x89\\x82\\r\\xe3x?>|\\xd1jq\\x1b\\x85?\\xb0^\\xdb\\xa5\\x9d\\xd0\\x83?\\xf0\\xdcB\\x13\\xc5\\xe7h\\xbfX\\x8eV1:]g\\xbf \\xc8\\xb7!\\xf5\\xe7\\x8a?d\\xb9ki\\xd6Z\\x90\\xbf5o\\xd0\\xb1\\xda\\xd1\\x95?Tw\\xed>C\\xc4}?\\xd0W\\xees\\x18\\xb8\\x84?E\\x13\\x98\\xe2\\x9b\\xad\\x96?p\\x94\\r[_\\x17X\\xbfW\\xceW\\xb6\\xe4\\xb8\\x92\\xbf \\x87g\\xc4_<\\x8b\\xbf\\x82\\x88\\x90\\x84\\x16\\xae|\\xbf\\x90\\x02u`5^\\x8c\\xbf\\x00\\xd5r\\xe3M\\xf3\\x88\\xbf\\x80#=\\xa0\\xb3\\x19{?\\xd0\\xb2\\xb6\\x84\\x8b\\xbe\\x93?'\ntbsS'weights'\np8\ng3\n(g4\n(I0\ntS'b'\ntRp9\n(I1\n(I8\ntg7\nI00\nS'\\xaa`pM\\xba=\\xb2?\\x02\\xd8c\\x96X\\x9d\\xd2?\\xbdMX\\t}F\\xc6?3\\xd6z\\xe5\\xc5o\\xb2?\\xcb\\xd9\\xbd\\x12\\xf0i\\xae?\\x9c\\xd7\\x94\\xac\\xfb\\xf8\\xc1?\\xd2R\\xaf\\xedNG\\x90?\\xa7.p!\\xb0\\x8b\\xc6?'\ntbsS'means'\np10\ng3\n(g4\n(I0\ntS'b'\ntRp11\n(I1\n(I8\nI69\ntg7\nI00\nS'\\x04\\xd4-\\xc6\\x1c\\x12\\xe2\\xbf\\x9d\\x96\\xca.\\xa0,\\x93?\\xb6\\x17\\x18\\xd2\\xb3}\\xcc?\\xce\\x1f\\xad0^\\xd6\\xe3\\xbf:\\xf6\\x8ev\\xbf&\\xac\\xbfM\\xac[/u\\xd9\\xc8\\xbf\\xf5U\\xbd\\x06\\xb6\\xb7\\xdf?k\\xa2:\\xed\\x057\\x80\\xbf\\x11\\xfa\\xaa\\x8d\\x88O\\x97?t\"\\x88\\xf6\\xd9P\\xeb?\\n\\xef\\xe7\\x19\\x1e\\xb3\\xa3\\xbf\\xc1H\\x08i%\\xf4\\xc9\\xbf\\x96\\xa8o/\\xbci\\xee?\\x08;\\xd1\\xa7()\\x88\\xbf\\xc1(8\\xb3k\\x99\\xc1?\\xf9t\\x03\\xd7e\\xb0\\xa1\\xbf\\x97\\xc0;\\xe7\\xdcJ\\x9c\\xbf\\xa0\\xe8\\xd7\\xfeN\\xb8u\\xbf\\xc8\\x18\\xc2ZR\\x82\\x9c?8\\xcb\\xad\\xdb\\x15D\\xad?\\xe1\\x88\\xab\\xb4\\x88L\\xbb\\xbf\\x93\\xf8\\x9bA\\xb2\\r\\xa9\\xbf\\xe9\\xe8OM_\\xd3\\xc4\\xbf3\\xd7\\x00\\xf5\\x06Y\\xca?_\\xdd\\xe8\\x8f\\x80\\xb3\\x8a?\\x8c\\xb5\\xc6\\x9b.\\xe3\\x90\\xbf\\x99\\xd1\\xa6<\\x8c\\xac\\x8b?I\\xd0WK\\xc8\\x90\\xd1\\xbf\\xc7\\x07\\x10\\x8d\\x01\\xe6\\xcb?\\xb4\\x9dj\\xc9\\xb5\\xa4\\xc0?\\x13\\x02LK\\xfb\\x93\\xbf\\xbf7\\xf5\\xd5|\\xa2\\x14\\xbe?\\xf5Omr%m\\xd3\\xbf;\\x86\\x10\\xd4\\x80\\xa2\\xa8\\xbfI\\x03\\x03\\x00Z\\xd9\\xb1?\\x97\\xac\\x87\\x85\\xb1\\x10\\x81\\xbf\\xa6\\x1a\\xce9\\x12\\xd3\\xb9\\xbf\\xd1]\\x9b\\xc5\\xd3\\xf5\\xd2\\xbf:Q3\\xca\\xf1\\x05\\xb6\\xbf9\\xb8(\\xed~\\xbe\\xbc\\xbf\\x9d\\x8a\\'\\xa0\\x1d\\xc5\\xd4?\\x895|{\\x0b\\xba\\x98?\\x11\\xc6o1_\\x10\\xba?\\x81-*\\xbb\\x99ls\\xbf\\xcc\\xc0\\x99\\xb9\\xe4\\x94\\x9d?:\\xc4,\\x14\\x8a\\xd7\\xc1\\xbf\\x8b\\n\\xdf%\\x84{\\xd8\\xbf\\xc2s\\x19\\xc6\\xc2\\xb2\\xdc\\xbf\\xa7\\xaaG\\xd0G@\\xc5\\xbf\\xf7S\\tG\\x08\\x92\\xd6?\\xc9S\\x8e\\xd6\\xcf\\x01\\xda?@\\xd9\\xae\\xa7t\\xaf\\xa3\\xbf\\xd0(Z\\xfdk\\xd4\\xef\\xbfI:\\xf5\\xbb\\x82L\\xd9?y\\xb1\\xea\\x000\\xbf\\xcb\\xbftre\\x08\\x1f7\\xee?wP\\xe3\\xfc\\x16\\xc0\\xd9\\xbf~u\"f\\xafID?\\x92E\\x99IPW\\xc0\\xbf \\xf0\\xe1fei\\xc7?,\\xd4\\xb3J\\xf3d\\xb1?Nz2\\xab)~\\xb6?\\xb2\\xedze\\x98\\xf8\\xcb\\xbf\\xe4!\\xc2n0\\xaf\\xc2\\xbfE\\xca\\xef$\\x80p\\x98\\xbf\\x17\\x15-\\xd2\\xe37\\xc0\\xbfr\\xbe\\x0cn\\x1b\\xca\\xb5\\xbfMm\\xec\\xbd\\xf1b\\xb8?<\\xe5\\x97\\x0c\\xaf\\x80\\xc4?\\xdd\\x9e\\x8e5\\x0e\\x12\\xc0\\xbf\\xf1\\xbfR\\xf8\\xf9v\\x93\\xbf,\\x8e\\xe6\\x8a(\\xc4\\x80?g\"]\\x9d\\x99\\xcb\\xbf\\xbf\\xb1\\x84\\nW\\xf1\\xaa\\xa5\\xbf\\xfa\\x8a\\x9b:\\x12\\xfd\\xa0\\xbf\\xa2\\xfeXKVR\\xca?\\xbf\\x0f\\x01\\xb6b\\x87\\x87?w1\\x08LW\\xfc\\x81?0\\xb6\\xd3KU:\\xd8?A]\\xd5DY\\xc3\\xc1\\xbf\\xef`\\x11+/\\xed\\xb7\\xbf\\x11\\x82\\xf3\\xa8\\xdap\\xdb?\"\\x05\\xca\\x90\\x8a\\x05\\xa4?\\xcf=\\x93 ]\\xb7\\xb4?i\\x84\\x10\\xfd\\xe5\\xe6s\\xbf\\xe9\\xe9\\x1f\\x8eai`?c\\x85\\xef.\\xba\\x11\\x90?]\\x15\\xb0H\\xfd\\x99\\x9a?\\xaa\\r\\xeb\\xdb\\xe7\\xe0\\xb6?\\xcc\\xccW\\xce\\x1b\\xfa\\x95\\xbf\\xb2\\xac<b\\x10Y\\xb0\\xbf\\x9fH\\xabDU\\xab\\xc9\\xbf\\xa2\\xd9o\\xc4\\x902\\xc1?CY\\xe6_Q\\xcd\\xb0?\\xbb\\x07lfhR\\x9e\\xbf\\x17i\\xfd,\\xaa\\xc5\\x8e\\xbf\\x88\\xd8G\\xd1\\xf7I\\xcf\\xbf\\x1d\\xfb,\\xc7I\\x8d\\xc8?\\x90\\x03\\x02~\\xda\\'\\xb2?k`\\xdb\\xa1k\\x7f\\x99\\xbfl<\\xfb\\xa4\\xd49\\xc9?v7J\\x86\\xb5\\xe4\\xcc\\xbf<\\xcby\\x8c\\x16e\\x9b?O\\r\\x90\\xa6\\xc5\\xfe\\xb0?\\x8e\\xf4C\\x80\\x84\\x14\\xb3?\\x1b\\x1awh`\\xc3\\xa7?\\x8e;\\xb5lS\\xdd\\xb5?P\\xca_\\xb064\\xe0\\xbf?\\xef\\xc0\\xc5\\x1e\\xee\\x86\\xbft\\x85&\\x8d\\xfa^\\x98?\\xf5\\x19\"}Cx\\xe1?)\\xe9v*\\xe5\\xa3\\xd6?\\xde\\xc8a\\xc7q\\xf2\\xae\\xbf\\r\\xb5\\xd8_\\xa5\\xf9\\xb4\\xbf\\x11\\xef[\\\\u\\x18\\xb1?\\x9d\\x8a8\\xb7\\x97\\xe5\\xcc\\xbf\\x1e\\xabc\\xf1/\\xe4\\xeb\\xbf(\\xea\\xa1a,\\xb0\\xc6?\\xfe\\xe3\\xc4\\xd0\\xb2\\xf8\\xcf?>\\xcb\\x86gx\\xaa\\xea?\\x8fN\\xc4\\xc2\\x84M\\xc1?\\x1f\\xa8-\\n\\x0f5\\xdc\\xbf\\xa3h\\x7f!>J\\xbf?\\x14\\xa6\\xf9\\x8bzQ\\xbf\\xbf\\xc4\\xa9\\xd1\\x00\\x9d\\x15\\xd8?\\t\\xf1\\xc7 \\n#\\xc1\\xbf\\xbe{\\xb4F\\x0bo{\\xbfDC\\xdb\\xe4\\xf8_\\x92?\\x06A\\x9ed\\\\\\xc2\\xb5\\xbf\\xb9\\x02]uD\\xbd\\x9f?\\xb3<\\xcb\\xa5.\\xb3\\x84\\xbf\\xfa\\xdf\\xe9 B\\x1a\\xa5?#3\\xb3\\x87o\\xd7\\xc7\\xbf\\xc6\\xe3\\xc7\\x80\\x97\\x07\\xb4\\xbfD\\x83\\xb2V$\\xc4\\xc7\\xbf$\\xec@\\xfb\\x13\\x90\\xb9\\xbfW9Xq0\\xe0\\xbe?\\xbbcY|o\\x85\\xcd?\\xa7O\\x05\\xcdT\\x0c\\xd5\\xbf\\x08_\\xd3j\\xbe\\x00\\x87?\\x98N\\xbc\\xdepy\\xc5?\\xeb\\xf3g<\\n\\xfb\\xd9\\xbf\\tv\\xb6\\t^\\\\\\xa1\\xbf\\n6\\x82\\xf9\\xd78\\xc4\\xbf\\xe5\\x19zY\\xa9+\\xd3?\\xf4\\x8f`\\xfd\\x1f\\x99z\\xbf\\xe4`\\xf2\\xeb8\\x02w?\\x00Y\\xd3\\xee\\x0br\\xe0?}P\\x9c\\x06k\\x18\\xb3\\xbf\\xeb\\xd0\\xb3eK\\r\\xc0\\xbf\\xff\\xab\\xf9)\\xd1p\\xe4?\\x0b\"B\"\\x06\\x8e\\xa3?\\x82*\\xd0\\x99D\\xb3\\xb5?\\xa7\\r\\x003\\x19Y\\xa0\\xbf7\\x12X\\xe1\\xa5\\xee{\\xbf\\x95\\xd3\\xa5k\\x00\\xf7\\x8d?K\\xfd\\x02\\x8f\\xb9\\\\\\xb0\\xbfPG\\xca\\x97Y\\xc0\\xbb?\\xc2\\x17 \\xfdF\\xd5\\xb9\\xbf\\xe7@e\\xf7}R\\xbf\\xbf\\xb4r\\x92l\\x89\\xc6\\xc8\\xbf\\xe4\\xe8NSU\\x84\\xce?\\x18\\xaa\\xa5\\xf4\\xfd\\x1e\\x95?\\xe2\\x8f\\xe6\\x86\\xce \\x9c\\xbf9\\x07\\x8b\\x04\\xcf\\'\\x81?6-\\xb3\\x86\\xfaW\\xcd\\xbf\\xa2l7\\xf5{]\\xc8?\\xd4,\\xbc\\x9aRW\\xca?\\xffZ\\x1d\\xbf\\xeb\\xa4\\xb7\\xbf^\\x8c\\x0f\\xc2\\x16\\xd6\\xc2?\\xcai\\x10\\xa2\\xa42\\xd7\\xbf\\x87H$h1\\xad\\xc8\\xbf\\xd3\\xee\\xd7\\x171\\xd0\\xbb?(\\x81\"\\xb3\\x9c\\xff\\xa6?7\\xe3~\\xad\\x1c\\xf9\\x97\\xbf\\x85\\n?~\\xce\\xa9\\xa4\\xbf\\x9a6\\xe9}\\xcf\\xcc\\xd4\\xbf\\xf3:OG\\xab\\x01\\xaf\\xbf\\x92\\x90=/\\xcc=\\xba?\\x1f\\x9d\\x90\\x9f\\x97\\xa1\\xd4?\\xcajB[Ed\\xc2?\\x13\\x89\\xef\\x1d=\\x07\\x93\\xbf\\xd5r\\xbf\\xf1\\xfd\\xa5\\x9d\\xbf\\xcb\\xd9\\xc2\\x90\\x0c\\xf6i?\\x1b\\xc0:\\xc5\\x04Q\\xd0\\xbf\\x0bc\\x04\\xbb\\xd4\\xd3\\xe4\\xbf\\x18N\\x0b\\x16\\x8b\\xda\\xb3?p\\x94X\\xd7\\xc4)\\xd0?I \\x1a\\xb46Q\\xe4?D]\\t\\x94\\xfcH\\xa9?fkH\\xfa\\x1a\\xd7\\xf0\\xbf\\xa7\\xe4\\x8fD;\\xc1\\xd5?Q\\x85 =\\xe7\\x0e\\xc2\\xbf\\xa7\\\\\\xed\\xdbW0\\xf0?\\xac\\x8c\\xeb\\xc5\\xbb\\xbc\\xd6\\xbf+\\xcc\\xf1\\x1d\\xd46\\x93\\xbf\\x89\\xde\\xd9\\xa5N\\x1a\\xb5\\xbf\\x14\\xa3N\\xacC\"\\xc2? >\\xd6\\x92\\xdeq:?\\x92Y+\\xdeP\\xba\\xb6?*Y\\x91\\x86\\xe7&\\xbb\\xbf\\xf2y8\\x03\\x89\\xda\\xc5\\xbfZ9\\x9d\\xc5-\\x16\\xaf\\xbf\\xf4\\x15\\xd0\\'\\xeb\\x9e\\xca\\xbf\\xba\\x0b\\xf1Pm\\xed\\xbb\\xbfw\\x88\\xa6k\\x0cj\\xbb?\\xb4\\x17X\\'w\\xaa\\xca?\\xb9\\x0bd\\xfc\\x97\\xbd\\xdc\\xbf(\\xc3\\x92\\x0f\\xb3\\xfc\\x82?\\xf1t\\x1d>\\x93\\x16\\xc0?\\x1fJu\\xc4\\xa2i\\xdf\\xbf:\\xd2*\\xf5{\\xd0\\xa4\\xbf\\x1aO\\xe8U\\xb3\\x06\\xae\\xbf\\xabt\\xfb!\\x10\\xa7\\xd8?g\\x1e\\xa9\\x825\\x96\\x9f?\\x06*\\x94P\\'\\x14\\x92?\\x05\\\\\\xb9=3\\xaf\\xde?\\xd0\\x93\\xf0\\x91\\xe3K\\xba\\xbf\\x1bLVs\\x02\\xc8\\xba\\xbfQ\\xa1qW\\xdcC\\xdc?:\\xa9`\\x0c\\x10sR?\\xc2`\\x94+\\x04\\xe4\\xae?\\t\\xe6\\xd8\\xe4\\xd3\\xfb\\xb5\\xbf\\xcc\\xces\\xcbGs\\x95\\xbf\\xce\\xda\\x12.\\x02\\xd1\\x9a\\xbf\\x89+\\x87r\\x12\\xea\\xb5?\\x8e\"m\\xff\\x14\\xd5\\xca?!Uj\\x91\\x95o\\xb7\\xbf\\x94/HX6l\\xae\\xbfxxd\\xb5\\xc7\\x9b\\xd1\\xbf\\xf4\\\\\\xcdW\\xafX\\xc1?\\xbete\\x16\\x10d\\x93?\\xae\\xc9\\x93\\xaf\\x19T\\xac?GG\\xbd\\x14\\xf7\\x80\\x9d?.\\xbb\\t\\x10[<\\xd0\\xbf5D\\xe3\\r\\xf4r\\xa0?\\x02\\x13\\xe1\\x0b\\xedH\\xc2?f1\\\\\\x8e?\\xce\\x9f\\xbf\\xfbf\\xbbI\\xb0\\x8a\\xc0?\\x8e\\x14\\x88\\x87\\xe7u\\xd5\\xbfDmf\\xach^\\xa8\\xbf\\xedl_\\xafV4~?v\\xc9\\xe7\\xcc`\\xa6\\xc1\\xbf\\xaa\\x89\\xe6p\\xf9\\x87\\xb8\\xbf\\x90\\'\"\\xbb\\xb2\\x1c\\x97\\xbf\\xa9z;\\xab\\x9b\\xfd\\xb2\\xbf\\xd4@kq$r\\x93\\xbfI_\\x97\\x86q\\x18\\xc5?!T\\x7f\\x18C@\\xb1?5\\xa4\\x90\\x0c\\xac~\\xce\\xbf\\xee\\xd0]\\x97M\\x00\\x9c?\\xd31\\x0e\\xc8\\xf9\\xcf\\xc5?f\\x9cO\\xf9\\x10lp?5W\\xa9\\x0f\\xd5\\xb4\\xc2\\xbf-\\xb3\\x83\\x82R\\x9e\\xe0\\xbf\\xa2\\x83\\x03\\x827V\\xc2\\xbf6\\xca\\x9b\\xed\\xf6\\xc2\\xc7?\\x92+-\\xaa\\xd3\\xfc\\xdc?\\xc9\\xa3\\x86\\x0f\\x1ag\\xb7?\\t\\x99&\\x8f\\x92[\\xe6\\xbf\\xd4\\xfc\\x7f\\x8e\\xc7\\xa1\\xc9?\\x10\\x15L|\\x98;\\x92?A\\xb9\\xc9\\x08Q\\x98\\xe4?\\xb5Ix,\\x95\\xaf\\xc8\\xbfU0\\xc2\\x18\\x88P\\xb6?0\\x07@\\xc9U\\xb6\\xc4\\xbf\\x16\\xf9j\"\\xa7\\xc9\\xc6\\xbf\\xa6\\xa5\\x05\\x17\\xb6\\x88\\xa1?mh=\\x15\\xe7\\xaa\\xc2?5\\xb3\\xb8\\xc0\\x8a\\xef\\xbe?\\x08\\x01\\xd4\\xbd\\x11\\xad\\xc2\\xbf\\xa4\\xc1\\xf4.T\\xe6\\xbd\\xbf\\x90\\x08f\\xb3l\\xf3\\xc9\\xbf\\x85\\x14\\xbae\\x99\\x8d\\xb5\\xbfc|\\xf1OG\\xe7\\xbd?\\x13\\x19r\\xc5\\x0c\\xdc\\xcb?\\x9a\\xbd{\\xca\\x8ca\\x81\\xbf\\xcde\\x97/M\\xc6\\xaf?[\\x08\\xa6\\x15\\xc1\\xf9\\xb4?:Oz(\\xc8\\xd4\\xa0\\xbf\\xdc|\\x14-\\xfan\\xa9\\xbfw1\\xe8\\xa54\\xb3\\xa8\\xbfu\\x97\\x03\\xc3\\x03\\x04\\xa5?$\\xbf%\\xea\\xa6\\x17\\x9c?6PD8\\x83\\xefi?\\xeay\\x14\\xc2\\xa5\\xb1\\x98?_W\\xe6\\x8d\\x7fJ\\xa5\\xbf-U|c)\\xd9\\x9f\\xbf\\t\\x1er\\xc8\\x11\\x8c\\xb5?hl\\xb1\\xccz(\\x8a?`p\\xfc\\xa5\\xe4`\\x9f?\\xd4\\xce\\x88\\xbf\\xa1\\x17\\xb1?\\xad\\x9d\\x1c\\x8d\\xbf[\\xa1\\xbfC\\x11\\xc0\\xa4\\xd1\\x12\\x9a??\\xd7i[\\xa0\\xd7\\x90?uO\\x0fey\\xa4\\xc4?}\\xd28!b\\xf0\\xab\\xbf\\x99v\\x11\\x07\\xe4\\xd3\\xab\\xbf\\x18,\\x0c\\xb6?\\x0b\\xc4\\xbf\\xfb\\x99p\\x96\\'A\\xab?\\xd7\"$\\xf4\\x8b\\xd1\\xac\\xbf\\x00\\xdf\\x06\\x1bO%Q?\\x04u\\xd4N{=v\\xbf\\xa9\\x91\\xber]\\xe0\\xc0\\xbf\\xe0\\x8f\\xc1P\"Q\\xba?T*\\xb4i{\\xcb\\xbc?V\\xaa\\x97F\\xe2\\x89\\xb6?\\xbb\\xcd\\x06\\x04\\x0b\\xe6\\xa4? \\xa5\\xff\\x80\\x84\\xee\\xa2\\xbfq\\xda\\xa3\\x11I+\\x95?\\xe1m\\xe4x\\x8bM\\x95?GG\\xc5(\\x16K\\xa9?\\x03\\xdd-\\xeb\\x94\\x96u?\\x15\\xb8{\\x8aj%]?Z\\x14\\x1cR\\x85.\\xde\\xbf\\x1ea^[zt\\x97?\\x86\\x93\\xda\\xeb\\x01\\xea\\xba?5>\\x84\\x1e\\xe3|\\xdf?8x\\x85K(\\xa0\\xc6?\\xa1\\xf6\\x9afz\\x8c\\x8c\\xbf\\x17\\xd1\\x8d}6`\\x90?\\xe9\\xbe\\x95u\\xd9\\xb6\\xce?\\x85\\xff\\x82\\x91\\xfe\\xa2\\xd0\\xbf\\x10\\xf6\\x87\\x7f\\xfb\\xf1\\xec\\xbf\\xe2\\x1f\\x97\\x9c\\xcf\\xe4\\xce?wV\\xbbCcW\\xce?\\x8f\\xa2ds&\\x84\\xeb?\\xe7\\x9c\\xd5~Q\\x1d\\xc1?\\r\\xf2\\x1c\\xca\\x03\\xf1\\xd2\\xbf\\x91\\xf7P\\x84\\x9fA\\xb3?>\\xa7\\xa2pB\\x8a\\x96?\\xee\\x16z\\x94\\\\\\x9a\\xd1?\\xd7\\xbb\\xec^\\x96^\\xb4\\xbf\\xc3`\\xb6\\xce\\xac\\xb4\\xbf?d\\xf1\\x82<\\xf0\\xba\\xc1\\xbf#\\xfe\\x0b\\xd7\\x89\\xec\\xb2\\xbfieu\\x9e)N\\xa9?\\xae0\\x17\\x95\\x05F\\xb5?\\xaf\\r\\xfbc\\xfd~\\xb3?yc]\\xf4\\xb3\\xb9\\xc8\\xbf\\xf0\\xa6\\xfa1)3\\xb8\\xbf$t\\xa5\\xde\\xc1\\x0b\\xca\\xbfU\\xc0j\\xf4s\\xc4\\xba\\xbfA\\xa1\\xdd\\xad\\xd9\"\\xc0?\\xd4-\\xef\\xeax\\x8e\\xcb?<j\\x18\\x13Z\\xb9\\xc2\\xbfL\\xa0\\xed\\xb8\\xbf5\\xae?\\xc0o\\x80\\x93YB\\xb9?\\xf3/\\xf9\\x9a\\xf0\\xc8\\xc5\\xbf\\x04\\xb9\\xc1\\xc7\\xae!\\xa5\\xbf.\\xfbh\\xa7\\xa8\\xed\\x9e\\xbf\\xa2\\x06\\x18Yd9\\xc0?-\\x01\\x1b\\x07{d\\xa3?4\\x1b\\\\\\x06\\x87\\xb0\\x83?\\x8a\\xc0L\\x7f\\xe2\\xaa\\xa0\\xbf\\xa5/\\x1e\\xf9PA\\xb1\\xbf\\xa9\\x16\\xa0\"Y\\\\\\x92?\\x08\\x0b\\x0c\\x0e\\'<\\xb7?\\x0e$\\x1a2\\xf5\\xfc\\xab?\\xecc\\xce\\x99\\x05@p?\\xfa/\\xcb\\xb9\\x0c\\\\\\xa4\\xbfQ\\xeb\\xe9U\\xbb\\xe3\\xb2\\xbf\\x99\\xfa\\xaey8oQ\\xbf\\x84\\x8e\\xf0\\xe1\\x1a\\xa2\\xac?\\xa4D\\x1a\\x84\\xdff\\xc7?dT\\xf0\\xdf\\x89\\x81\\xb2\\xbf9\\x10\\x95c\\xfb\\xb6\\xa5\\xbf\\x8c\\'\\xfdk\\xa8f\\xc9\\xbf\\x8b\\xd3\\xca\\xda\\xaf\\xea\\xc2?|$o\\xa6-R\\xb0\\xbfM\\xc1E{R\\xf6\\xaa?\\x8b\\xca\\xa44LR\\x90?\\xbf\\xd0\"\\xd5\\x0b8\\xc7\\xbf\\x1bpi\\x8cN\\xd1\\xb7?\\x8cN`\\xe6&\\x91\\xc2?\\xfe\\x83f?\\xc8D\\xae?`\\x8b\\x17t\\xb2&\\xb5?\\x81\\xf3u\\xd3\\xfbA\\xcb\\xbf\\x8e\\xabq\\x00\\xf46\\x95\\xbf\\xfagT\\xe2E$\\xb1\\xbf5Z\\x84\\x14k0\\xae\\xbf\\x99\\xc9\\x8b\\xa13\\xcb\\xc1\\xbf\\x92\\x10\\x83\\xfa\\xa0\\x85\\xcf\\xbf\"M\\x16B\\x0b\\xc9\\xcb\\xbfo0K\\x85\\xce\\xc7\\xb5\\xbf&@\\x9c\\xa6\\x808\\xd5?\\x93\\xb2\\x1cu\\x81\\x04\\xc4?\\xa2.8\\xb1\\x93\\x06\\xc3?dav\\xe9\\xe0e\\xb8?t\\x94\\x96\\xc5\"\\x04\\xbe?\\xcb\\xd8{9\\xd1\"\\xc0?\\xec\\x93\\xae\\xa4\\x8b\\xb9\\xda\\xbf\\'\\xea\\x04Q\\x98\\x99\\xe1\\xbf\\xd2\\xb0\\x8d\\xc3\\xe0i}\\xbf\"\\xa5\\x9b\\x95\\x18\\xc9\\xdb?\\xe8\\xda5\\x07\\xd3W\\xda?\\xed\\xdfe\\x94G9\\xac?\\xc0\\x08\\xa6\\xec\\x9b|\\xf4\\xbf\\xf8\\xbb\\x80\\xf3Z\\xc2\\xd3?\\xe4\\xd4\\x14\\x1964\\x9c?\\xf1\\xadf%\\xbf\\x86\\xf5?\\xe5\\xe3\\x8fC\\xf2\\xa0\\xc7\\xbf\\xea[S\\xc20\\xcb\\xc1\\xbf\\xc1_\\xac\\\\\\x7f\\\\\\xc0\\xbf\\xf5\\xca\\xef\\xc7\\x1e\\x8d\\xc0?Jb\\xf6KF\\xc2\\xbc\\xbf\\xec-\\r\\x1e\\xc1\\xb2\\xc3?\\'`\\xddD7\\xd2\\xc2\\xbf~f\\xf3\\xe0Si\\xc0\\xbf\\xcb\\x11\\xe3\\xcfW\\xa5\\xc7\\xbf\\xfe\\x00\\x8c\\x83\\xcb\\x00\\xd5\\xbf\\x01\\xd6\\xc2\\xfc\\x1c%\\xbf\\xbf)}3\\xf9 R\\xc5?W\\r\\xb0\\xa4\\x03M\\xd4?\\xce \\x1e\\xbc\\x19\\xa5\\xe1\\xbf\\xab\\x11 \\x19\\xe2\\xec\\x9b\\xbfM!\\x7f\\r\\xc3\\x0f\\xaa?%*\\x0e\\xdd\\xd3\\xee\\xe0\\xbf\\xdd\\xcf\\x8f%\\x85(\\x9a\\xbf\\xad\\x9c\\x15\"[K\\x96\\xbf9z\\x8c\\xbb\\xa9\\x02\\xe0?\\t\\xdf\"\\xd4\\xf8|\\xae?\\xfc\\xc0\\xae\\xc0*\\x9c\\xa4?i\\x94\\x14\\x87|\\x10\\xc2?\\\\\\xd4[~\\x15m\\xbb\\xbf\\x9d:\\x16`\\x9d\\x94\\x98\\xbf\\xd4\\x9dq\\x8f\\x90N\\xc7?\\x80\\xa0\\xe94\\x8e,\\xb7?z\\xb6J\\x08\\x88\\xd8\\x8a?s\\xe4>/\\r\\xcd\\xb1\\xbf\\xd2w9\\x0b\"\\xe8\\xb5\\xbfe\\t2\\xde\\xa6\\xaa\\xb0\\xbf\\x89\\xb5\\xe6B^\\x11\\xaa?L\\x97Cm\\xb3Y\\xc9?7\\x05\"\\x94\\x81\\x14\\xc1\\xbf\\xea\\x98\\xee\\x0b\\xe3\\x9d\\x8d?Dy\\xb6\\xc0\\xa5W\\xd7\\xbf\\xc0\\xa7\\xac\\xb4\\xa3\\xd2\\xd1?\\xbf\\x18\\xa4\\x97\\xb7\\x16\\x94\\xbf\\x8c|\\xbe\\xf3\\xe6\\x00\\xb5?\\xcf\\xa1\\xceT*\\x07\\xb0?\\\\\\x93\\xc9|I\\x88\\xba\\xbf\\x14\\xd3\\x16\\xbe@h\\xb6?\\x12*\\x8f\\xee\\xebx\\xc4?\\x95\\x00W\\x00\\x9c\\xa0\\x9d\\xbfN$\\x17\\x81\\xb6\\xe7\\xd5?\\xe6\\x01<\\x10\\xb3\\x98\\xe0\\xbfJ\\x97$\\xee4\\xef\\xc6\\xbf\\x109\\x88X\\xa71\\xb6\\xbf\\xc9\\xc0:\\x0e\\xd5g\\xc7\\xbf)\\x1a\\xf0\\xc4\\xf6$\\xcf\\xbf\\xf2\\xa2\\x94\\xb9\\xcd\\xe9\\xe9\\xbf:\\xbd\\xa2\\xcd>\\x7f\\xa4?\\xbc\\xe1\\xefvn\\t\\xc6\\xbf\\xbe\\\\\\t\\xce\\xb8V\\xeb?e\\xd5i\\xbdM\\xa0\\xc7\\xbfg\\x90\\xcc\\x84\\xb5\\xec\\xb2\\xbf\\xff,\\x9f\\xc5I\\xea\\xa1\\xbf\\xc4\\xc0yw\\xfa)\\xd1?\\xad\\xdd\\x8b4\\xe3u\\xd3\\xbf\\xdc\\xe8\\x9b\\xe1\\x85\\xc7\\xe1\\xbf%\\x1b\\x11R\\xf5\\x87\\xa4\\xbf\\xf15e\\x9a\\rj\\xe0\\xbf\\x06\\x85&\\x7f\\x0c\\xac\\xe2?\\xce\\xafv\\x82\\x8eC\\xa2\\xbfMu\\x96\\xf8\\xe9\\xbb\\xd5\\xbf\\xef\\x03\\xcd\\xde\\x14\\x9f\\xea\\xbf\\x17\\x1d\\x87H\\xe4\\x8f\\xd1?\\xdf?\\xb3\\xfd9\\xa9\\xd7\\xbf\\x0e\\x82\\xf04\\x99u\\xe6?s\\t4IdL\\xcc\\xbf\\xdc\\xc5\\x06\\xe7\\xd6\\xf1\\xb2\\xbfn\\xf8\\xb99\\xd2.\\xb8\\xbf\\x88\\xd3\\xe1F\\xdb\\xb7\\xce?\\xaf\\x13\\xd8^\\x9d\\xec\\xba?5\\x95>\\xc6\\xc6\\x84\\xb7?\\xe7\\x9f!\\x1f\\xe0,\\xcf\\xbf\\xa3[-\\xd2\\xe8\\xb1\\xb2\\xbf`L.U\\x8b9\\xc0\\xbf\\x9d\\xc43\\xa1\\xbd\\xda\\xc7\\xbfQ\\x90.\\x01]b\\xbe\\xbfr\\x92+\\x03M\\xd0\\xc0?\\xe8_\\xf92\\xc1\\x84\\xc8?s\\x93\\xcd\\xa1F\\xe7\\xa9\\xbf\\x9f|\\xec\\xb7\\x92\\x94\\xa7?[\\xa3Db\\\\\\xaf\\xb6?X\\xa5a\\x03\\xe2\\xa2\\xb7\\xbf\\xd7y\\x9b\\xab\\xb4]\\xa9\\xbf\\xe4\\xf3\\xcc#\\xea\\xda\\xb0\\xbf\\x9f9\\x8e?\\xab\\x90\\xc4?\\xbd\\\\Mu\\xbc\\xd5\\x80?:s\\xcd\\xf2p\\x10\\x83?\\n\\xd3\\xe7\\x94\\xa0\\x86\\xb2?\\xd9\\xf3\\xe5=\\x13\\x0f\\xa2\\xbf\\x84\\xea\\xd8\\x01\\x02\\xa9\\xaf\\xbf\\xd8hk- J\\xc5?{\\x93\\xdd\\xbf\\x10{\\x91?\\x05\\x91\\xd84\\x80\\x93\\xaa?H/X^\\xe8\\xc4\\x9b?\\xa8\\x01\\xbb\\xbc\\x82\\xf8\\xa2\\xbf\\x98\\xb3+\\x14\\xf7\\xaf\\x94\\xbf\\xae{\\xca|\\xf2\\xd4\\x8a?\\x06\\xe4\\xcd\\xd7\\xb3k\\xbe?c\\xaf\\xe0l\\xf0>\\xb7\\xbf\\xdco\\xb2\\xc5\\xd3\\xcc\\xaf\\xbf\\xbbq\\x90\\xed ;\\xc8\\xbf\\xcd\\x8f0\\xa4\\xda\\x85\\xc4?\\r@Uy\\xfe\\x1a\\x8d?+\\xca\\x1c\\xe6mu\\x8f\\xbfp\\x7f\\xbd\\xd3*\\xcbg\\xbf\\x11\\xaf\\xc8E\\xbd\\x90\\xc1\\xbf\\x0f\\x08-\\xca\\x1d\\x80\\xc6?\\x85\\x93\\xec\\xc9 u\\xc3?-\\x0e\\xddE\\xa9u\\x99?\\xaeF\\xfeM\\xe0\\xe0\\xc0?h\\xe9\\x07\\x12i\\x07\\xcb\\xbfF\\xe3n\\x11\\xb2\\x95\\xb0\\xbf\\xf4\\x7f\\xc8\\x1e\\xe6\\x07\\x9a?\\xec\\x92\\xf4\\x8dIU\\xaf?\\xdb\\xd8\\xcd\\xfbR\\x8d\\x9b\\xbfB\\x90M)b\\xb2\\xc8\\xbf\\xdc\\xbd\\xa5\\xdc\\xc5\\xb1\\xd2\\xbf\\xb9\\xb4\\x84\\xa0\\x0e\\x8c\\xb2\\xbf\\xd5\\xa4\\x7f\\x97\\x87\\x12\\xd1?oV\\xd1m\\r\\xc0\\xc9?\\xd9E\\x8c\\xe5M5\\xc7?\\x9dtJ\\xa8\\x0c\\x9a\\xad\\xbf\\xc5\\xd3\\x84U\\xd7\\x03a?\\xbfE\\xe1q\\xfd\\x8a\\xac?\\xe2\\xde\\x087\\xb4!\\xd6\\xbf\\xf7:\\x05\\x82c\\xcc\\xe5\\xbf\\x8a\\xe4R\\x1b\\xff\\xf7\\xa4?h&r\\xaf\\x18v\\xda?-Sr\\x15?g\\xe2?\\xadk{\\xe5\\'\\x80\\xc4?\\xbb\\x99\\xdc\\x97\\xf6\\x93\\xf0\\xbf\\x8d\\x8a6\\x8a\\xdd\\xa2\\xd1?\\xf1n\\xf4\\x03\\x1c\\xa2z?\\x86\\xc6\\x06\\xac\\x1a\\x15\\xf2?\\x1e\\x17\\xd3\\xee!\\xcd\\xd5\\xbf@;\\xbd\\x04\\x00Q\\x8b\\xbf\\xb4\\xc0k\\xaf\\x1c\\xb3\\xc4\\xbf\\x12\\x9d\"SO0\\xb7?$MRx\\xe80\\xa6\\xbf\\x96/PSRv\\xbd?\\xcft\\\\\\xb9j\\xc6\\xba\\xbf\\x18+\\nx\\x85k\\xc6\\xbfY0(WCW\\xa0\\xbf+\\x0b\\xc6HX$\\xc6\\xbf{\\xa7\\xd0r\\x90\\xac\\xb9\\xbf\"\\xbe\\x7f%\\x91=\\xba?\\xfc.\\x1e=\\xf4\\x02\\xc7?'\ntbs."
  },
  {
    "path": "visualize/joints2smpl/smpl_models/smplx_parts_segm.pkl",
    "content": "(dp0\nS'segm'\np1\ncnumpy.core.multiarray\n_reconstruct\np2\n(cnumpy\nndarray\np3\n(I0\ntp4\nS'b'\np5\ntp6\nRp7\n(I1\n(I20908\ntp8\ncnumpy\ndtype\np9\n(S'i8'\np10\nI0\nI1\ntp11\nRp12\n(I3\nS'<'\np13\nNNNI-1\nI-1\nI0\ntp14\nbI00\nS'\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\'\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00!\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00$\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00*\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00-\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x003\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x000\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x006\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0b\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\n\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x16\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x17\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x18\\x00\\x00\\x00\\x00\\x00\\x00\\x00'\np15\ntp16\nbsS'parents'\np17\ng2\n(g3\n(I0\ntp18\ng5\ntp19\nRp20\n(I1\n(I20908\ntp21\ng12\nI00\nS'\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00&\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff%\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\"\\x00\\x00\\x00\\x00\\x00\\x00\\x00 \\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1f\\x00\\x00\\x00\\x00\\x00\\x00\\x00#\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1d\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x12\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x14\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x1a\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x19\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x10\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\r\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00(\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00)\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00+\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00,\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x001\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x002\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00.\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00/\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x005\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x004\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x13\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x15\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x11\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x08\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0e\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x05\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x03\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x07\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x06\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x04\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\xff\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\t\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0c\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x0f\\x00\\x00\\x00\\x00\\x00\\x00\\x00'\np22\ntp23\nbs."
  },
  {
    "path": "visualize/joints2smpl/src/config.py",
    "content": "import numpy as np\n\n# Map joints Name to SMPL joints idx\nJOINT_MAP = {\n'MidHip': 0,\n'LHip': 1, 'LKnee': 4, 'LAnkle': 7, 'LFoot': 10,\n'RHip': 2, 'RKnee': 5, 'RAnkle': 8, 'RFoot': 11,\n'LShoulder': 16, 'LElbow': 18, 'LWrist': 20, 'LHand': 22, \n'RShoulder': 17, 'RElbow': 19, 'RWrist': 21, 'RHand': 23,\n'spine1': 3, 'spine2': 6, 'spine3': 9,  'Neck': 12, 'Head': 15,\n'LCollar':13, 'Rcollar' :14, \n'Nose':24, 'REye':26,  'LEye':26,  'REar':27,  'LEar':28, \n'LHeel': 31, 'RHeel': 34,\n'OP RShoulder': 17, 'OP LShoulder': 16,\n'OP RHip': 2, 'OP LHip': 1,\n'OP Neck': 12,\n}\n\nfull_smpl_idx = range(24)\nkey_smpl_idx = [0, 1, 4, 7,  2, 5, 8,  17, 19, 21,  16, 18, 20]\n\n\nAMASS_JOINT_MAP = {\n'MidHip': 0,\n'LHip': 1, 'LKnee': 4, 'LAnkle': 7, 'LFoot': 10,\n'RHip': 2, 'RKnee': 5, 'RAnkle': 8, 'RFoot': 11,\n'LShoulder': 16, 'LElbow': 18, 'LWrist': 20,  \n'RShoulder': 17, 'RElbow': 19, 'RWrist': 21, \n'spine1': 3, 'spine2': 6, 'spine3': 9,  'Neck': 12, 'Head': 15,\n'LCollar':13, 'Rcollar' :14, \n}\namass_idx =       range(22)\namass_smpl_idx =  range(22)\n\n\nSMPL_MODEL_DIR = \"./body_models/\"\nGMM_MODEL_DIR = \"./visualize/joints2smpl/smpl_models/\"\nSMPL_MEAN_FILE = \"./visualize/joints2smpl/smpl_models/neutral_smpl_mean_params.h5\"\n# for collsion \nPart_Seg_DIR = \"./visualize/joints2smpl/smpl_models/smplx_parts_segm.pkl\""
  },
  {
    "path": "visualize/joints2smpl/src/customloss.py",
    "content": "import torch\nimport torch.nn.functional as F\nfrom visualize.joints2smpl.src import config\n\n# Guassian\ndef gmof(x, sigma):\n    \"\"\"\n    Geman-McClure error function\n    \"\"\"\n    x_squared = x ** 2\n    sigma_squared = sigma ** 2\n    return (sigma_squared * x_squared) / (sigma_squared + x_squared)\n\n# angle prior\ndef angle_prior(pose):\n    \"\"\"\n    Angle prior that penalizes unnatural bending of the knees and elbows\n    \"\"\"\n    # We subtract 3 because pose does not include the global rotation of the model\n    return torch.exp(\n        pose[:, [55 - 3, 58 - 3, 12 - 3, 15 - 3]] * torch.tensor([1., -1., -1, -1.], device=pose.device)) ** 2\n\n\ndef perspective_projection(points, rotation, translation,\n                           focal_length, camera_center):\n    \"\"\"\n    This function computes the perspective projection of a set of points.\n    Input:\n        points (bs, N, 3): 3D points\n        rotation (bs, 3, 3): Camera rotation\n        translation (bs, 3): Camera translation\n        focal_length (bs,) or scalar: Focal length\n        camera_center (bs, 2): Camera center\n    \"\"\"\n    batch_size = points.shape[0]\n    K = torch.zeros([batch_size, 3, 3], device=points.device)\n    K[:, 0, 0] = focal_length\n    K[:, 1, 1] = focal_length\n    K[:, 2, 2] = 1.\n    K[:, :-1, -1] = camera_center\n\n    # Transform points\n    points = torch.einsum('bij,bkj->bki', rotation, points)\n    points = points + translation.unsqueeze(1)\n\n    # Apply perspective distortion\n    projected_points = points / points[:, :, -1].unsqueeze(-1)\n\n    # Apply camera intrinsics\n    projected_points = torch.einsum('bij,bkj->bki', K, projected_points)\n\n    return projected_points[:, :, :-1]\n\n\ndef body_fitting_loss(body_pose, betas, model_joints, camera_t, camera_center,\n                      joints_2d, joints_conf, pose_prior,\n                      focal_length=5000, sigma=100, pose_prior_weight=4.78,\n                      shape_prior_weight=5, angle_prior_weight=15.2,\n                      output='sum'):\n    \"\"\"\n    Loss function for body fitting\n    \"\"\"\n    batch_size = body_pose.shape[0]\n    rotation = torch.eye(3, device=body_pose.device).unsqueeze(0).expand(batch_size, -1, -1)\n\n    projected_joints = perspective_projection(model_joints, rotation, camera_t,\n                                              focal_length, camera_center)\n\n    # Weighted robust reprojection error\n    reprojection_error = gmof(projected_joints - joints_2d, sigma)\n    reprojection_loss = (joints_conf ** 2) * reprojection_error.sum(dim=-1)\n\n    # Pose prior loss\n    pose_prior_loss = (pose_prior_weight ** 2) * pose_prior(body_pose, betas)\n\n    # Angle prior for knees and elbows\n    angle_prior_loss = (angle_prior_weight ** 2) * angle_prior(body_pose).sum(dim=-1)\n\n    # Regularizer to prevent betas from taking large values\n    shape_prior_loss = (shape_prior_weight ** 2) * (betas ** 2).sum(dim=-1)\n\n    total_loss = reprojection_loss.sum(dim=-1) + pose_prior_loss + angle_prior_loss + shape_prior_loss\n\n    if output == 'sum':\n        return total_loss.sum()\n    elif output == 'reprojection':\n        return reprojection_loss\n\n\n# --- get camera fitting loss -----\ndef camera_fitting_loss(model_joints, camera_t, camera_t_est, camera_center, \n                        joints_2d, joints_conf,\n                        focal_length=5000, depth_loss_weight=100):\n    \"\"\"\n    Loss function for camera optimization.\n    \"\"\"\n    # Project model joints\n    batch_size = model_joints.shape[0]\n    rotation = torch.eye(3, device=model_joints.device).unsqueeze(0).expand(batch_size, -1, -1)\n    projected_joints = perspective_projection(model_joints, rotation, camera_t,\n                                              focal_length, camera_center)\n\n    # get the indexed four\n    op_joints = ['OP RHip', 'OP LHip', 'OP RShoulder', 'OP LShoulder']\n    op_joints_ind = [config.JOINT_MAP[joint] for joint in op_joints]\n    gt_joints = ['RHip', 'LHip', 'RShoulder', 'LShoulder']\n    gt_joints_ind = [config.JOINT_MAP[joint] for joint in gt_joints]\n\n    reprojection_error_op = (joints_2d[:, op_joints_ind] -\n                             projected_joints[:, op_joints_ind]) ** 2\n    reprojection_error_gt = (joints_2d[:, gt_joints_ind] -\n                             projected_joints[:, gt_joints_ind]) ** 2\n\n    # Check if for each example in the batch all 4 OpenPose detections are valid, otherwise use the GT detections\n    # OpenPose joints are more reliable for this task, so we prefer to use them if possible\n    is_valid = (joints_conf[:, op_joints_ind].min(dim=-1)[0][:, None, None] > 0).float()\n    reprojection_loss = (is_valid * reprojection_error_op + (1 - is_valid) * reprojection_error_gt).sum(dim=(1, 2))\n\n    # Loss that penalizes deviation from depth estimate\n    depth_loss = (depth_loss_weight ** 2) * (camera_t[:, 2] - camera_t_est[:, 2]) ** 2\n\n    total_loss = reprojection_loss + depth_loss\n    return total_loss.sum()\n\n\n\n # #####--- body fitiing loss -----\ndef body_fitting_loss_3d(body_pose, preserve_pose,\n                         betas, model_joints, camera_translation,\n                         j3d, pose_prior,\n                         joints3d_conf,\n                         sigma=100, pose_prior_weight=4.78*1.5,\n                         shape_prior_weight=5.0, angle_prior_weight=15.2,\n                         joint_loss_weight=500.0,\n                         pose_preserve_weight=0.0,\n                         use_collision=False,\n                         model_vertices=None, model_faces=None,\n                         search_tree=None,  pen_distance=None,  filter_faces=None,\n                         collision_loss_weight=1000\n                         ):\n    \"\"\"\n    Loss function for body fitting\n    \"\"\"\n    batch_size = body_pose.shape[0]\n\n    #joint3d_loss = (joint_loss_weight ** 2) * gmof((model_joints + camera_translation) - j3d, sigma).sum(dim=-1)\n    \n    joint3d_error = gmof((model_joints + camera_translation) - j3d, sigma)\n    \n    joint3d_loss_part = (joints3d_conf ** 2) * joint3d_error.sum(dim=-1)\n    joint3d_loss = ((joint_loss_weight ** 2) * joint3d_loss_part).sum(dim=-1)\n    \n    # Pose prior loss\n    pose_prior_loss = (pose_prior_weight ** 2) * pose_prior(body_pose, betas)\n    # Angle prior for knees and elbows\n    angle_prior_loss = (angle_prior_weight ** 2) * angle_prior(body_pose).sum(dim=-1)\n    # Regularizer to prevent betas from taking large values\n    shape_prior_loss = (shape_prior_weight ** 2) * (betas ** 2).sum(dim=-1)\n\n    collision_loss = 0.0\n    # Calculate the loss due to interpenetration\n    if use_collision:\n        triangles = torch.index_select(\n            model_vertices, 1,\n            model_faces).view(batch_size, -1, 3, 3)\n\n        with torch.no_grad():\n            collision_idxs = search_tree(triangles)\n\n        # Remove unwanted collisions\n        if filter_faces is not None:\n            collision_idxs = filter_faces(collision_idxs)\n\n        if collision_idxs.ge(0).sum().item() > 0:\n            collision_loss = torch.sum(collision_loss_weight * pen_distance(triangles, collision_idxs))\n    \n    pose_preserve_loss = (pose_preserve_weight ** 2) * ((body_pose - preserve_pose) ** 2).sum(dim=-1)\n\n    # print('joint3d_loss', joint3d_loss.shape)\n    # print('pose_prior_loss', pose_prior_loss.shape)\n    # print('angle_prior_loss', angle_prior_loss.shape)\n    # print('shape_prior_loss', shape_prior_loss.shape)\n    # print('collision_loss', collision_loss)\n    # print('pose_preserve_loss', pose_preserve_loss.shape)\n\n    total_loss = joint3d_loss + pose_prior_loss + angle_prior_loss + shape_prior_loss + collision_loss + pose_preserve_loss\n\n    return total_loss.sum()\n\n\n# #####--- get camera fitting loss -----\ndef camera_fitting_loss_3d(model_joints, camera_t, camera_t_est,\n                           j3d, joints_category=\"orig\", depth_loss_weight=100.0):\n    \"\"\"\n    Loss function for camera optimization.\n    \"\"\"\n    model_joints = model_joints + camera_t\n    # # get the indexed four\n    # op_joints = ['OP RHip', 'OP LHip', 'OP RShoulder', 'OP LShoulder']\n    # op_joints_ind = [config.JOINT_MAP[joint] for joint in op_joints]\n    #\n    # j3d_error_loss = (j3d[:, op_joints_ind] -\n    #                          model_joints[:, op_joints_ind]) ** 2\n\n    gt_joints = ['RHip', 'LHip', 'RShoulder', 'LShoulder']\n    gt_joints_ind = [config.JOINT_MAP[joint] for joint in gt_joints]\n    \n    if joints_category==\"orig\":\n        select_joints_ind = [config.JOINT_MAP[joint] for joint in gt_joints]\n    elif joints_category==\"AMASS\":\n        select_joints_ind = [config.AMASS_JOINT_MAP[joint] for joint in gt_joints]\n    else:\n        print(\"NO SUCH JOINTS CATEGORY!\")\n\n    j3d_error_loss = (j3d[:, select_joints_ind] -\n                      model_joints[:, gt_joints_ind]) ** 2\n\n    # Loss that penalizes deviation from depth estimate\n    depth_loss = (depth_loss_weight**2) *  (camera_t - camera_t_est)**2\n\n    total_loss = j3d_error_loss +  depth_loss\n    return total_loss.sum()\n"
  },
  {
    "path": "visualize/joints2smpl/src/prior.py",
    "content": "# -*- coding: utf-8 -*-\n\n# Max-Planck-Gesellschaft zur Förderung der Wissenschaften e.V. (MPG) is\n# holder of all proprietary rights on this computer program.\n# You can only use this computer program if you have closed\n# a license agreement with MPG or you get the right to use the computer\n# program from someone who is authorized to grant you that right.\n# Any use of the computer program without a valid license is prohibited and\n# liable to prosecution.\n#\n# Copyright©2019 Max-Planck-Gesellschaft zur Förderung\n# der Wissenschaften e.V. (MPG). acting on behalf of its Max Planck Institute\n# for Intelligent Systems. All rights reserved.\n#\n# Contact: ps-license@tuebingen.mpg.de\n\nfrom __future__ import absolute_import\nfrom __future__ import print_function\nfrom __future__ import division\n\nimport sys\nimport os\n\nimport time\nimport pickle\n\nimport numpy as np\n\nimport torch\nimport torch.nn as nn\n\nDEFAULT_DTYPE = torch.float32\n\n\ndef create_prior(prior_type, **kwargs):\n    if prior_type == 'gmm':\n        prior = MaxMixturePrior(**kwargs)\n    elif prior_type == 'l2':\n        return L2Prior(**kwargs)\n    elif prior_type == 'angle':\n        return SMPLifyAnglePrior(**kwargs)\n    elif prior_type == 'none' or prior_type is None:\n        # Don't use any pose prior\n        def no_prior(*args, **kwargs):\n            return 0.0\n        prior = no_prior\n    else:\n        raise ValueError('Prior {}'.format(prior_type) + ' is not implemented')\n    return prior\n\n\nclass SMPLifyAnglePrior(nn.Module):\n    def __init__(self, dtype=torch.float32, **kwargs):\n        super(SMPLifyAnglePrior, self).__init__()\n\n        # Indices for the roration angle of\n        # 55: left elbow,  90deg bend at -np.pi/2\n        # 58: right elbow, 90deg bend at np.pi/2\n        # 12: left knee,   90deg bend at np.pi/2\n        # 15: right knee,  90deg bend at np.pi/2\n        angle_prior_idxs = np.array([55, 58, 12, 15], dtype=np.int64)\n        angle_prior_idxs = torch.tensor(angle_prior_idxs, dtype=torch.long)\n        self.register_buffer('angle_prior_idxs', angle_prior_idxs)\n\n        angle_prior_signs = np.array([1, -1, -1, -1],\n                                     dtype=np.float32 if dtype == torch.float32\n                                     else np.float64)\n        angle_prior_signs = torch.tensor(angle_prior_signs,\n                                         dtype=dtype)\n        self.register_buffer('angle_prior_signs', angle_prior_signs)\n\n    def forward(self, pose, with_global_pose=False):\n        ''' Returns the angle prior loss for the given pose\n\n        Args:\n            pose: (Bx[23 + 1] * 3) torch tensor with the axis-angle\n            representation of the rotations of the joints of the SMPL model.\n        Kwargs:\n            with_global_pose: Whether the pose vector also contains the global\n            orientation of the SMPL model. If not then the indices must be\n            corrected.\n        Returns:\n            A sze (B) tensor containing the angle prior loss for each element\n            in the batch.\n        '''\n        angle_prior_idxs = self.angle_prior_idxs - (not with_global_pose) * 3\n        return torch.exp(pose[:, angle_prior_idxs] *\n                         self.angle_prior_signs).pow(2)\n\n\nclass L2Prior(nn.Module):\n    def __init__(self, dtype=DEFAULT_DTYPE, reduction='sum', **kwargs):\n        super(L2Prior, self).__init__()\n\n    def forward(self, module_input, *args):\n        return torch.sum(module_input.pow(2))\n\n\nclass MaxMixturePrior(nn.Module):\n\n    def __init__(self, prior_folder='prior',\n                 num_gaussians=6, dtype=DEFAULT_DTYPE, epsilon=1e-16,\n                 use_merged=True,\n                 **kwargs):\n        super(MaxMixturePrior, self).__init__()\n\n        if dtype == DEFAULT_DTYPE:\n            np_dtype = np.float32\n        elif dtype == torch.float64:\n            np_dtype = np.float64\n        else:\n            print('Unknown float type {}, exiting!'.format(dtype))\n            sys.exit(-1)\n\n        self.num_gaussians = num_gaussians\n        self.epsilon = epsilon\n        self.use_merged = use_merged\n        gmm_fn = 'gmm_{:02d}.pkl'.format(num_gaussians)\n\n        full_gmm_fn = os.path.join(prior_folder, gmm_fn)\n        if not os.path.exists(full_gmm_fn):\n            print('The path to the mixture prior \"{}\"'.format(full_gmm_fn) +\n                  ' does not exist, exiting!')\n            sys.exit(-1)\n\n        with open(full_gmm_fn, 'rb') as f:\n            gmm = pickle.load(f, encoding='latin1')\n\n        if type(gmm) == dict:\n            means = gmm['means'].astype(np_dtype)\n            covs = gmm['covars'].astype(np_dtype)\n            weights = gmm['weights'].astype(np_dtype)\n        elif 'sklearn.mixture.gmm.GMM' in str(type(gmm)):\n            means = gmm.means_.astype(np_dtype)\n            covs = gmm.covars_.astype(np_dtype)\n            weights = gmm.weights_.astype(np_dtype)\n        else:\n            print('Unknown type for the prior: {}, exiting!'.format(type(gmm)))\n            sys.exit(-1)\n\n        self.register_buffer('means', torch.tensor(means, dtype=dtype))\n\n        self.register_buffer('covs', torch.tensor(covs, dtype=dtype))\n\n        precisions = [np.linalg.inv(cov) for cov in covs]\n        precisions = np.stack(precisions).astype(np_dtype)\n\n        self.register_buffer('precisions',\n                             torch.tensor(precisions, dtype=dtype))\n\n        # The constant term:\n        sqrdets = np.array([(np.sqrt(np.linalg.det(c)))\n                            for c in gmm['covars']])\n        const = (2 * np.pi)**(69 / 2.)\n\n        nll_weights = np.asarray(gmm['weights'] / (const *\n                                                   (sqrdets / sqrdets.min())))\n        nll_weights = torch.tensor(nll_weights, dtype=dtype).unsqueeze(dim=0)\n        self.register_buffer('nll_weights', nll_weights)\n\n        weights = torch.tensor(gmm['weights'], dtype=dtype).unsqueeze(dim=0)\n        self.register_buffer('weights', weights)\n\n        self.register_buffer('pi_term',\n                             torch.log(torch.tensor(2 * np.pi, dtype=dtype)))\n\n        cov_dets = [np.log(np.linalg.det(cov.astype(np_dtype)) + epsilon)\n                    for cov in covs]\n        self.register_buffer('cov_dets',\n                             torch.tensor(cov_dets, dtype=dtype))\n\n        # The dimensionality of the random variable\n        self.random_var_dim = self.means.shape[1]\n\n    def get_mean(self):\n        ''' Returns the mean of the mixture '''\n        mean_pose = torch.matmul(self.weights, self.means)\n        return mean_pose\n\n    def merged_log_likelihood(self, pose, betas):\n        diff_from_mean = pose.unsqueeze(dim=1) - self.means\n\n        prec_diff_prod = torch.einsum('mij,bmj->bmi',\n                                      [self.precisions, diff_from_mean])\n        diff_prec_quadratic = (prec_diff_prod * diff_from_mean).sum(dim=-1)\n\n        curr_loglikelihood = 0.5 * diff_prec_quadratic - \\\n            torch.log(self.nll_weights)\n        #  curr_loglikelihood = 0.5 * (self.cov_dets.unsqueeze(dim=0) +\n        #  self.random_var_dim * self.pi_term +\n        #  diff_prec_quadratic\n        #  ) - torch.log(self.weights)\n\n        min_likelihood, _ = torch.min(curr_loglikelihood, dim=1)\n        return min_likelihood\n\n    def log_likelihood(self, pose, betas, *args, **kwargs):\n        ''' Create graph operation for negative log-likelihood calculation\n        '''\n        likelihoods = []\n\n        for idx in range(self.num_gaussians):\n            mean = self.means[idx]\n            prec = self.precisions[idx]\n            cov = self.covs[idx]\n            diff_from_mean = pose - mean\n\n            curr_loglikelihood = torch.einsum('bj,ji->bi',\n                                              [diff_from_mean, prec])\n            curr_loglikelihood = torch.einsum('bi,bi->b',\n                                              [curr_loglikelihood,\n                                               diff_from_mean])\n            cov_term = torch.log(torch.det(cov) + self.epsilon)\n            curr_loglikelihood += 0.5 * (cov_term +\n                                         self.random_var_dim *\n                                         self.pi_term)\n            likelihoods.append(curr_loglikelihood)\n\n        log_likelihoods = torch.stack(likelihoods, dim=1)\n        min_idx = torch.argmin(log_likelihoods, dim=1)\n        weight_component = self.nll_weights[:, min_idx]\n        weight_component = -torch.log(weight_component)\n\n        return weight_component + log_likelihoods[:, min_idx]\n\n    def forward(self, pose, betas):\n        if self.use_merged:\n            return self.merged_log_likelihood(pose, betas)\n        else:\n            return self.log_likelihood(pose, betas)"
  },
  {
    "path": "visualize/joints2smpl/src/smplify.py",
    "content": "import torch\nimport os, sys\nimport pickle\nimport smplx\nimport numpy as np\n\nsys.path.append(os.path.dirname(__file__))\nfrom customloss import (camera_fitting_loss, \n                        body_fitting_loss, \n                        camera_fitting_loss_3d,\n                        body_fitting_loss_3d, \n                        )\nfrom prior import MaxMixturePrior\nfrom visualize.joints2smpl.src import config\n\n\n\n@torch.no_grad()\ndef guess_init_3d(model_joints, \n                  j3d, \n                  joints_category=\"orig\"):\n    \"\"\"Initialize the camera translation via triangle similarity, by using the torso joints        .\n    :param model_joints: SMPL model with pre joints\n    :param j3d: 25x3 array of Kinect Joints\n    :returns: 3D vector corresponding to the estimated camera translation\n    \"\"\"\n    # get the indexed four\n    gt_joints = ['RHip', 'LHip', 'RShoulder', 'LShoulder']\n    gt_joints_ind = [config.JOINT_MAP[joint] for joint in gt_joints]\n    \n    if joints_category==\"orig\":\n        joints_ind_category = [config.JOINT_MAP[joint] for joint in gt_joints]\n    elif joints_category==\"AMASS\":\n        joints_ind_category = [config.AMASS_JOINT_MAP[joint] for joint in gt_joints] \n    else:\n        print(\"NO SUCH JOINTS CATEGORY!\") \n\n    sum_init_t = (j3d[:, joints_ind_category] - model_joints[:, gt_joints_ind]).sum(dim=1)\n    init_t = sum_init_t / 4.0\n    return init_t\n\n\n# SMPLIfy 3D\nclass SMPLify3D():\n    \"\"\"Implementation of SMPLify, use 3D joints.\"\"\"\n\n    def __init__(self,\n                 smplxmodel,\n                 step_size=1e-2,\n                 batch_size=1,\n                 num_iters=100,\n                 use_collision=False,\n                 use_lbfgs=True,\n                 joints_category=\"orig\",\n                 device=torch.device('cuda:0'),\n                 ):\n\n        # Store options\n        self.batch_size = batch_size\n        self.device = device\n        self.step_size = step_size\n\n        self.num_iters = num_iters\n        # --- choose optimizer\n        self.use_lbfgs = use_lbfgs\n        # GMM pose prior\n        self.pose_prior = MaxMixturePrior(prior_folder=config.GMM_MODEL_DIR,\n                                          num_gaussians=8,\n                                          dtype=torch.float32).to(device)\n        # collision part\n        self.use_collision = use_collision\n        if self.use_collision:\n            self.part_segm_fn = config.Part_Seg_DIR\n        \n        # reLoad SMPL-X model\n        self.smpl = smplxmodel\n\n        self.model_faces = smplxmodel.faces_tensor.view(-1)\n\n        # select joint joint_category\n        self.joints_category = joints_category\n        \n        if joints_category==\"orig\":\n            self.smpl_index = config.full_smpl_idx\n            self.corr_index = config.full_smpl_idx \n        elif joints_category==\"AMASS\":\n            self.smpl_index = config.amass_smpl_idx\n            self.corr_index = config.amass_idx\n        else:\n            self.smpl_index = None \n            self.corr_index = None\n            print(\"NO SUCH JOINTS CATEGORY!\")\n\n    # ---- get the man function here ------\n    def __call__(self, init_pose, init_betas, init_cam_t, j3d, conf_3d=1.0, seq_ind=0):\n        \"\"\"Perform body fitting.\n        Input:\n            init_pose: SMPL pose estimate\n            init_betas: SMPL betas estimate\n            init_cam_t: Camera translation estimate\n            j3d: joints 3d aka keypoints\n            conf_3d: confidence for 3d joints\n\t\t\tseq_ind: index of the sequence\n        Returns:\n            vertices: Vertices of optimized shape\n            joints: 3D joints of optimized shape\n            pose: SMPL pose parameters of optimized shape\n            betas: SMPL beta parameters of optimized shape\n            camera_translation: Camera translation\n        \"\"\"\n\n        # # # add the mesh inter-section to avoid\n        search_tree = None\n        pen_distance = None\n        filter_faces = None\n        \n        if self.use_collision:\n            from mesh_intersection.bvh_search_tree import BVH\n            import mesh_intersection.loss as collisions_loss\n            from mesh_intersection.filter_faces import FilterFaces\n\n            search_tree = BVH(max_collisions=8)\n\n            pen_distance = collisions_loss.DistanceFieldPenetrationLoss(\n                           sigma=0.5, point2plane=False, vectorized=True, penalize_outside=True)\n\n            if self.part_segm_fn:\n                # Read the part segmentation\n                part_segm_fn = os.path.expandvars(self.part_segm_fn)\n                with open(part_segm_fn, 'rb') as faces_parents_file:\n                    face_segm_data = pickle.load(faces_parents_file,  encoding='latin1')\n                faces_segm = face_segm_data['segm']\n                faces_parents = face_segm_data['parents']\n                # Create the module used to filter invalid collision pairs\n                filter_faces = FilterFaces(\n                    faces_segm=faces_segm, faces_parents=faces_parents,\n                    ign_part_pairs=None).to(device=self.device)\n                    \n                    \n        # Split SMPL pose to body pose and global orientation\n        body_pose = init_pose[:, 3:].detach().clone()\n        global_orient = init_pose[:, :3].detach().clone()\n        betas = init_betas.detach().clone()\n\n        # use guess 3d to get the initial\n        smpl_output = self.smpl(global_orient=global_orient,\n                                body_pose=body_pose,\n                                betas=betas)\n        model_joints = smpl_output.joints\n\n        init_cam_t = guess_init_3d(model_joints, j3d, self.joints_category).unsqueeze(1).detach()\n        camera_translation = init_cam_t.clone()\n        \n        preserve_pose = init_pose[:, 3:].detach().clone()\n       # -------------Step 1: Optimize camera translation and body orientation--------\n        # Optimize only camera translation and body orientation\n        body_pose.requires_grad = False\n        betas.requires_grad = False\n        global_orient.requires_grad = True\n        camera_translation.requires_grad = True\n\n        camera_opt_params = [global_orient, camera_translation]\n\n        if self.use_lbfgs:\n            camera_optimizer = torch.optim.LBFGS(camera_opt_params, max_iter=self.num_iters,\n                                                 lr=self.step_size, line_search_fn='strong_wolfe')\n            for i in range(10):\n                def closure():\n                    camera_optimizer.zero_grad()\n                    smpl_output = self.smpl(global_orient=global_orient,\n                                            body_pose=body_pose,\n                                            betas=betas)\n                    model_joints = smpl_output.joints\n                    # print('model_joints', model_joints.shape)\n                    # print('camera_translation', camera_translation.shape)\n                    # print('init_cam_t', init_cam_t.shape)\n                    # print('j3d', j3d.shape)\n                    loss = camera_fitting_loss_3d(model_joints, camera_translation,\n                                                  init_cam_t, j3d, self.joints_category)\n                    loss.backward()\n                    return loss\n\n                camera_optimizer.step(closure)\n        else:\n            camera_optimizer = torch.optim.Adam(camera_opt_params, lr=self.step_size, betas=(0.9, 0.999))\n\n            for i in range(20):\n                smpl_output = self.smpl(global_orient=global_orient,\n                                        body_pose=body_pose,\n                                        betas=betas)\n                model_joints = smpl_output.joints\n\n                loss = camera_fitting_loss_3d(model_joints[:, self.smpl_index], camera_translation,\n                                              init_cam_t,  j3d[:, self.corr_index], self.joints_category)\n                camera_optimizer.zero_grad()\n                loss.backward()\n                camera_optimizer.step()\n\n        # Fix camera translation after optimizing camera\n        # --------Step 2: Optimize body joints --------------------------\n        # Optimize only the body pose and global orientation of the body\n        body_pose.requires_grad = True\n        global_orient.requires_grad = True\n        camera_translation.requires_grad = True\n\n        # --- if we use the sequence, fix the shape\n        if seq_ind == 0:\n            betas.requires_grad = True\n            body_opt_params = [body_pose, betas, global_orient, camera_translation]\n        else:\n            betas.requires_grad = False\n            body_opt_params = [body_pose, global_orient, camera_translation]\n\n        if self.use_lbfgs:\n            body_optimizer = torch.optim.LBFGS(body_opt_params, max_iter=self.num_iters,\n                                               lr=self.step_size, line_search_fn='strong_wolfe')\n            for i in range(self.num_iters):\n                def closure():\n                    body_optimizer.zero_grad()\n                    smpl_output = self.smpl(global_orient=global_orient,\n                                            body_pose=body_pose,\n                                            betas=betas)\n                    model_joints = smpl_output.joints\n                    model_vertices = smpl_output.vertices\n\n                    loss = body_fitting_loss_3d(body_pose, preserve_pose, betas, model_joints[:, self.smpl_index], camera_translation,\n                                                j3d[:, self.corr_index], self.pose_prior,\n                                                joints3d_conf=conf_3d,\n                                                joint_loss_weight=600.0,\n                                                pose_preserve_weight=5.0,\n                                                use_collision=self.use_collision, \n                                                model_vertices=model_vertices, model_faces=self.model_faces,\n                                                search_tree=search_tree, pen_distance=pen_distance, filter_faces=filter_faces)\n                    loss.backward()\n                    return loss\n\n                body_optimizer.step(closure)\n        else:\n            body_optimizer = torch.optim.Adam(body_opt_params, lr=self.step_size, betas=(0.9, 0.999))\n\n            for i in range(self.num_iters):\n                smpl_output = self.smpl(global_orient=global_orient,\n                                        body_pose=body_pose,\n                                        betas=betas)\n                model_joints = smpl_output.joints\n                model_vertices = smpl_output.vertices\n\n                loss = body_fitting_loss_3d(body_pose, preserve_pose, betas, model_joints[:, self.smpl_index], camera_translation,\n                                            j3d[:, self.corr_index], self.pose_prior,\n                                            joints3d_conf=conf_3d,\n                                            joint_loss_weight=600.0,\n                                            use_collision=self.use_collision, \n                                            model_vertices=model_vertices, model_faces=self.model_faces,\n                                            search_tree=search_tree,  pen_distance=pen_distance,  filter_faces=filter_faces)\n                body_optimizer.zero_grad()\n                loss.backward()\n                body_optimizer.step()\n\n        # Get final loss value\n        with torch.no_grad():\n            smpl_output = self.smpl(global_orient=global_orient,\n                                    body_pose=body_pose,\n                                    betas=betas, return_full_pose=True)\n            model_joints = smpl_output.joints\n            model_vertices = smpl_output.vertices\n\n            final_loss = body_fitting_loss_3d(body_pose, preserve_pose, betas, model_joints[:, self.smpl_index], camera_translation,\n                                              j3d[:, self.corr_index], self.pose_prior,\n                                              joints3d_conf=conf_3d,\n                                              joint_loss_weight=600.0,\n                                              use_collision=self.use_collision, model_vertices=model_vertices, model_faces=self.model_faces,\n                                              search_tree=search_tree,  pen_distance=pen_distance,  filter_faces=filter_faces)\n\n        vertices = smpl_output.vertices.detach()\n        joints = smpl_output.joints.detach()\n        pose = torch.cat([global_orient, body_pose], dim=-1).detach()\n        betas = betas.detach()\n\n        return vertices, joints, pose, betas, camera_translation, final_loss\n"
  },
  {
    "path": "visualize/render_mesh.py",
    "content": "import argparse\nimport os\nfrom visualize import vis_utils\nimport shutil\nfrom tqdm import tqdm\n\nif __name__ == '__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--input_path\", type=str, required=True, help='stick figure mp4 file to be rendered.')\n    parser.add_argument(\"--cuda\", type=bool, default=True, help='')\n    parser.add_argument(\"--device\", type=int, default=0, help='')\n    params = parser.parse_args()\n\n    assert params.input_path.endswith('.mp4')\n    parsed_name = os.path.basename(params.input_path).replace('.mp4', '').replace('sample', '').replace('rep', '')\n    sample_i, rep_i = [int(e) for e in parsed_name.split('_')]\n    npy_path = os.path.join(os.path.dirname(params.input_path), 'results.npy')\n    out_npy_path = params.input_path.replace('.mp4', '_smpl_params.npy')\n    assert os.path.exists(npy_path)\n    results_dir = params.input_path.replace('.mp4', '_obj')\n    if os.path.exists(results_dir):\n        shutil.rmtree(results_dir)\n    os.makedirs(results_dir)\n\n    npy2obj = vis_utils.npy2obj(npy_path, sample_i, rep_i,\n                                device=params.device, cuda=params.cuda)\n\n    print('Saving obj files to [{}]'.format(os.path.abspath(results_dir)))\n    for frame_i in tqdm(range(npy2obj.real_num_frames)):\n        npy2obj.save_obj(os.path.join(results_dir, 'frame{:03d}.obj'.format(frame_i)), frame_i)\n\n    print('Saving SMPL params to [{}]'.format(os.path.abspath(out_npy_path)))\n    npy2obj.save_npy(out_npy_path)\n"
  },
  {
    "path": "visualize/simplify_loc2rot.py",
    "content": "import numpy as np\nimport os\nimport torch\nfrom visualize.joints2smpl.src import config\nimport smplx\nimport h5py\nfrom visualize.joints2smpl.src.smplify import SMPLify3D\nfrom tqdm import tqdm\nimport utils.rotation_conversions as geometry\nimport argparse\n\n\nclass joints2smpl:\n\n    def __init__(self, num_frames, device_id, cuda=True):\n        self.device = torch.device(\"cuda:\" + str(device_id) if cuda else \"cpu\")\n        # self.device = torch.device(\"cpu\")\n        self.batch_size = num_frames\n        self.num_joints = 22  # for HumanML3D\n        self.joint_category = \"AMASS\"\n        self.num_smplify_iters = 150\n        self.fix_foot = False\n        print(config.SMPL_MODEL_DIR)\n        smplmodel = smplx.create(config.SMPL_MODEL_DIR,\n                                 model_type=\"smpl\", gender=\"neutral\", ext=\"pkl\",\n                                 batch_size=self.batch_size).to(self.device)\n\n        # ## --- load the mean pose as original ----\n        smpl_mean_file = config.SMPL_MEAN_FILE\n\n        file = h5py.File(smpl_mean_file, 'r')\n        self.init_mean_pose = torch.from_numpy(file['pose'][:]).unsqueeze(0).repeat(self.batch_size, 1).float().to(self.device)\n        self.init_mean_shape = torch.from_numpy(file['shape'][:]).unsqueeze(0).repeat(self.batch_size, 1).float().to(self.device)\n        self.cam_trans_zero = torch.Tensor([0.0, 0.0, 0.0]).unsqueeze(0).to(self.device)\n        #\n\n        # # #-------------initialize SMPLify\n        self.smplify = SMPLify3D(smplxmodel=smplmodel,\n                            batch_size=self.batch_size,\n                            joints_category=self.joint_category,\n                            num_iters=self.num_smplify_iters,\n                            device=self.device)\n\n\n    def npy2smpl(self, npy_path):\n        out_path = npy_path.replace('.npy', '_rot.npy')\n        motions = np.load(npy_path, allow_pickle=True)[None][0]\n        # print_batch('', motions)\n        n_samples = motions['motion'].shape[0]\n        all_thetas = []\n        for sample_i in tqdm(range(n_samples)):\n            thetas, _ = self.joint2smpl(motions['motion'][sample_i].transpose(2, 0, 1))  # [nframes, njoints, 3]\n            all_thetas.append(thetas.cpu().numpy())\n        motions['motion'] = np.concatenate(all_thetas, axis=0)\n        print('motions', motions['motion'].shape)\n\n        print(f'Saving [{out_path}]')\n        np.save(out_path, motions)\n        exit()\n\n\n\n    def joint2smpl(self, input_joints, init_params=None):\n        _smplify = self.smplify # if init_params is None else self.smplify_fast\n        pred_pose = torch.zeros(self.batch_size, 72).to(self.device)\n        pred_betas = torch.zeros(self.batch_size, 10).to(self.device)\n        pred_cam_t = torch.zeros(self.batch_size, 3).to(self.device)\n        keypoints_3d = torch.zeros(self.batch_size, self.num_joints, 3).to(self.device)\n\n        # run the whole seqs\n        num_seqs = input_joints.shape[0]\n\n\n        # joints3d = input_joints[idx]  # *1.2 #scale problem [check first]\n        keypoints_3d = torch.Tensor(input_joints).to(self.device).float()\n\n        # if idx == 0:\n        if init_params is None:\n            pred_betas = self.init_mean_shape\n            pred_pose = self.init_mean_pose\n            pred_cam_t = self.cam_trans_zero\n        else:\n            pred_betas = init_params['betas']\n            pred_pose = init_params['pose']\n            pred_cam_t = init_params['cam']\n\n        if self.joint_category == \"AMASS\":\n            confidence_input = torch.ones(self.num_joints)\n            # make sure the foot and ankle\n            if self.fix_foot == True:\n                confidence_input[7] = 1.5\n                confidence_input[8] = 1.5\n                confidence_input[10] = 1.5\n                confidence_input[11] = 1.5\n        else:\n            print(\"Such category not settle down!\")\n\n        new_opt_vertices, new_opt_joints, new_opt_pose, new_opt_betas, \\\n        new_opt_cam_t, new_opt_joint_loss = _smplify(\n            pred_pose.detach(),\n            pred_betas.detach(),\n            pred_cam_t.detach(),\n            keypoints_3d,\n            conf_3d=confidence_input.to(self.device),\n            # seq_ind=idx\n        )\n\n        thetas = new_opt_pose.reshape(self.batch_size, 24, 3)\n        thetas = geometry.matrix_to_rotation_6d(geometry.axis_angle_to_matrix(thetas))  # [bs, 24, 6]\n        root_loc = torch.tensor(keypoints_3d[:, 0])  # [bs, 3]\n        root_loc = torch.cat([root_loc, torch.zeros_like(root_loc)], dim=-1).unsqueeze(1)  # [bs, 1, 6]\n        thetas = torch.cat([thetas, root_loc], dim=1).unsqueeze(0).permute(0, 2, 3, 1)  # [1, 25, 6, 196]\n\n        return thetas.clone().detach(), {'pose': new_opt_joints[0, :24].flatten().clone().detach(), 'betas': new_opt_betas.clone().detach(), 'cam': new_opt_cam_t.clone().detach()}\n\n\nif __name__ == '__main__':\n    parser = argparse.ArgumentParser()\n    parser.add_argument(\"--input_path\", type=str, required=True, help='Blender file or dir with blender files')\n    parser.add_argument(\"--cuda\", type=bool, default=True, help='')\n    parser.add_argument(\"--device\", type=int, default=0, help='')\n    params = parser.parse_args()\n\n    simplify = joints2smpl(device_id=params.device, cuda=params.cuda)\n\n    if os.path.isfile(params.input_path) and params.input_path.endswith('.npy'):\n        simplify.npy2smpl(params.input_path)\n    elif os.path.isdir(params.input_path):\n        files = [os.path.join(params.input_path, f) for f in os.listdir(params.input_path) if f.endswith('.npy')]\n        for f in files:\n            simplify.npy2smpl(f)"
  },
  {
    "path": "visualize/vis_utils.py",
    "content": "from models.rotation2xyz import Rotation2xyz\nimport numpy as np\nfrom trimesh import Trimesh\nimport os\nimport torch\nfrom visualize.simplify_loc2rot import joints2smpl\n\nclass npy2obj:\n    def __init__(self, npy_path, sample_idx, rep_idx, device=0, cuda=True):\n        self.npy_path = npy_path\n        self.motions = np.load(self.npy_path, allow_pickle=True)\n        if self.npy_path.endswith('.npz'):\n            self.motions = self.motions['arr_0']\n        self.motions = self.motions[None][0]\n        self.rot2xyz = Rotation2xyz(device='cpu')\n        self.faces = self.rot2xyz.smpl_model.faces\n        self.bs, self.njoints, self.nfeats, self.nframes = self.motions['motion'].shape\n        self.opt_cache = {}\n        self.sample_idx = sample_idx\n        self.total_num_samples = self.motions['num_samples']\n        self.rep_idx = rep_idx\n        self.absl_idx = self.rep_idx*self.total_num_samples + self.sample_idx\n        self.num_frames = self.motions['motion'][self.absl_idx].shape[-1]\n        self.j2s = joints2smpl(num_frames=self.num_frames, device_id=device, cuda=cuda)\n\n        if self.nfeats == 3:\n            print(f'Running SMPLify For sample [{sample_idx}], repetition [{rep_idx}], it may take a few minutes.')\n            motion_tensor, opt_dict = self.j2s.joint2smpl(self.motions['motion'][self.absl_idx].transpose(2, 0, 1))  # [nframes, njoints, 3]\n            self.motions['motion'] = motion_tensor.cpu().numpy()\n        elif self.nfeats == 6:\n            self.motions['motion'] = self.motions['motion'][[self.absl_idx]]\n        self.bs, self.njoints, self.nfeats, self.nframes = self.motions['motion'].shape\n        self.real_num_frames = self.motions['lengths'][self.absl_idx]\n\n        self.vertices = self.rot2xyz(torch.tensor(self.motions['motion']), mask=None,\n                                     pose_rep='rot6d', translation=True, glob=True,\n                                     jointstype='vertices',\n                                     # jointstype='smpl',  # for joint locations\n                                     vertstrans=True)\n        self.root_loc = self.motions['motion'][:, -1, :3, :].reshape(1, 1, 3, -1)\n        self.vertices += self.root_loc\n\n    def get_vertices(self, sample_i, frame_i):\n        return self.vertices[sample_i, :, :, frame_i].squeeze().tolist()\n\n    def get_trimesh(self, sample_i, frame_i):\n        return Trimesh(vertices=self.get_vertices(sample_i, frame_i),\n                       faces=self.faces)\n\n    def save_obj(self, save_path, frame_i):\n        mesh = self.get_trimesh(0, frame_i)\n        with open(save_path, 'w') as fw:\n            mesh.export(fw, 'obj')\n        return save_path\n    \n    def save_npy(self, save_path):\n        data_dict = {\n            'motion': self.motions['motion'][0, :, :, :self.real_num_frames],\n            'thetas': self.motions['motion'][0, :-1, :, :self.real_num_frames],\n            'root_translation': self.motions['motion'][0, -1, :3, :self.real_num_frames],\n            'faces': self.faces,\n            'vertices': self.vertices[0, :, :, :self.real_num_frames],\n            'text': self.motions['text'][0],\n            'length': self.real_num_frames,\n        }\n        np.save(save_path, data_dict)\n"
  }
]